blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
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
listlengths
1
1
author_id
stringlengths
0
158
1097e15e0808a79554a947f4201b3e521e7a00a3
b2d99df815da81e0981a7a122af82ece95f2500e
/Gym/101466F/10347808_AC_62ms_2052kB.cpp
313402e6b8a46a9e94c106083b760cc9aac89e59
[]
no_license
kamrulashraf/Vjudge-mixed-
6048ae7d5e7c89e379ea571bc03a145ce8f9bc56
222db6b7148340dfbafc9644e5d1e56e9c9b2333
refs/heads/master
2020-03-30T17:07:47.628806
2018-10-03T16:14:46
2018-10-03T16:14:46
151,442,082
0
0
null
null
null
null
UTF-8
C++
false
false
402
cpp
#include <bits/stdc++.h> using namespace std; bool comp(int a , int b){ return a>b; } int main() { int n; scanf("%d",&n); int flag = 0; for(int i = 0 ; i< n ; i++){ int a , b, c; scanf("%d%d%d",&a,&b,&c); if(a+b <= c) flag = 1; if(b+c <= a) flag = 1; if(c+a <= b) flag = 1; } if(flag) printf("NO\n"); else printf("YES\n"); }
[ "mdkamrul938271@gmail.com" ]
mdkamrul938271@gmail.com
f8af4fe2610f1969a8f468dcb949a1475bb20ae8
24bc4990e9d0bef6a42a6f86dc783785b10dbd42
/components/optimization_guide/core/page_topics_model_handler.cc
19f88f0646e2a5a4145500e67a8b528efc7577e7
[ "BSD-3-Clause" ]
permissive
nwjs/chromium.src
7736ce86a9a0b810449a3b80a4af15de9ef9115d
454f26d09b2f6204c096b47f778705eab1e3ba46
refs/heads/nw75
2023-08-31T08:01:39.796085
2023-04-19T17:25:53
2023-04-19T17:25:53
50,512,158
161
201
BSD-3-Clause
2023-05-08T03:19:09
2016-01-27T14:17:03
null
UTF-8
C++
false
false
15,717
cc
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/optimization_guide/core/page_topics_model_handler.h" #include <ctype.h> #include "base/barrier_closure.h" #include "base/containers/contains.h" #include "base/files/file_util.h" #include "base/ranges/algorithm.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/task/sequenced_task_runner.h" #include "components/optimization_guide/core/optimization_guide_model_provider.h" #include "components/optimization_guide/proto/models.pb.h" #include "components/optimization_guide/proto/page_topics_model_metadata.pb.h" #include "components/optimization_guide/proto/page_topics_override_list.pb.h" #include "third_party/zlib/google/compression_utils.h" namespace optimization_guide { namespace { // The ID of the NONE category in the taxonomy. This node always exists. // Semantically, the none category is attached to data for which we can say // with certainty that no single label in the taxonomy is appropriate. const int32_t kNoneCategoryId = -2; // The |kMeaninglessPrefixV2MinVersion| needed to support meaningless prefix v2. // This should be compared with the version provided the model metadata. const int32_t kMeaninglessPrefixV2MinVersion = 2; const base::FilePath::CharType kOverrideListBasePath[] = FILE_PATH_LITERAL("override_list.pb.gz"); // The result of an override list file load attempt. These values are logged to // UMA histograms, do not change or reorder values. Make sure to update // |OptimizationGuidePageTopicsOverrideListFileLoadResult| in // //tools/metrics/histograms/enums.xml. enum class OverrideListFileLoadResult { kUnknown = 0, kSuccess = 1, kCouldNotReadFile = 2, kCouldNotUncompressFile = 3, kCouldNotUnmarshalProtobuf = 4, kMaxValue = kCouldNotUnmarshalProtobuf, }; void RecordOverrideListFileLoadResult(OverrideListFileLoadResult result) { base::UmaHistogramEnumeration( "OptimizationGuide.PageTopicsOverrideList.FileLoadResult", result); } absl::optional<std::unordered_map<std::string, std::vector<WeightedIdentifier>>> LoadOverrideListFromFile(const base::FilePath& path) { if (!path.IsAbsolute() || path.BaseName() != base::FilePath(kOverrideListBasePath)) { NOTREACHED(); // This is enforced by calling code, so no UMA in this case. return absl::nullopt; } std::string file_contents; if (!base::ReadFileToString(path, &file_contents)) { RecordOverrideListFileLoadResult( OverrideListFileLoadResult::kCouldNotReadFile); return absl::nullopt; } if (!compression::GzipUncompress(file_contents, &file_contents)) { RecordOverrideListFileLoadResult( OverrideListFileLoadResult::kCouldNotUncompressFile); return absl::nullopt; } proto::PageTopicsOverrideList override_list_pb; if (!override_list_pb.ParseFromString(file_contents)) { RecordOverrideListFileLoadResult( OverrideListFileLoadResult::kCouldNotUnmarshalProtobuf); return absl::nullopt; } std::unordered_map<std::string, std::vector<WeightedIdentifier>> override_list; for (const proto::PageTopicsOverrideEntry& entry : override_list_pb.entries()) { std::vector<WeightedIdentifier> topics; topics.reserve(entry.topics().topic_ids_size()); for (int32_t topic : entry.topics().topic_ids()) { // Always give overridden topics full weight. topics.emplace_back(WeightedIdentifier(topic, 1.0)); } override_list.emplace(entry.domain(), std::move(topics)); } RecordOverrideListFileLoadResult(OverrideListFileLoadResult::kSuccess); return override_list; } // Returns the length of the leading meaningless prefix of a host name as // defined for the Topics Model. // // The full list of meaningless prefixes are: // ^(www[0-9]*|web|ftp|wap|home)$ // ^(m|mobile|amp|w)$ int MeaninglessPrefixLength(const std::string& host) { size_t len = host.size(); int dots = base::ranges::count(host, '.'); if (dots < 2) { return 0; } if (len > 4 && base::StartsWith(host, "www")) { // Check that all characters after "www" and up to first "." are // digits. for (size_t i = 3; i < len; ++i) { if (host[i] == '.') { return i + 1; } if (!isdigit(host[i])) { return 0; } } } else { static const auto* kMeaninglessPrefixesLenMap = new std::set<std::string>( {"web", "ftp", "wap", "home", "m", "w", "amp", "mobile"}); size_t prefix_len = host.find('.'); std::string prefix = host.substr(0, prefix_len); const auto& it = kMeaninglessPrefixesLenMap->find(prefix); if (it != kMeaninglessPrefixesLenMap->end() && len > it->size() + 1) { return it->size() + 1; } } return 0; } } // namespace PageTopicsModelHandler::PageTopicsModelHandler( OptimizationGuideModelProvider* model_provider, scoped_refptr<base::SequencedTaskRunner> background_task_runner, const absl::optional<proto::Any>& model_metadata) : BertModelHandler(model_provider, background_task_runner, proto::OPTIMIZATION_TARGET_PAGE_TOPICS_V2, model_metadata), background_task_runner_(background_task_runner) { SetShouldUnloadModelOnComplete(false); } PageTopicsModelHandler::~PageTopicsModelHandler() = default; void PageTopicsModelHandler::ExecuteJob( base::OnceClosure on_job_complete_callback, std::unique_ptr<PageContentAnnotationJob> job) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK_EQ(job->type(), AnnotationType::kPageTopics); // Check if there is an override list available but not loaded yet. if (override_list_file_path_ && !override_list_) { background_task_runner_->PostTaskAndReplyWithResult( FROM_HERE, base::BindOnce(&LoadOverrideListFromFile, *override_list_file_path_), base::BindOnce(&PageTopicsModelHandler::OnOverrideListLoadAttemptDone, weak_ptr_factory_.GetWeakPtr(), std::move(on_job_complete_callback), std::move(job))); return; } PageContentAnnotationJobExecutor::ExecuteJob( std::move(on_job_complete_callback), std::move(job)); } std::string PageTopicsModelHandler::PreprocessHost( const std::string& host) const { std::string output = base::ToLowerASCII(host); // Meaningless prefix v2 is only supported/required for // |kMeaninglessPrefixV2MinVersion| and on. if (version_ >= kMeaninglessPrefixV2MinVersion) { int idx = MeaninglessPrefixLength(output); if (idx > 0) { output = output.substr(idx); } } else { // Strip the 'www.' if it exists. if (base::StartsWith(output, "www.")) { output = output.substr(4); } } static const char kCharsToReplaceWithSpace[] = {'-', '_', '.', '+'}; for (char c : kCharsToReplaceWithSpace) { std::replace(output.begin(), output.end(), c, ' '); } return output; } void PageTopicsModelHandler::ExecuteOnSingleInput( AnnotationType annotation_type, const std::string& raw_input, base::OnceCallback<void(const BatchAnnotationResult&)> callback) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK_EQ(annotation_type, AnnotationType::kPageTopics); // |processed_input| is needed by the override list and the model, but we pass // the |raw_input| to where the BatchAnnotationResult is created so that the // original input is passed back to the caller. std::string processed_input = PreprocessHost(raw_input); if (override_list_) { DCHECK(override_list_file_path_); auto iter = override_list_->find(processed_input); base::UmaHistogramBoolean( "OptimizationGuide.PageTopicsOverrideList.UsedOverride", iter != override_list_->end()); if (iter != override_list_->end()) { std::move(callback).Run(BatchAnnotationResult::CreatePageTopicsResult( raw_input, iter->second)); return; } } ExecuteModelWithInput( base::BindOnce( &PageTopicsModelHandler::PostprocessCategoriesToBatchAnnotationResult, weak_ptr_factory_.GetWeakPtr(), std::move(callback), annotation_type, raw_input), processed_input); } void PageTopicsModelHandler::OnOverrideListLoadAttemptDone( base::OnceClosure on_job_complete_callback, std::unique_ptr<PageContentAnnotationJob> job, absl::optional< std::unordered_map<std::string, std::vector<WeightedIdentifier>>> override_list) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); override_list_ = override_list; if (!override_list) { // Clear the file path so we don't try to load it again. override_list_file_path_ = absl::nullopt; } // Now we're ready to run the job! Call the base class to do so. PageContentAnnotationJobExecutor::ExecuteJob( std::move(on_job_complete_callback), std::move(job)); } void PageTopicsModelHandler::PostprocessCategoriesToBatchAnnotationResult( base::OnceCallback<void(const BatchAnnotationResult&)> callback, AnnotationType annotation_type, const std::string& raw_input, const absl::optional<std::vector<tflite::task::core::Category>>& output) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK_EQ(annotation_type, AnnotationType::kPageTopics); absl::optional<std::vector<WeightedIdentifier>> categories; if (output) { categories = ExtractCategoriesFromModelOutput(*output); } std::move(callback).Run( BatchAnnotationResult::CreatePageTopicsResult(raw_input, categories)); } absl::optional<std::vector<WeightedIdentifier>> PageTopicsModelHandler::ExtractCategoriesFromModelOutput( const std::vector<tflite::task::core::Category>& model_output) const { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); absl::optional<proto::PageTopicsModelMetadata> model_metadata = ParsedSupportedFeaturesForLoadedModel<proto::PageTopicsModelMetadata>(); if (!model_metadata) { return absl::nullopt; } absl::optional<std::string> visibility_category_name = model_metadata->output_postprocessing_params().has_visibility_params() && model_metadata->output_postprocessing_params() .visibility_params() .has_category_name() ? absl::make_optional(model_metadata->output_postprocessing_params() .visibility_params() .category_name()) : absl::nullopt; std::vector<std::pair<int32_t, float>> category_candidates; for (const auto& category : model_output) { if (visibility_category_name && category.class_name == *visibility_category_name) { continue; } // Assume everything else is for categories. int category_id; if (base::StringToInt(category.class_name, &category_id)) { category_candidates.emplace_back( std::make_pair(category_id, static_cast<float>(category.score))); } } // Postprocess categories. if (!model_metadata->output_postprocessing_params().has_category_params()) { // No parameters for postprocessing, so just return. return absl::nullopt; } const proto::PageTopicsCategoryPostprocessingParams category_params = model_metadata->output_postprocessing_params().category_params(); // Determine the categories with the highest weights. std::sort( category_candidates.begin(), category_candidates.end(), [](const std::pair<int32_t, float>& a, const std::pair<int32_t, float>& b) { return a.second > b.second; }); size_t max_categories = static_cast<size_t>(category_params.max_categories()); float total_weight = 0.0; float sum_positive_scores = 0.0; absl::optional<std::pair<size_t, float>> none_idx_and_weight; std::vector<std::pair<int32_t, float>> categories; categories.reserve(max_categories); for (size_t i = 0; i < category_candidates.size() && i < max_categories; i++) { std::pair<int32_t, float> candidate = category_candidates[i]; categories.push_back(candidate); total_weight += candidate.second; if (candidate.second > 0) sum_positive_scores += candidate.second; if (candidate.first == kNoneCategoryId) { none_idx_and_weight = std::make_pair(i, candidate.second); } } // Prune out categories that do not meet the minimum threshold. if (category_params.min_category_weight() > 0) { categories.erase( std::remove_if(categories.begin(), categories.end(), [&](const std::pair<int32_t, float>& category) { return category.second < category_params.min_category_weight(); }), categories.end()); } // Prune out none weights. if (total_weight == 0) { return absl::nullopt; } if (none_idx_and_weight) { if ((none_idx_and_weight->second / total_weight) > category_params.min_none_weight()) { // None weight is too strong. return absl::nullopt; } // None weight doesn't matter, so prune it out. Note that it may have // already been removed above if its weight was below the category min. categories.erase( std::remove_if(categories.begin(), categories.end(), [&](const std::pair<int32_t, float>& category) { return category.first == kNoneCategoryId; }), categories.end()); } // Normalize category weights. float normalization_factor = sum_positive_scores > 0 ? sum_positive_scores : 1.0; categories.erase( std::remove_if( categories.begin(), categories.end(), [&](const std::pair<int32_t, float>& category) { return (category.second / normalization_factor) < category_params.min_normalized_weight_within_top_n(); }), categories.end()); std::vector<WeightedIdentifier> final_categories; final_categories.reserve(categories.size()); for (const auto& category : categories) { // We expect the weight to be between 0 and 1. DCHECK(category.second >= 0.0 && category.second <= 1.0); final_categories.emplace_back( WeightedIdentifier(category.first, category.second)); } DCHECK_LE(final_categories.size(), max_categories); return final_categories; } void PageTopicsModelHandler::UnloadModel() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); BertModelHandler::UnloadModel(); override_list_ = absl::nullopt; } void PageTopicsModelHandler::OnModelUpdated( proto::OptimizationTarget optimization_target, const ModelInfo& model_info) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); BertModelHandler::OnModelUpdated(optimization_target, model_info); if (optimization_target != proto::OPTIMIZATION_TARGET_PAGE_TOPICS_V2) { return; } // New model, new override list. override_list_file_path_ = absl::nullopt; override_list_ = absl::nullopt; absl::optional<proto::PageTopicsModelMetadata> model_metadata = ParsedSupportedFeaturesForLoadedModel<proto::PageTopicsModelMetadata>(); if (model_metadata) { version_ = model_metadata->version(); } for (const base::FilePath& path : model_info.GetAdditionalFiles()) { DCHECK(path.IsAbsolute()); if (path.BaseName() == base::FilePath(kOverrideListBasePath)) { override_list_file_path_ = path; break; } } base::UmaHistogramBoolean("OptimizationGuide.PageTopicsOverrideList.GotFile", !!override_list_file_path_); } } // namespace optimization_guide
[ "roger@nwjs.io" ]
roger@nwjs.io
52df30ceb51a990afd795c618520b32a004400c8
50002b97a38507a78f441c30856f9e6fa0705da9
/Write/interface/NtuWriteSteering.hpp
d0090eee5a7ad9d71101bc81c497f4ff26f5ba51
[]
no_license
ronchese/NtuAnalysis
3abfdd8dd75a554c591c5a56b7a69ed7e0e3978c
a35e217f8bb3eb27387124d617e03ca56b927f38
refs/heads/master
2023-05-11T04:47:42.004545
2023-05-03T09:44:08
2023-05-03T09:44:08
21,427,587
0
2
null
2021-06-23T13:44:25
2014-07-02T14:34:15
C++
UTF-8
C++
false
false
1,363
hpp
#include "TFile.h" // system include files #include <iostream> #include <fstream> #include <sstream> #include <memory> template <class T> NtuWriteSteering<T>::NtuWriteSteering( const edm::ParameterSet& ps ): NtuWriteInterface<T>( ps, this ) { histName = ps.getUntrackedParameter<std::string>( "histName" ); } template <class T> NtuWriteSteering<T>::~NtuWriteSteering() { } template <class T> void NtuWriteSteering<T>::beginJob() { NtuWriteInterface<T>::beginJob(); analyzedFile = 0; return; } template <class T> void NtuWriteSteering<T>::endJob() { NtuWriteInterface<T>::endJob(); TreeWrapper::save( histName ); return; } template <class T> void NtuWriteSteering<T>::beginRun( const edm::Run& run, const edm::EventSetup& es ) { currentRun = &run; currentEvSetup = &es; NtuWriteInterface<T>::beginRun(); return; } template <class T> void NtuWriteSteering<T>::endRun( const edm::Run& run, const edm::EventSetup& es ) { NtuWriteInterface<T>::endRun(); return; } template <class T> void NtuWriteSteering<T>::analyze( const edm::Event& ev, const edm::EventSetup& es ) { currentEvent = &ev; currentEvSetup = &es; int ientry = 0; NtuWriteInterface<T>::analyzeEDM( ev, ientry, analyzedFile++ ); return; }
[ "paolo.ronchese@cern.ch" ]
paolo.ronchese@cern.ch
8e39aeb29e848a597f22276e9593275978009f41
61922a3e721398c808e8c2ac2b628cf00a636222
/llvm-3.7.1/llvm/tools/clang/include/clang/AST/DataRecursiveASTVisitor.h
dd167fe27c0235273b171ace5ad975605b026b17
[ "NCSA", "MIT" ]
permissive
oslab-swrc/unisan
e67d1e5792b682e46bfed9f0bf7fa85beab52764
fbeaf3163f2c5093f54aecafeff3c8c5d296d57d
refs/heads/master
2021-12-03T23:34:53.463073
2021-11-05T04:55:34
2021-11-05T04:55:34
424,831,354
0
0
NOASSERTION
2021-11-05T04:52:08
2021-11-05T04:52:07
null
UTF-8
C++
false
false
96,039
h
//===--- DataRecursiveASTVisitor.h - Data-Recursive AST Visitor -*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the DataRecursiveASTVisitor interface, which recursively // traverses the entire AST, using data recursion for Stmts/Exprs. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_DATARECURSIVEASTVISITOR_H #define LLVM_CLANG_AST_DATARECURSIVEASTVISITOR_H #include "clang/AST/Attr.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclCXX.h" #include "clang/AST/DeclFriend.h" #include "clang/AST/DeclObjC.h" #include "clang/AST/DeclOpenMP.h" #include "clang/AST/DeclTemplate.h" #include "clang/AST/Expr.h" #include "clang/AST/ExprCXX.h" #include "clang/AST/ExprObjC.h" #include "clang/AST/NestedNameSpecifier.h" #include "clang/AST/Stmt.h" #include "clang/AST/StmtCXX.h" #include "clang/AST/StmtObjC.h" #include "clang/AST/StmtOpenMP.h" #include "clang/AST/TemplateBase.h" #include "clang/AST/TemplateName.h" #include "clang/AST/Type.h" #include "clang/AST/TypeLoc.h" // The following three macros are used for meta programming. The code // using them is responsible for defining macro OPERATOR(). // All unary operators. #define UNARYOP_LIST() \ OPERATOR(PostInc) OPERATOR(PostDec) OPERATOR(PreInc) OPERATOR(PreDec) \ OPERATOR(AddrOf) OPERATOR(Deref) OPERATOR(Plus) OPERATOR(Minus) \ OPERATOR(Not) OPERATOR(LNot) OPERATOR(Real) OPERATOR(Imag) \ OPERATOR(Extension) // All binary operators (excluding compound assign operators). #define BINOP_LIST() \ OPERATOR(PtrMemD) OPERATOR(PtrMemI) OPERATOR(Mul) OPERATOR(Div) \ OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) OPERATOR(Shl) OPERATOR(Shr) \ OPERATOR(LT) OPERATOR(GT) OPERATOR(LE) OPERATOR(GE) OPERATOR(EQ) \ OPERATOR(NE) OPERATOR(And) OPERATOR(Xor) OPERATOR(Or) OPERATOR(LAnd) \ OPERATOR(LOr) OPERATOR(Assign) OPERATOR(Comma) // All compound assign operators. #define CAO_LIST() \ OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \ OPERATOR(Shl) OPERATOR(Shr) OPERATOR(And) OPERATOR(Or) OPERATOR(Xor) namespace clang { // Reduce the diff between RecursiveASTVisitor / DataRecursiveASTVisitor to // make it easier to track changes and keep the two in sync. #define RecursiveASTVisitor DataRecursiveASTVisitor // A helper macro to implement short-circuiting when recursing. It // invokes CALL_EXPR, which must be a method call, on the derived // object (s.t. a user of RecursiveASTVisitor can override the method // in CALL_EXPR). #define TRY_TO(CALL_EXPR) \ do { \ if (!getDerived().CALL_EXPR) \ return false; \ } while (0) /// \brief A class that does preorder depth-first traversal on the /// entire Clang AST and visits each node. /// /// This class performs three distinct tasks: /// 1. traverse the AST (i.e. go to each node); /// 2. at a given node, walk up the class hierarchy, starting from /// the node's dynamic type, until the top-most class (e.g. Stmt, /// Decl, or Type) is reached. /// 3. given a (node, class) combination, where 'class' is some base /// class of the dynamic type of 'node', call a user-overridable /// function to actually visit the node. /// /// These tasks are done by three groups of methods, respectively: /// 1. TraverseDecl(Decl *x) does task #1. It is the entry point /// for traversing an AST rooted at x. This method simply /// dispatches (i.e. forwards) to TraverseFoo(Foo *x) where Foo /// is the dynamic type of *x, which calls WalkUpFromFoo(x) and /// then recursively visits the child nodes of x. /// TraverseStmt(Stmt *x) and TraverseType(QualType x) work /// similarly. /// 2. WalkUpFromFoo(Foo *x) does task #2. It does not try to visit /// any child node of x. Instead, it first calls WalkUpFromBar(x) /// where Bar is the direct parent class of Foo (unless Foo has /// no parent), and then calls VisitFoo(x) (see the next list item). /// 3. VisitFoo(Foo *x) does task #3. /// /// These three method groups are tiered (Traverse* > WalkUpFrom* > /// Visit*). A method (e.g. Traverse*) may call methods from the same /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*). /// It may not call methods from a higher tier. /// /// Note that since WalkUpFromFoo() calls WalkUpFromBar() (where Bar /// is Foo's super class) before calling VisitFoo(), the result is /// that the Visit*() methods for a given node are called in the /// top-down order (e.g. for a node of type NamespaceDecl, the order will /// be VisitDecl(), VisitNamedDecl(), and then VisitNamespaceDecl()). /// /// This scheme guarantees that all Visit*() calls for the same AST /// node are grouped together. In other words, Visit*() methods for /// different nodes are never interleaved. /// /// Stmts are traversed internally using a data queue to avoid a stack overflow /// with hugely nested ASTs. /// /// Clients of this visitor should subclass the visitor (providing /// themselves as the template argument, using the curiously recurring /// template pattern) and override any of the Traverse*, WalkUpFrom*, /// and Visit* methods for declarations, types, statements, /// expressions, or other AST nodes where the visitor should customize /// behavior. Most users only need to override Visit*. Advanced /// users may override Traverse* and WalkUpFrom* to implement custom /// traversal strategies. Returning false from one of these overridden /// functions will abort the entire traversal. /// /// By default, this visitor tries to visit every part of the explicit /// source code exactly once. The default policy towards templates /// is to descend into the 'pattern' class or function body, not any /// explicit or implicit instantiations. Explicit specializations /// are still visited, and the patterns of partial specializations /// are visited separately. This behavior can be changed by /// overriding shouldVisitTemplateInstantiations() in the derived class /// to return true, in which case all known implicit and explicit /// instantiations will be visited at the same time as the pattern /// from which they were produced. template <typename Derived> class RecursiveASTVisitor { public: /// \brief Return a reference to the derived class. Derived &getDerived() { return *static_cast<Derived *>(this); } /// \brief Return whether this visitor should recurse into /// template instantiations. bool shouldVisitTemplateInstantiations() const { return false; } /// \brief Return whether this visitor should recurse into the types of /// TypeLocs. bool shouldWalkTypesOfTypeLocs() const { return true; } /// \brief Recursively visit a statement or expression, by /// dispatching to Traverse*() based on the argument's dynamic type. /// /// \returns false if the visitation was terminated early, true /// otherwise (including when the argument is NULL). bool TraverseStmt(Stmt *S); /// \brief Recursively visit a type, by dispatching to /// Traverse*Type() based on the argument's getTypeClass() property. /// /// \returns false if the visitation was terminated early, true /// otherwise (including when the argument is a Null type). bool TraverseType(QualType T); /// \brief Recursively visit a type with location, by dispatching to /// Traverse*TypeLoc() based on the argument type's getTypeClass() property. /// /// \returns false if the visitation was terminated early, true /// otherwise (including when the argument is a Null type location). bool TraverseTypeLoc(TypeLoc TL); /// \brief Recursively visit an attribute, by dispatching to /// Traverse*Attr() based on the argument's dynamic type. /// /// \returns false if the visitation was terminated early, true /// otherwise (including when the argument is a Null type location). bool TraverseAttr(Attr *At); /// \brief Recursively visit a declaration, by dispatching to /// Traverse*Decl() based on the argument's dynamic type. /// /// \returns false if the visitation was terminated early, true /// otherwise (including when the argument is NULL). bool TraverseDecl(Decl *D); /// \brief Recursively visit a C++ nested-name-specifier. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseNestedNameSpecifier(NestedNameSpecifier *NNS); /// \brief Recursively visit a C++ nested-name-specifier with location /// information. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS); /// \brief Recursively visit a name with its location information. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseDeclarationNameInfo(DeclarationNameInfo NameInfo); /// \brief Recursively visit a template name and dispatch to the /// appropriate method. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseTemplateName(TemplateName Template); /// \brief Recursively visit a template argument and dispatch to the /// appropriate method for the argument type. /// /// \returns false if the visitation was terminated early, true otherwise. // FIXME: migrate callers to TemplateArgumentLoc instead. bool TraverseTemplateArgument(const TemplateArgument &Arg); /// \brief Recursively visit a template argument location and dispatch to the /// appropriate method for the argument type. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc); /// \brief Recursively visit a set of template arguments. /// This can be overridden by a subclass, but it's not expected that /// will be needed -- this visitor always dispatches to another. /// /// \returns false if the visitation was terminated early, true otherwise. // FIXME: take a TemplateArgumentLoc* (or TemplateArgumentListInfo) instead. bool TraverseTemplateArguments(const TemplateArgument *Args, unsigned NumArgs); /// \brief Recursively visit a constructor initializer. This /// automatically dispatches to another visitor for the initializer /// expression, but not for the name of the initializer, so may /// be overridden for clients that need access to the name. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseConstructorInitializer(CXXCtorInitializer *Init); /// \brief Recursively visit a lambda capture. /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseLambdaCapture(LambdaExpr *LE, const LambdaCapture *C); /// \brief Recursively visit the body of a lambda expression. /// /// This provides a hook for visitors that need more context when visiting /// \c LE->getBody(). /// /// \returns false if the visitation was terminated early, true otherwise. bool TraverseLambdaBody(LambdaExpr *LE); // ---- Methods on Attrs ---- // \brief Visit an attribute. bool VisitAttr(Attr *A) { return true; } // Declare Traverse* and empty Visit* for all Attr classes. #define ATTR_VISITOR_DECLS_ONLY #include "clang/AST/AttrVisitor.inc" #undef ATTR_VISITOR_DECLS_ONLY // ---- Methods on Stmts ---- // Declare Traverse*() for all concrete Stmt classes. #define ABSTRACT_STMT(STMT) #define STMT(CLASS, PARENT) bool Traverse##CLASS(CLASS *S); #include "clang/AST/StmtNodes.inc" // The above header #undefs ABSTRACT_STMT and STMT upon exit. // Define WalkUpFrom*() and empty Visit*() for all Stmt classes. bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S); } bool VisitStmt(Stmt *S) { return true; } #define STMT(CLASS, PARENT) \ bool WalkUpFrom##CLASS(CLASS *S) { \ TRY_TO(WalkUpFrom##PARENT(S)); \ TRY_TO(Visit##CLASS(S)); \ return true; \ } \ bool Visit##CLASS(CLASS *S) { return true; } #include "clang/AST/StmtNodes.inc" // Define Traverse*(), WalkUpFrom*(), and Visit*() for unary // operator methods. Unary operators are not classes in themselves // (they're all opcodes in UnaryOperator) but do have visitors. #define OPERATOR(NAME) \ bool TraverseUnary##NAME(UnaryOperator *S) { \ TRY_TO(WalkUpFromUnary##NAME(S)); \ StmtQueueAction StmtQueue(*this); \ StmtQueue.queue(S->getSubExpr()); \ return true; \ } \ bool WalkUpFromUnary##NAME(UnaryOperator *S) { \ TRY_TO(WalkUpFromUnaryOperator(S)); \ TRY_TO(VisitUnary##NAME(S)); \ return true; \ } \ bool VisitUnary##NAME(UnaryOperator *S) { return true; } UNARYOP_LIST() #undef OPERATOR // Define Traverse*(), WalkUpFrom*(), and Visit*() for binary // operator methods. Binary operators are not classes in themselves // (they're all opcodes in BinaryOperator) but do have visitors. #define GENERAL_BINOP_FALLBACK(NAME, BINOP_TYPE) \ bool TraverseBin##NAME(BINOP_TYPE *S) { \ TRY_TO(WalkUpFromBin##NAME(S)); \ StmtQueueAction StmtQueue(*this); \ StmtQueue.queue(S->getLHS()); \ StmtQueue.queue(S->getRHS()); \ return true; \ } \ bool WalkUpFromBin##NAME(BINOP_TYPE *S) { \ TRY_TO(WalkUpFrom##BINOP_TYPE(S)); \ TRY_TO(VisitBin##NAME(S)); \ return true; \ } \ bool VisitBin##NAME(BINOP_TYPE *S) { return true; } #define OPERATOR(NAME) GENERAL_BINOP_FALLBACK(NAME, BinaryOperator) BINOP_LIST() #undef OPERATOR // Define Traverse*(), WalkUpFrom*(), and Visit*() for compound // assignment methods. Compound assignment operators are not // classes in themselves (they're all opcodes in // CompoundAssignOperator) but do have visitors. #define OPERATOR(NAME) \ GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator) CAO_LIST() #undef OPERATOR #undef GENERAL_BINOP_FALLBACK // ---- Methods on Types ---- // FIXME: revamp to take TypeLoc's rather than Types. // Declare Traverse*() for all concrete Type classes. #define ABSTRACT_TYPE(CLASS, BASE) #define TYPE(CLASS, BASE) bool Traverse##CLASS##Type(CLASS##Type *T); #include "clang/AST/TypeNodes.def" // The above header #undefs ABSTRACT_TYPE and TYPE upon exit. // Define WalkUpFrom*() and empty Visit*() for all Type classes. bool WalkUpFromType(Type *T) { return getDerived().VisitType(T); } bool VisitType(Type *T) { return true; } #define TYPE(CLASS, BASE) \ bool WalkUpFrom##CLASS##Type(CLASS##Type *T) { \ TRY_TO(WalkUpFrom##BASE(T)); \ TRY_TO(Visit##CLASS##Type(T)); \ return true; \ } \ bool Visit##CLASS##Type(CLASS##Type *T) { return true; } #include "clang/AST/TypeNodes.def" // ---- Methods on TypeLocs ---- // FIXME: this currently just calls the matching Type methods // Declare Traverse*() for all concrete TypeLoc classes. #define ABSTRACT_TYPELOC(CLASS, BASE) #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL); #include "clang/AST/TypeLocNodes.def" // The above header #undefs ABSTRACT_TYPELOC and TYPELOC upon exit. // Define WalkUpFrom*() and empty Visit*() for all TypeLoc classes. bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); } bool VisitTypeLoc(TypeLoc TL) { return true; } // QualifiedTypeLoc and UnqualTypeLoc are not declared in // TypeNodes.def and thus need to be handled specially. bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); } bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); } bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; } // Note that BASE includes trailing 'Type' which CLASS doesn't. #define TYPE(CLASS, BASE) \ bool WalkUpFrom##CLASS##TypeLoc(CLASS##TypeLoc TL) { \ TRY_TO(WalkUpFrom##BASE##Loc(TL)); \ TRY_TO(Visit##CLASS##TypeLoc(TL)); \ return true; \ } \ bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TL) { return true; } #include "clang/AST/TypeNodes.def" // ---- Methods on Decls ---- // Declare Traverse*() for all concrete Decl classes. #define ABSTRACT_DECL(DECL) #define DECL(CLASS, BASE) bool Traverse##CLASS##Decl(CLASS##Decl *D); #include "clang/AST/DeclNodes.inc" // The above header #undefs ABSTRACT_DECL and DECL upon exit. // Define WalkUpFrom*() and empty Visit*() for all Decl classes. bool WalkUpFromDecl(Decl *D) { return getDerived().VisitDecl(D); } bool VisitDecl(Decl *D) { return true; } #define DECL(CLASS, BASE) \ bool WalkUpFrom##CLASS##Decl(CLASS##Decl *D) { \ TRY_TO(WalkUpFrom##BASE(D)); \ TRY_TO(Visit##CLASS##Decl(D)); \ return true; \ } \ bool Visit##CLASS##Decl(CLASS##Decl *D) { return true; } #include "clang/AST/DeclNodes.inc" private: // These are helper methods used by more than one Traverse* method. bool TraverseTemplateParameterListHelper(TemplateParameterList *TPL); bool TraverseClassInstantiations(ClassTemplateDecl *D); bool TraverseVariableInstantiations(VarTemplateDecl *D); bool TraverseFunctionInstantiations(FunctionTemplateDecl *D); bool TraverseTemplateArgumentLocsHelper(const TemplateArgumentLoc *TAL, unsigned Count); bool TraverseArrayTypeLocHelper(ArrayTypeLoc TL); bool TraverseRecordHelper(RecordDecl *D); bool TraverseCXXRecordHelper(CXXRecordDecl *D); bool TraverseDeclaratorHelper(DeclaratorDecl *D); bool TraverseDeclContextHelper(DeclContext *DC); bool TraverseFunctionHelper(FunctionDecl *D); bool TraverseVarHelper(VarDecl *D); bool TraverseOMPExecutableDirective(OMPExecutableDirective *S); bool TraverseOMPLoopDirective(OMPLoopDirective *S); bool TraverseOMPClause(OMPClause *C); #define OPENMP_CLAUSE(Name, Class) bool Visit##Class(Class *C); #include "clang/Basic/OpenMPKinds.def" /// \brief Process clauses with list of variables. template <typename T> bool VisitOMPClauseList(T *Node); typedef SmallVector<Stmt *, 16> StmtsTy; typedef SmallVector<StmtsTy *, 4> QueuesTy; QueuesTy Queues; class NewQueueRAII { RecursiveASTVisitor &RAV; public: NewQueueRAII(StmtsTy &queue, RecursiveASTVisitor &RAV) : RAV(RAV) { RAV.Queues.push_back(&queue); } ~NewQueueRAII() { RAV.Queues.pop_back(); } }; StmtsTy &getCurrentQueue() { assert(!Queues.empty() && "base TraverseStmt was never called?"); return *Queues.back(); } public: class StmtQueueAction { StmtsTy &CurrQueue; public: explicit StmtQueueAction(RecursiveASTVisitor &RAV) : CurrQueue(RAV.getCurrentQueue()) {} void queue(Stmt *S) { CurrQueue.push_back(S); } }; }; #define DISPATCH(NAME, CLASS, VAR) \ return getDerived().Traverse##NAME(static_cast<CLASS *>(VAR)) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseStmt(Stmt *S) { if (!S) return true; StmtsTy Queue, StmtsToEnqueue; Queue.push_back(S); NewQueueRAII NQ(StmtsToEnqueue, *this); while (!Queue.empty()) { S = Queue.pop_back_val(); if (!S) continue; StmtsToEnqueue.clear(); #define DISPATCH_STMT(NAME, CLASS, VAR) \ TRY_TO(Traverse##NAME(static_cast<CLASS *>(VAR))); \ break // If we have a binary expr, dispatch to the subcode of the binop. A smart // optimizer (e.g. LLVM) will fold this comparison into the switch stmt // below. if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(S)) { switch (BinOp->getOpcode()) { #define OPERATOR(NAME) \ case BO_##NAME: \ DISPATCH_STMT(Bin##NAME, BinaryOperator, S); BINOP_LIST() #undef OPERATOR #undef BINOP_LIST #define OPERATOR(NAME) \ case BO_##NAME##Assign: \ DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S); CAO_LIST() #undef OPERATOR #undef CAO_LIST } } else if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(S)) { switch (UnOp->getOpcode()) { #define OPERATOR(NAME) \ case UO_##NAME: \ DISPATCH_STMT(Unary##NAME, UnaryOperator, S); UNARYOP_LIST() #undef OPERATOR #undef UNARYOP_LIST } } else { // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt. switch (S->getStmtClass()) { case Stmt::NoStmtClass: break; #define ABSTRACT_STMT(STMT) #define STMT(CLASS, PARENT) \ case Stmt::CLASS##Class: \ DISPATCH_STMT(CLASS, CLASS, S); #include "clang/AST/StmtNodes.inc" } } Queue.append(StmtsToEnqueue.rbegin(), StmtsToEnqueue.rend()); } return true; } #undef DISPATCH_STMT template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseType(QualType T) { if (T.isNull()) return true; switch (T->getTypeClass()) { #define ABSTRACT_TYPE(CLASS, BASE) #define TYPE(CLASS, BASE) \ case Type::CLASS: \ DISPATCH(CLASS##Type, CLASS##Type, const_cast<Type *>(T.getTypePtr())); #include "clang/AST/TypeNodes.def" } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTypeLoc(TypeLoc TL) { if (TL.isNull()) return true; switch (TL.getTypeLocClass()) { #define ABSTRACT_TYPELOC(CLASS, BASE) #define TYPELOC(CLASS, BASE) \ case TypeLoc::CLASS: \ return getDerived().Traverse##CLASS##TypeLoc(TL.castAs<CLASS##TypeLoc>()); #include "clang/AST/TypeLocNodes.def" } return true; } // Define the Traverse*Attr(Attr* A) methods #define VISITORCLASS RecursiveASTVisitor #include "clang/AST/AttrVisitor.inc" #undef VISITORCLASS template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseDecl(Decl *D) { if (!D) return true; // As a syntax visitor, we want to ignore declarations for // implicitly-defined declarations (ones not typed explicitly by the // user). if (D->isImplicit()) return true; switch (D->getKind()) { #define ABSTRACT_DECL(DECL) #define DECL(CLASS, BASE) \ case Decl::CLASS: \ if (!getDerived().Traverse##CLASS##Decl(static_cast<CLASS##Decl *>(D))) \ return false; \ break; #include "clang/AST/DeclNodes.inc" } // Visit any attributes attached to this declaration. for (auto *I : D->attrs()) { if (!getDerived().TraverseAttr(I)) return false; } return true; } #undef DISPATCH template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseNestedNameSpecifier( NestedNameSpecifier *NNS) { if (!NNS) return true; if (NNS->getPrefix()) TRY_TO(TraverseNestedNameSpecifier(NNS->getPrefix())); switch (NNS->getKind()) { case NestedNameSpecifier::Identifier: case NestedNameSpecifier::Namespace: case NestedNameSpecifier::NamespaceAlias: case NestedNameSpecifier::Global: case NestedNameSpecifier::Super: return true; case NestedNameSpecifier::TypeSpec: case NestedNameSpecifier::TypeSpecWithTemplate: TRY_TO(TraverseType(QualType(NNS->getAsType(), 0))); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseNestedNameSpecifierLoc( NestedNameSpecifierLoc NNS) { if (!NNS) return true; if (NestedNameSpecifierLoc Prefix = NNS.getPrefix()) TRY_TO(TraverseNestedNameSpecifierLoc(Prefix)); switch (NNS.getNestedNameSpecifier()->getKind()) { case NestedNameSpecifier::Identifier: case NestedNameSpecifier::Namespace: case NestedNameSpecifier::NamespaceAlias: case NestedNameSpecifier::Global: case NestedNameSpecifier::Super: return true; case NestedNameSpecifier::TypeSpec: case NestedNameSpecifier::TypeSpecWithTemplate: TRY_TO(TraverseTypeLoc(NNS.getTypeLoc())); break; } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseDeclarationNameInfo( DeclarationNameInfo NameInfo) { switch (NameInfo.getName().getNameKind()) { case DeclarationName::CXXConstructorName: case DeclarationName::CXXDestructorName: case DeclarationName::CXXConversionFunctionName: if (TypeSourceInfo *TSInfo = NameInfo.getNamedTypeInfo()) TRY_TO(TraverseTypeLoc(TSInfo->getTypeLoc())); break; case DeclarationName::Identifier: case DeclarationName::ObjCZeroArgSelector: case DeclarationName::ObjCOneArgSelector: case DeclarationName::ObjCMultiArgSelector: case DeclarationName::CXXOperatorName: case DeclarationName::CXXLiteralOperatorName: case DeclarationName::CXXUsingDirective: break; } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateName(TemplateName Template) { if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) TRY_TO(TraverseNestedNameSpecifier(DTN->getQualifier())); else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) TRY_TO(TraverseNestedNameSpecifier(QTN->getQualifier())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateArgument( const TemplateArgument &Arg) { switch (Arg.getKind()) { case TemplateArgument::Null: case TemplateArgument::Declaration: case TemplateArgument::Integral: case TemplateArgument::NullPtr: return true; case TemplateArgument::Type: return getDerived().TraverseType(Arg.getAsType()); case TemplateArgument::Template: case TemplateArgument::TemplateExpansion: return getDerived().TraverseTemplateName( Arg.getAsTemplateOrTemplatePattern()); case TemplateArgument::Expression: return getDerived().TraverseStmt(Arg.getAsExpr()); case TemplateArgument::Pack: return getDerived().TraverseTemplateArguments(Arg.pack_begin(), Arg.pack_size()); } return true; } // FIXME: no template name location? // FIXME: no source locations for a template argument pack? template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateArgumentLoc( const TemplateArgumentLoc &ArgLoc) { const TemplateArgument &Arg = ArgLoc.getArgument(); switch (Arg.getKind()) { case TemplateArgument::Null: case TemplateArgument::Declaration: case TemplateArgument::Integral: case TemplateArgument::NullPtr: return true; case TemplateArgument::Type: { // FIXME: how can TSI ever be NULL? if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) return getDerived().TraverseTypeLoc(TSI->getTypeLoc()); else return getDerived().TraverseType(Arg.getAsType()); } case TemplateArgument::Template: case TemplateArgument::TemplateExpansion: if (ArgLoc.getTemplateQualifierLoc()) TRY_TO(getDerived().TraverseNestedNameSpecifierLoc( ArgLoc.getTemplateQualifierLoc())); return getDerived().TraverseTemplateName( Arg.getAsTemplateOrTemplatePattern()); case TemplateArgument::Expression: return getDerived().TraverseStmt(ArgLoc.getSourceExpression()); case TemplateArgument::Pack: return getDerived().TraverseTemplateArguments(Arg.pack_begin(), Arg.pack_size()); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateArguments( const TemplateArgument *Args, unsigned NumArgs) { for (unsigned I = 0; I != NumArgs; ++I) { TRY_TO(TraverseTemplateArgument(Args[I])); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseConstructorInitializer( CXXCtorInitializer *Init) { if (TypeSourceInfo *TInfo = Init->getTypeSourceInfo()) TRY_TO(TraverseTypeLoc(TInfo->getTypeLoc())); if (Init->isWritten()) TRY_TO(TraverseStmt(Init->getInit())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseLambdaCapture(LambdaExpr *LE, const LambdaCapture *C) { if (LE->isInitCapture(C)) TRY_TO(TraverseDecl(C->getCapturedVar())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseLambdaBody(LambdaExpr *LE) { StmtQueueAction StmtQueue(*this); StmtQueue.queue(LE->getBody()); return true; } // ----------------- Type traversal ----------------- // This macro makes available a variable T, the passed-in type. #define DEF_TRAVERSE_TYPE(TYPE, CODE) \ template <typename Derived> \ bool RecursiveASTVisitor<Derived>::Traverse##TYPE(TYPE *T) { \ TRY_TO(WalkUpFrom##TYPE(T)); \ { CODE; } \ return true; \ } DEF_TRAVERSE_TYPE(BuiltinType, {}) DEF_TRAVERSE_TYPE(ComplexType, { TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(PointerType, { TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(BlockPointerType, { TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(LValueReferenceType, { TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(RValueReferenceType, { TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(MemberPointerType, { TRY_TO(TraverseType(QualType(T->getClass(), 0))); TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) DEF_TRAVERSE_TYPE(DecayedType, { TRY_TO(TraverseType(T->getOriginalType())); }) DEF_TRAVERSE_TYPE(ConstantArrayType, { TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(IncompleteArrayType, { TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(VariableArrayType, { TRY_TO(TraverseType(T->getElementType())); TRY_TO(TraverseStmt(T->getSizeExpr())); }) DEF_TRAVERSE_TYPE(DependentSizedArrayType, { TRY_TO(TraverseType(T->getElementType())); if (T->getSizeExpr()) TRY_TO(TraverseStmt(T->getSizeExpr())); }) DEF_TRAVERSE_TYPE(DependentSizedExtVectorType, { if (T->getSizeExpr()) TRY_TO(TraverseStmt(T->getSizeExpr())); TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(VectorType, { TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(ExtVectorType, { TRY_TO(TraverseType(T->getElementType())); }) DEF_TRAVERSE_TYPE(FunctionNoProtoType, { TRY_TO(TraverseType(T->getReturnType())); }) DEF_TRAVERSE_TYPE(FunctionProtoType, { TRY_TO(TraverseType(T->getReturnType())); for (const auto &A : T->param_types()) { TRY_TO(TraverseType(A)); } for (const auto &E : T->exceptions()) { TRY_TO(TraverseType(E)); } if (Expr *NE = T->getNoexceptExpr()) TRY_TO(TraverseStmt(NE)); }) DEF_TRAVERSE_TYPE(UnresolvedUsingType, {}) DEF_TRAVERSE_TYPE(TypedefType, {}) DEF_TRAVERSE_TYPE(TypeOfExprType, { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) DEF_TRAVERSE_TYPE(TypeOfType, { TRY_TO(TraverseType(T->getUnderlyingType())); }) DEF_TRAVERSE_TYPE(DecltypeType, { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) DEF_TRAVERSE_TYPE(UnaryTransformType, { TRY_TO(TraverseType(T->getBaseType())); TRY_TO(TraverseType(T->getUnderlyingType())); }) DEF_TRAVERSE_TYPE(AutoType, { TRY_TO(TraverseType(T->getDeducedType())); }) DEF_TRAVERSE_TYPE(RecordType, {}) DEF_TRAVERSE_TYPE(EnumType, {}) DEF_TRAVERSE_TYPE(TemplateTypeParmType, {}) DEF_TRAVERSE_TYPE(SubstTemplateTypeParmType, {}) DEF_TRAVERSE_TYPE(SubstTemplateTypeParmPackType, {}) DEF_TRAVERSE_TYPE(TemplateSpecializationType, { TRY_TO(TraverseTemplateName(T->getTemplateName())); TRY_TO(TraverseTemplateArguments(T->getArgs(), T->getNumArgs())); }) DEF_TRAVERSE_TYPE(InjectedClassNameType, {}) DEF_TRAVERSE_TYPE(AttributedType, { TRY_TO(TraverseType(T->getModifiedType())); }) DEF_TRAVERSE_TYPE(ParenType, { TRY_TO(TraverseType(T->getInnerType())); }) DEF_TRAVERSE_TYPE(ElaboratedType, { if (T->getQualifier()) { TRY_TO(TraverseNestedNameSpecifier(T->getQualifier())); } TRY_TO(TraverseType(T->getNamedType())); }) DEF_TRAVERSE_TYPE(DependentNameType, { TRY_TO(TraverseNestedNameSpecifier(T->getQualifier())); }) DEF_TRAVERSE_TYPE(DependentTemplateSpecializationType, { TRY_TO(TraverseNestedNameSpecifier(T->getQualifier())); TRY_TO(TraverseTemplateArguments(T->getArgs(), T->getNumArgs())); }) DEF_TRAVERSE_TYPE(PackExpansionType, { TRY_TO(TraverseType(T->getPattern())); }) DEF_TRAVERSE_TYPE(ObjCInterfaceType, {}) DEF_TRAVERSE_TYPE(ObjCObjectType, { // We have to watch out here because an ObjCInterfaceType's base // type is itself. if (T->getBaseType().getTypePtr() != T) TRY_TO(TraverseType(T->getBaseType())); for (auto typeArg : T->getTypeArgsAsWritten()) { TRY_TO(TraverseType(typeArg)); } }) DEF_TRAVERSE_TYPE(ObjCObjectPointerType, { TRY_TO(TraverseType(T->getPointeeType())); }) DEF_TRAVERSE_TYPE(AtomicType, { TRY_TO(TraverseType(T->getValueType())); }) #undef DEF_TRAVERSE_TYPE // ----------------- TypeLoc traversal ----------------- // This macro makes available a variable TL, the passed-in TypeLoc. // If requested, it calls WalkUpFrom* for the Type in the given TypeLoc, // in addition to WalkUpFrom* for the TypeLoc itself, such that existing // clients that override the WalkUpFrom*Type() and/or Visit*Type() methods // continue to work. #define DEF_TRAVERSE_TYPELOC(TYPE, CODE) \ template <typename Derived> \ bool RecursiveASTVisitor<Derived>::Traverse##TYPE##Loc(TYPE##Loc TL) { \ if (getDerived().shouldWalkTypesOfTypeLocs()) \ TRY_TO(WalkUpFrom##TYPE(const_cast<TYPE *>(TL.getTypePtr()))); \ TRY_TO(WalkUpFrom##TYPE##Loc(TL)); \ { CODE; } \ return true; \ } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) { // Move this over to the 'main' typeloc tree. Note that this is a // move -- we pretend that we were really looking at the unqualified // typeloc all along -- rather than a recursion, so we don't follow // the normal CRTP plan of going through // getDerived().TraverseTypeLoc. If we did, we'd be traversing // twice for the same type (once as a QualifiedTypeLoc version of // the type, once as an UnqualifiedTypeLoc version of the type), // which in effect means we'd call VisitTypeLoc twice with the // 'same' type. This solves that problem, at the cost of never // seeing the qualified version of the type (unless the client // subclasses TraverseQualifiedTypeLoc themselves). It's not a // perfect solution. A perfect solution probably requires making // QualifiedTypeLoc a wrapper around TypeLoc -- like QualType is a // wrapper around Type* -- rather than being its own class in the // type hierarchy. return TraverseTypeLoc(TL.getUnqualifiedLoc()); } DEF_TRAVERSE_TYPELOC(BuiltinType, {}) // FIXME: ComplexTypeLoc is unfinished DEF_TRAVERSE_TYPELOC(ComplexType, { TRY_TO(TraverseType(TL.getTypePtr()->getElementType())); }) DEF_TRAVERSE_TYPELOC(PointerType, { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) DEF_TRAVERSE_TYPELOC(BlockPointerType, { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) DEF_TRAVERSE_TYPELOC(LValueReferenceType, { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) DEF_TRAVERSE_TYPELOC(RValueReferenceType, { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) // FIXME: location of base class? // We traverse this in the type case as well, but how is it not reached through // the pointee type? DEF_TRAVERSE_TYPELOC(MemberPointerType, { TRY_TO(TraverseType(QualType(TL.getTypePtr()->getClass(), 0))); TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) DEF_TRAVERSE_TYPELOC(AdjustedType, { TRY_TO(TraverseTypeLoc(TL.getOriginalLoc())); }) DEF_TRAVERSE_TYPELOC(DecayedType, { TRY_TO(TraverseTypeLoc(TL.getOriginalLoc())); }) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseArrayTypeLocHelper(ArrayTypeLoc TL) { // This isn't available for ArrayType, but is for the ArrayTypeLoc. TRY_TO(TraverseStmt(TL.getSizeExpr())); return true; } DEF_TRAVERSE_TYPELOC(ConstantArrayType, { TRY_TO(TraverseTypeLoc(TL.getElementLoc())); return TraverseArrayTypeLocHelper(TL); }) DEF_TRAVERSE_TYPELOC(IncompleteArrayType, { TRY_TO(TraverseTypeLoc(TL.getElementLoc())); return TraverseArrayTypeLocHelper(TL); }) DEF_TRAVERSE_TYPELOC(VariableArrayType, { TRY_TO(TraverseTypeLoc(TL.getElementLoc())); return TraverseArrayTypeLocHelper(TL); }) DEF_TRAVERSE_TYPELOC(DependentSizedArrayType, { TRY_TO(TraverseTypeLoc(TL.getElementLoc())); return TraverseArrayTypeLocHelper(TL); }) // FIXME: order? why not size expr first? // FIXME: base VectorTypeLoc is unfinished DEF_TRAVERSE_TYPELOC(DependentSizedExtVectorType, { if (TL.getTypePtr()->getSizeExpr()) TRY_TO(TraverseStmt(TL.getTypePtr()->getSizeExpr())); TRY_TO(TraverseType(TL.getTypePtr()->getElementType())); }) // FIXME: VectorTypeLoc is unfinished DEF_TRAVERSE_TYPELOC(VectorType, { TRY_TO(TraverseType(TL.getTypePtr()->getElementType())); }) // FIXME: size and attributes // FIXME: base VectorTypeLoc is unfinished DEF_TRAVERSE_TYPELOC(ExtVectorType, { TRY_TO(TraverseType(TL.getTypePtr()->getElementType())); }) DEF_TRAVERSE_TYPELOC(FunctionNoProtoType, { TRY_TO(TraverseTypeLoc(TL.getReturnLoc())); }) // FIXME: location of exception specifications (attributes?) DEF_TRAVERSE_TYPELOC(FunctionProtoType, { TRY_TO(TraverseTypeLoc(TL.getReturnLoc())); const FunctionProtoType *T = TL.getTypePtr(); for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { if (TL.getParam(I)) { TRY_TO(TraverseDecl(TL.getParam(I))); } else if (I < T->getNumParams()) { TRY_TO(TraverseType(T->getParamType(I))); } } for (const auto &E : T->exceptions()) { TRY_TO(TraverseType(E)); } if (Expr *NE = T->getNoexceptExpr()) TRY_TO(TraverseStmt(NE)); }) DEF_TRAVERSE_TYPELOC(UnresolvedUsingType, {}) DEF_TRAVERSE_TYPELOC(TypedefType, {}) DEF_TRAVERSE_TYPELOC(TypeOfExprType, { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) DEF_TRAVERSE_TYPELOC(TypeOfType, { TRY_TO(TraverseTypeLoc(TL.getUnderlyingTInfo()->getTypeLoc())); }) // FIXME: location of underlying expr DEF_TRAVERSE_TYPELOC(DecltypeType, { TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr())); }) DEF_TRAVERSE_TYPELOC(UnaryTransformType, { TRY_TO(TraverseTypeLoc(TL.getUnderlyingTInfo()->getTypeLoc())); }) DEF_TRAVERSE_TYPELOC(AutoType, { TRY_TO(TraverseType(TL.getTypePtr()->getDeducedType())); }) DEF_TRAVERSE_TYPELOC(RecordType, {}) DEF_TRAVERSE_TYPELOC(EnumType, {}) DEF_TRAVERSE_TYPELOC(TemplateTypeParmType, {}) DEF_TRAVERSE_TYPELOC(SubstTemplateTypeParmType, {}) DEF_TRAVERSE_TYPELOC(SubstTemplateTypeParmPackType, {}) // FIXME: use the loc for the template name? DEF_TRAVERSE_TYPELOC(TemplateSpecializationType, { TRY_TO(TraverseTemplateName(TL.getTypePtr()->getTemplateName())); for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I))); } }) DEF_TRAVERSE_TYPELOC(InjectedClassNameType, {}) DEF_TRAVERSE_TYPELOC(ParenType, { TRY_TO(TraverseTypeLoc(TL.getInnerLoc())); }) DEF_TRAVERSE_TYPELOC(AttributedType, { TRY_TO(TraverseTypeLoc(TL.getModifiedLoc())); }) DEF_TRAVERSE_TYPELOC(ElaboratedType, { if (TL.getQualifierLoc()) { TRY_TO(TraverseNestedNameSpecifierLoc(TL.getQualifierLoc())); } TRY_TO(TraverseTypeLoc(TL.getNamedTypeLoc())); }) DEF_TRAVERSE_TYPELOC(DependentNameType, { TRY_TO(TraverseNestedNameSpecifierLoc(TL.getQualifierLoc())); }) DEF_TRAVERSE_TYPELOC(DependentTemplateSpecializationType, { if (TL.getQualifierLoc()) { TRY_TO(TraverseNestedNameSpecifierLoc(TL.getQualifierLoc())); } for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { TRY_TO(TraverseTemplateArgumentLoc(TL.getArgLoc(I))); } }) DEF_TRAVERSE_TYPELOC(PackExpansionType, { TRY_TO(TraverseTypeLoc(TL.getPatternLoc())); }) DEF_TRAVERSE_TYPELOC(ObjCInterfaceType, {}) DEF_TRAVERSE_TYPELOC(ObjCObjectType, { // We have to watch out here because an ObjCInterfaceType's base // type is itself. if (TL.getTypePtr()->getBaseType().getTypePtr() != TL.getTypePtr()) TRY_TO(TraverseTypeLoc(TL.getBaseLoc())); for (unsigned i = 0, n = TL.getNumTypeArgs(); i != n; ++i) TRY_TO(TraverseTypeLoc(TL.getTypeArgTInfo(i)->getTypeLoc())); }) DEF_TRAVERSE_TYPELOC(ObjCObjectPointerType, { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) DEF_TRAVERSE_TYPELOC(AtomicType, { TRY_TO(TraverseTypeLoc(TL.getValueLoc())); }) #undef DEF_TRAVERSE_TYPELOC // ----------------- Decl traversal ----------------- // // For a Decl, we automate (in the DEF_TRAVERSE_DECL macro) traversing // the children that come from the DeclContext associated with it. // Therefore each Traverse* only needs to worry about children other // than those. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseDeclContextHelper(DeclContext *DC) { if (!DC) return true; for (auto *Child : DC->decls()) { // BlockDecls and CapturedDecls are traversed through BlockExprs and // CapturedStmts respectively. if (!isa<BlockDecl>(Child) && !isa<CapturedDecl>(Child)) TRY_TO(TraverseDecl(Child)); } return true; } // This macro makes available a variable D, the passed-in decl. #define DEF_TRAVERSE_DECL(DECL, CODE) \ template <typename Derived> \ bool RecursiveASTVisitor<Derived>::Traverse##DECL(DECL *D) { \ TRY_TO(WalkUpFrom##DECL(D)); \ { CODE; } \ TRY_TO(TraverseDeclContextHelper(dyn_cast<DeclContext>(D))); \ return true; \ } DEF_TRAVERSE_DECL(AccessSpecDecl, {}) DEF_TRAVERSE_DECL(BlockDecl, { if (TypeSourceInfo *TInfo = D->getSignatureAsWritten()) TRY_TO(TraverseTypeLoc(TInfo->getTypeLoc())); TRY_TO(TraverseStmt(D->getBody())); for (const auto &I : D->captures()) { if (I.hasCopyExpr()) { TRY_TO(TraverseStmt(I.getCopyExpr())); } } // This return statement makes sure the traversal of nodes in // decls_begin()/decls_end() (done in the DEF_TRAVERSE_DECL macro) // is skipped - don't remove it. return true; }) DEF_TRAVERSE_DECL(CapturedDecl, { TRY_TO(TraverseStmt(D->getBody())); // This return statement makes sure the traversal of nodes in // decls_begin()/decls_end() (done in the DEF_TRAVERSE_DECL macro) // is skipped - don't remove it. return true; }) DEF_TRAVERSE_DECL(EmptyDecl, {}) DEF_TRAVERSE_DECL(FileScopeAsmDecl, { TRY_TO(TraverseStmt(D->getAsmString())); }) DEF_TRAVERSE_DECL(ImportDecl, {}) DEF_TRAVERSE_DECL(FriendDecl, { // Friend is either decl or a type. if (D->getFriendType()) TRY_TO(TraverseTypeLoc(D->getFriendType()->getTypeLoc())); else TRY_TO(TraverseDecl(D->getFriendDecl())); }) DEF_TRAVERSE_DECL(FriendTemplateDecl, { if (D->getFriendType()) TRY_TO(TraverseTypeLoc(D->getFriendType()->getTypeLoc())); else TRY_TO(TraverseDecl(D->getFriendDecl())); for (unsigned I = 0, E = D->getNumTemplateParameters(); I < E; ++I) { TemplateParameterList *TPL = D->getTemplateParameterList(I); for (TemplateParameterList::iterator ITPL = TPL->begin(), ETPL = TPL->end(); ITPL != ETPL; ++ITPL) { TRY_TO(TraverseDecl(*ITPL)); } } }) DEF_TRAVERSE_DECL(ClassScopeFunctionSpecializationDecl, { TRY_TO(TraverseDecl(D->getSpecialization())); }) DEF_TRAVERSE_DECL(LinkageSpecDecl, {}) DEF_TRAVERSE_DECL(ObjCPropertyImplDecl, {// FIXME: implement this }) DEF_TRAVERSE_DECL(StaticAssertDecl, { TRY_TO(TraverseStmt(D->getAssertExpr())); TRY_TO(TraverseStmt(D->getMessage())); }) DEF_TRAVERSE_DECL( TranslationUnitDecl, {// Code in an unnamed namespace shows up automatically in // decls_begin()/decls_end(). Thus we don't need to recurse on // D->getAnonymousNamespace(). }) DEF_TRAVERSE_DECL(ExternCContextDecl, {}) DEF_TRAVERSE_DECL(NamespaceAliasDecl, { // We shouldn't traverse an aliased namespace, since it will be // defined (and, therefore, traversed) somewhere else. // // This return statement makes sure the traversal of nodes in // decls_begin()/decls_end() (done in the DEF_TRAVERSE_DECL macro) // is skipped - don't remove it. return true; }) DEF_TRAVERSE_DECL(LabelDecl, {// There is no code in a LabelDecl. }) DEF_TRAVERSE_DECL( NamespaceDecl, {// Code in an unnamed namespace shows up automatically in // decls_begin()/decls_end(). Thus we don't need to recurse on // D->getAnonymousNamespace(). }) DEF_TRAVERSE_DECL(ObjCCompatibleAliasDecl, {// FIXME: implement }) DEF_TRAVERSE_DECL(ObjCCategoryDecl, {// FIXME: implement if (ObjCTypeParamList *typeParamList = D->getTypeParamList()) { for (auto typeParam : *typeParamList) { TRY_TO(TraverseObjCTypeParamDecl(typeParam)); } } return true; }) DEF_TRAVERSE_DECL(ObjCCategoryImplDecl, {// FIXME: implement }) DEF_TRAVERSE_DECL(ObjCImplementationDecl, {// FIXME: implement }) DEF_TRAVERSE_DECL(ObjCInterfaceDecl, {// FIXME: implement if (ObjCTypeParamList *typeParamList = D->getTypeParamListAsWritten()) { for (auto typeParam : *typeParamList) { TRY_TO(TraverseObjCTypeParamDecl(typeParam)); } } if (TypeSourceInfo *superTInfo = D->getSuperClassTInfo()) { TRY_TO(TraverseTypeLoc(superTInfo->getTypeLoc())); } }) DEF_TRAVERSE_DECL(ObjCProtocolDecl, {// FIXME: implement }) DEF_TRAVERSE_DECL(ObjCMethodDecl, { if (D->getReturnTypeSourceInfo()) { TRY_TO(TraverseTypeLoc(D->getReturnTypeSourceInfo()->getTypeLoc())); } for (ObjCMethodDecl::param_iterator I = D->param_begin(), E = D->param_end(); I != E; ++I) { TRY_TO(TraverseDecl(*I)); } if (D->isThisDeclarationADefinition()) { TRY_TO(TraverseStmt(D->getBody())); } return true; }) DEF_TRAVERSE_DECL(ObjCTypeParamDecl, { if (D->hasExplicitBound()) { TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); // We shouldn't traverse D->getTypeForDecl(); it's a result of // declaring the type alias, not something that was written in the // source. } }) DEF_TRAVERSE_DECL(ObjCPropertyDecl, { if (D->getTypeSourceInfo()) TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); else TRY_TO(TraverseType(D->getType())); return true; }) DEF_TRAVERSE_DECL(UsingDecl, { TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(D->getNameInfo())); }) DEF_TRAVERSE_DECL(UsingDirectiveDecl, { TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); }) DEF_TRAVERSE_DECL(UsingShadowDecl, {}) DEF_TRAVERSE_DECL(OMPThreadPrivateDecl, { for (auto *I : D->varlists()) { TRY_TO(TraverseStmt(I)); } }) // A helper method for TemplateDecl's children. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateParameterListHelper( TemplateParameterList *TPL) { if (TPL) { for (TemplateParameterList::iterator I = TPL->begin(), E = TPL->end(); I != E; ++I) { TRY_TO(TraverseDecl(*I)); } } return true; } // A helper method for traversing the implicit instantiations of a // class template. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseClassInstantiations( ClassTemplateDecl *D) { for (auto *SD : D->specializations()) { for (auto *RD : SD->redecls()) { // We don't want to visit injected-class-names in this traversal. if (cast<CXXRecordDecl>(RD)->isInjectedClassName()) continue; switch ( cast<ClassTemplateSpecializationDecl>(RD)->getSpecializationKind()) { // Visit the implicit instantiations with the requested pattern. case TSK_Undeclared: case TSK_ImplicitInstantiation: TRY_TO(TraverseDecl(RD)); break; // We don't need to do anything on an explicit instantiation // or explicit specialization because there will be an explicit // node for it elsewhere. case TSK_ExplicitInstantiationDeclaration: case TSK_ExplicitInstantiationDefinition: case TSK_ExplicitSpecialization: break; } } } return true; } DEF_TRAVERSE_DECL(ClassTemplateDecl, { CXXRecordDecl *TempDecl = D->getTemplatedDecl(); TRY_TO(TraverseDecl(TempDecl)); TRY_TO(TraverseTemplateParameterListHelper(D->getTemplateParameters())); // By default, we do not traverse the instantiations of // class templates since they do not appear in the user code. The // following code optionally traverses them. // // We only traverse the class instantiations when we see the canonical // declaration of the template, to ensure we only visit them once. if (getDerived().shouldVisitTemplateInstantiations() && D == D->getCanonicalDecl()) TRY_TO(TraverseClassInstantiations(D)); // Note that getInstantiatedFromMemberTemplate() is just a link // from a template instantiation back to the template from which // it was instantiated, and thus should not be traversed. }) // A helper method for traversing the implicit instantiations of a // class template. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseVariableInstantiations( VarTemplateDecl *D) { for (auto *SD : D->specializations()) { for (auto *RD : SD->redecls()) { switch ( cast<VarTemplateSpecializationDecl>(RD)->getSpecializationKind()) { // Visit the implicit instantiations with the requested pattern. case TSK_Undeclared: case TSK_ImplicitInstantiation: TRY_TO(TraverseDecl(RD)); break; // We don't need to do anything on an explicit instantiation // or explicit specialization because there will be an explicit // node for it elsewhere. case TSK_ExplicitInstantiationDeclaration: case TSK_ExplicitInstantiationDefinition: case TSK_ExplicitSpecialization: break; } } } return true; } DEF_TRAVERSE_DECL(VarTemplateDecl, { VarDecl *TempDecl = D->getTemplatedDecl(); TRY_TO(TraverseDecl(TempDecl)); TRY_TO(TraverseTemplateParameterListHelper(D->getTemplateParameters())); // By default, we do not traverse the instantiations of // variable templates since they do not appear in the user code. The // following code optionally traverses them. // // We only traverse the variable instantiations when we see the canonical // declaration of the template, to ensure we only visit them once. if (getDerived().shouldVisitTemplateInstantiations() && D == D->getCanonicalDecl()) TRY_TO(TraverseVariableInstantiations(D)); // Note that getInstantiatedFromMemberTemplate() is just a link // from a template instantiation back to the template from which // it was instantiated, and thus should not be traversed. }) // A helper method for traversing the instantiations of a // function while skipping its specializations. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseFunctionInstantiations( FunctionTemplateDecl *D) { for (auto *FD : D->specializations()) { for (auto *RD : FD->redecls()) { switch (RD->getTemplateSpecializationKind()) { case TSK_Undeclared: case TSK_ImplicitInstantiation: // We don't know what kind of FunctionDecl this is. TRY_TO(TraverseDecl(RD)); break; // No need to visit explicit instantiations, we'll find the node // eventually. // FIXME: This is incorrect; there is no other node for an explicit // instantiation of a function template specialization. case TSK_ExplicitInstantiationDeclaration: case TSK_ExplicitInstantiationDefinition: break; case TSK_ExplicitSpecialization: break; } } } return true; } DEF_TRAVERSE_DECL(FunctionTemplateDecl, { TRY_TO(TraverseDecl(D->getTemplatedDecl())); TRY_TO(TraverseTemplateParameterListHelper(D->getTemplateParameters())); // By default, we do not traverse the instantiations of // function templates since they do not appear in the user code. The // following code optionally traverses them. // // We only traverse the function instantiations when we see the canonical // declaration of the template, to ensure we only visit them once. if (getDerived().shouldVisitTemplateInstantiations() && D == D->getCanonicalDecl()) TRY_TO(TraverseFunctionInstantiations(D)); }) DEF_TRAVERSE_DECL(TemplateTemplateParmDecl, { // D is the "T" in something like // template <template <typename> class T> class container { }; TRY_TO(TraverseDecl(D->getTemplatedDecl())); if (D->hasDefaultArgument()) { TRY_TO(TraverseTemplateArgumentLoc(D->getDefaultArgument())); } TRY_TO(TraverseTemplateParameterListHelper(D->getTemplateParameters())); }) DEF_TRAVERSE_DECL(TemplateTypeParmDecl, { // D is the "T" in something like "template<typename T> class vector;" if (D->getTypeForDecl()) TRY_TO(TraverseType(QualType(D->getTypeForDecl(), 0))); if (D->hasDefaultArgument()) TRY_TO(TraverseTypeLoc(D->getDefaultArgumentInfo()->getTypeLoc())); }) DEF_TRAVERSE_DECL(TypedefDecl, { TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); // We shouldn't traverse D->getTypeForDecl(); it's a result of // declaring the typedef, not something that was written in the // source. }) DEF_TRAVERSE_DECL(TypeAliasDecl, { TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); // We shouldn't traverse D->getTypeForDecl(); it's a result of // declaring the type alias, not something that was written in the // source. }) DEF_TRAVERSE_DECL(TypeAliasTemplateDecl, { TRY_TO(TraverseDecl(D->getTemplatedDecl())); TRY_TO(TraverseTemplateParameterListHelper(D->getTemplateParameters())); }) DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, { // A dependent using declaration which was marked with 'typename'. // template<class T> class A : public B<T> { using typename B<T>::foo; }; TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); // We shouldn't traverse D->getTypeForDecl(); it's a result of // declaring the type, not something that was written in the // source. }) DEF_TRAVERSE_DECL(EnumDecl, { if (D->getTypeForDecl()) TRY_TO(TraverseType(QualType(D->getTypeForDecl(), 0))); TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); // The enumerators are already traversed by // decls_begin()/decls_end(). }) // Helper methods for RecordDecl and its children. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseRecordHelper(RecordDecl *D) { // We shouldn't traverse D->getTypeForDecl(); it's a result of // declaring the type, not something that was written in the source. TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseCXXRecordHelper(CXXRecordDecl *D) { if (!TraverseRecordHelper(D)) return false; if (D->isCompleteDefinition()) { for (const auto &I : D->bases()) { TRY_TO(TraverseTypeLoc(I.getTypeSourceInfo()->getTypeLoc())); } // We don't traverse the friends or the conversions, as they are // already in decls_begin()/decls_end(). } return true; } DEF_TRAVERSE_DECL(RecordDecl, { TRY_TO(TraverseRecordHelper(D)); }) DEF_TRAVERSE_DECL(CXXRecordDecl, { TRY_TO(TraverseCXXRecordHelper(D)); }) DEF_TRAVERSE_DECL(ClassTemplateSpecializationDecl, { // For implicit instantiations ("set<int> x;"), we don't want to // recurse at all, since the instatiated class isn't written in // the source code anywhere. (Note the instatiated *type* -- // set<int> -- is written, and will still get a callback of // TemplateSpecializationType). For explicit instantiations // ("template set<int>;"), we do need a callback, since this // is the only callback that's made for this instantiation. // We use getTypeAsWritten() to distinguish. if (TypeSourceInfo *TSI = D->getTypeAsWritten()) TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); if (!getDerived().shouldVisitTemplateInstantiations() && D->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) // Returning from here skips traversing the // declaration context of the ClassTemplateSpecializationDecl // (embedded in the DEF_TRAVERSE_DECL() macro) // which contains the instantiated members of the class. return true; }) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseTemplateArgumentLocsHelper( const TemplateArgumentLoc *TAL, unsigned Count) { for (unsigned I = 0; I < Count; ++I) { TRY_TO(TraverseTemplateArgumentLoc(TAL[I])); } return true; } DEF_TRAVERSE_DECL(ClassTemplatePartialSpecializationDecl, { // The partial specialization. if (TemplateParameterList *TPL = D->getTemplateParameters()) { for (TemplateParameterList::iterator I = TPL->begin(), E = TPL->end(); I != E; ++I) { TRY_TO(TraverseDecl(*I)); } } // The args that remains unspecialized. TRY_TO(TraverseTemplateArgumentLocsHelper( D->getTemplateArgsAsWritten()->getTemplateArgs(), D->getTemplateArgsAsWritten()->NumTemplateArgs)); // Don't need the ClassTemplatePartialSpecializationHelper, even // though that's our parent class -- we already visit all the // template args here. TRY_TO(TraverseCXXRecordHelper(D)); // Instantiations will have been visited with the primary template. }) DEF_TRAVERSE_DECL(EnumConstantDecl, { TRY_TO(TraverseStmt(D->getInitExpr())); }) DEF_TRAVERSE_DECL(UnresolvedUsingValueDecl, { // Like UnresolvedUsingTypenameDecl, but without the 'typename': // template <class T> Class A : public Base<T> { using Base<T>::foo; }; TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(D->getNameInfo())); }) DEF_TRAVERSE_DECL(IndirectFieldDecl, {}) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseDeclaratorHelper(DeclaratorDecl *D) { TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); if (D->getTypeSourceInfo()) TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); else TRY_TO(TraverseType(D->getType())); return true; } DEF_TRAVERSE_DECL(MSPropertyDecl, { TRY_TO(TraverseDeclaratorHelper(D)); }) DEF_TRAVERSE_DECL(FieldDecl, { TRY_TO(TraverseDeclaratorHelper(D)); if (D->isBitField()) TRY_TO(TraverseStmt(D->getBitWidth())); else if (D->hasInClassInitializer()) TRY_TO(TraverseStmt(D->getInClassInitializer())); }) DEF_TRAVERSE_DECL(ObjCAtDefsFieldDecl, { TRY_TO(TraverseDeclaratorHelper(D)); if (D->isBitField()) TRY_TO(TraverseStmt(D->getBitWidth())); // FIXME: implement the rest. }) DEF_TRAVERSE_DECL(ObjCIvarDecl, { TRY_TO(TraverseDeclaratorHelper(D)); if (D->isBitField()) TRY_TO(TraverseStmt(D->getBitWidth())); // FIXME: implement the rest. }) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseFunctionHelper(FunctionDecl *D) { TRY_TO(TraverseNestedNameSpecifierLoc(D->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(D->getNameInfo())); // If we're an explicit template specialization, iterate over the // template args that were explicitly specified. If we were doing // this in typing order, we'd do it between the return type and // the function args, but both are handled by the FunctionTypeLoc // above, so we have to choose one side. I've decided to do before. if (const FunctionTemplateSpecializationInfo *FTSI = D->getTemplateSpecializationInfo()) { if (FTSI->getTemplateSpecializationKind() != TSK_Undeclared && FTSI->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) { // A specialization might not have explicit template arguments if it has // a templated return type and concrete arguments. if (const ASTTemplateArgumentListInfo *TALI = FTSI->TemplateArgumentsAsWritten) { TRY_TO(TraverseTemplateArgumentLocsHelper(TALI->getTemplateArgs(), TALI->NumTemplateArgs)); } } } // Visit the function type itself, which can be either // FunctionNoProtoType or FunctionProtoType, or a typedef. This // also covers the return type and the function parameters, // including exception specifications. TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc())); if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(D)) { // Constructor initializers. for (auto *I : Ctor->inits()) { TRY_TO(TraverseConstructorInitializer(I)); } } if (D->isThisDeclarationADefinition()) { TRY_TO(TraverseStmt(D->getBody())); // Function body. } return true; } DEF_TRAVERSE_DECL(FunctionDecl, { // We skip decls_begin/decls_end, which are already covered by // TraverseFunctionHelper(). return TraverseFunctionHelper(D); }) DEF_TRAVERSE_DECL(CXXMethodDecl, { // We skip decls_begin/decls_end, which are already covered by // TraverseFunctionHelper(). return TraverseFunctionHelper(D); }) DEF_TRAVERSE_DECL(CXXConstructorDecl, { // We skip decls_begin/decls_end, which are already covered by // TraverseFunctionHelper(). return TraverseFunctionHelper(D); }) // CXXConversionDecl is the declaration of a type conversion operator. // It's not a cast expression. DEF_TRAVERSE_DECL(CXXConversionDecl, { // We skip decls_begin/decls_end, which are already covered by // TraverseFunctionHelper(). return TraverseFunctionHelper(D); }) DEF_TRAVERSE_DECL(CXXDestructorDecl, { // We skip decls_begin/decls_end, which are already covered by // TraverseFunctionHelper(). return TraverseFunctionHelper(D); }) template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseVarHelper(VarDecl *D) { TRY_TO(TraverseDeclaratorHelper(D)); // Default params are taken care of when we traverse the ParmVarDecl. if (!isa<ParmVarDecl>(D)) TRY_TO(TraverseStmt(D->getInit())); return true; } DEF_TRAVERSE_DECL(VarDecl, { TRY_TO(TraverseVarHelper(D)); }) DEF_TRAVERSE_DECL(VarTemplateSpecializationDecl, { // For implicit instantiations, we don't want to // recurse at all, since the instatiated class isn't written in // the source code anywhere. if (TypeSourceInfo *TSI = D->getTypeAsWritten()) TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); if (!getDerived().shouldVisitTemplateInstantiations() && D->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) // Returning from here skips traversing the // declaration context of the VarTemplateSpecializationDecl // (embedded in the DEF_TRAVERSE_DECL() macro). return true; }) DEF_TRAVERSE_DECL(VarTemplatePartialSpecializationDecl, { // The partial specialization. if (TemplateParameterList *TPL = D->getTemplateParameters()) { for (TemplateParameterList::iterator I = TPL->begin(), E = TPL->end(); I != E; ++I) { TRY_TO(TraverseDecl(*I)); } } // The args that remains unspecialized. TRY_TO(TraverseTemplateArgumentLocsHelper( D->getTemplateArgsAsWritten()->getTemplateArgs(), D->getTemplateArgsAsWritten()->NumTemplateArgs)); // Don't need the VarTemplatePartialSpecializationHelper, even // though that's our parent class -- we already visit all the // template args here. TRY_TO(TraverseVarHelper(D)); // Instantiations will have been visited with the primary // template. }) DEF_TRAVERSE_DECL(ImplicitParamDecl, { TRY_TO(TraverseVarHelper(D)); }) DEF_TRAVERSE_DECL(NonTypeTemplateParmDecl, { // A non-type template parameter, e.g. "S" in template<int S> class Foo ... TRY_TO(TraverseDeclaratorHelper(D)); TRY_TO(TraverseStmt(D->getDefaultArgument())); }) DEF_TRAVERSE_DECL(ParmVarDecl, { TRY_TO(TraverseVarHelper(D)); if (D->hasDefaultArg() && D->hasUninstantiatedDefaultArg() && !D->hasUnparsedDefaultArg()) TRY_TO(TraverseStmt(D->getUninstantiatedDefaultArg())); if (D->hasDefaultArg() && !D->hasUninstantiatedDefaultArg() && !D->hasUnparsedDefaultArg()) TRY_TO(TraverseStmt(D->getDefaultArg())); }) #undef DEF_TRAVERSE_DECL // ----------------- Stmt traversal ----------------- // // For stmts, we automate (in the DEF_TRAVERSE_STMT macro) iterating // over the children defined in children() (every stmt defines these, // though sometimes the range is empty). Each individual Traverse* // method only needs to worry about children other than those. To see // what children() does for a given class, see, e.g., // http://clang.llvm.org/doxygen/Stmt_8cpp_source.html // This macro makes available a variable S, the passed-in stmt. #define DEF_TRAVERSE_STMT(STMT, CODE) \ template <typename Derived> \ bool RecursiveASTVisitor<Derived>::Traverse##STMT(STMT *S) { \ TRY_TO(WalkUpFrom##STMT(S)); \ StmtQueueAction StmtQueue(*this); \ { CODE; } \ for (Stmt *SubStmt : S->children()) { \ StmtQueue.queue(SubStmt); \ } \ return true; \ } DEF_TRAVERSE_STMT(GCCAsmStmt, { StmtQueue.queue(S->getAsmString()); for (unsigned I = 0, E = S->getNumInputs(); I < E; ++I) { StmtQueue.queue(S->getInputConstraintLiteral(I)); } for (unsigned I = 0, E = S->getNumOutputs(); I < E; ++I) { StmtQueue.queue(S->getOutputConstraintLiteral(I)); } for (unsigned I = 0, E = S->getNumClobbers(); I < E; ++I) { StmtQueue.queue(S->getClobberStringLiteral(I)); } // children() iterates over inputExpr and outputExpr. }) DEF_TRAVERSE_STMT( MSAsmStmt, {// FIXME: MS Asm doesn't currently parse Constraints, Clobbers, etc. Once // added this needs to be implemented. }) DEF_TRAVERSE_STMT(CXXCatchStmt, { TRY_TO(TraverseDecl(S->getExceptionDecl())); // children() iterates over the handler block. }) DEF_TRAVERSE_STMT(DeclStmt, { for (auto *I : S->decls()) { TRY_TO(TraverseDecl(I)); } // Suppress the default iteration over children() by // returning. Here's why: A DeclStmt looks like 'type var [= // initializer]'. The decls above already traverse over the // initializers, so we don't have to do it again (which // children() would do). return true; }) // These non-expr stmts (most of them), do not need any action except // iterating over the children. DEF_TRAVERSE_STMT(BreakStmt, {}) DEF_TRAVERSE_STMT(CXXTryStmt, {}) DEF_TRAVERSE_STMT(CaseStmt, {}) DEF_TRAVERSE_STMT(CompoundStmt, {}) DEF_TRAVERSE_STMT(ContinueStmt, {}) DEF_TRAVERSE_STMT(DefaultStmt, {}) DEF_TRAVERSE_STMT(DoStmt, {}) DEF_TRAVERSE_STMT(ForStmt, {}) DEF_TRAVERSE_STMT(GotoStmt, {}) DEF_TRAVERSE_STMT(IfStmt, {}) DEF_TRAVERSE_STMT(IndirectGotoStmt, {}) DEF_TRAVERSE_STMT(LabelStmt, {}) DEF_TRAVERSE_STMT(AttributedStmt, {}) DEF_TRAVERSE_STMT(NullStmt, {}) DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {}) DEF_TRAVERSE_STMT(ObjCAtFinallyStmt, {}) DEF_TRAVERSE_STMT(ObjCAtSynchronizedStmt, {}) DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {}) DEF_TRAVERSE_STMT(ObjCAtTryStmt, {}) DEF_TRAVERSE_STMT(ObjCForCollectionStmt, {}) DEF_TRAVERSE_STMT(ObjCAutoreleasePoolStmt, {}) DEF_TRAVERSE_STMT(CXXForRangeStmt, {}) DEF_TRAVERSE_STMT(MSDependentExistsStmt, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(S->getNameInfo())); }) DEF_TRAVERSE_STMT(ReturnStmt, {}) DEF_TRAVERSE_STMT(SwitchStmt, {}) DEF_TRAVERSE_STMT(WhileStmt, {}) DEF_TRAVERSE_STMT(CXXDependentScopeMemberExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(S->getMemberNameInfo())); if (S->hasExplicitTemplateArgs()) { TRY_TO(TraverseTemplateArgumentLocsHelper(S->getTemplateArgs(), S->getNumTemplateArgs())); } }) DEF_TRAVERSE_STMT(DeclRefExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(S->getNameInfo())); TRY_TO(TraverseTemplateArgumentLocsHelper(S->getTemplateArgs(), S->getNumTemplateArgs())); }) DEF_TRAVERSE_STMT(DependentScopeDeclRefExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(S->getNameInfo())); if (S->hasExplicitTemplateArgs()) { TRY_TO(TraverseTemplateArgumentLocsHelper( S->getExplicitTemplateArgs().getTemplateArgs(), S->getNumTemplateArgs())); } }) DEF_TRAVERSE_STMT(MemberExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(S->getMemberNameInfo())); TRY_TO(TraverseTemplateArgumentLocsHelper(S->getTemplateArgs(), S->getNumTemplateArgs())); }) DEF_TRAVERSE_STMT( ImplicitCastExpr, {// We don't traverse the cast type, as it's not written in the // source code. }) DEF_TRAVERSE_STMT(CStyleCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXFunctionalCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXConstCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXDynamicCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXStaticCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) // InitListExpr is a tricky one, because we want to do all our work on // the syntactic form of the listexpr, but this method takes the // semantic form by default. We can't use the macro helper because it // calls WalkUp*() on the semantic form, before our code can convert // to the syntactic form. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseInitListExpr(InitListExpr *S) { if (InitListExpr *Syn = S->getSyntacticForm()) S = Syn; TRY_TO(WalkUpFromInitListExpr(S)); StmtQueueAction StmtQueue(*this); // All we need are the default actions. FIXME: use a helper function. for (Stmt *SubStmt : S->children()) { StmtQueue.queue(SubStmt); } return true; } // GenericSelectionExpr is a special case because the types and expressions // are interleaved. We also need to watch out for null types (default // generic associations). template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseGenericSelectionExpr( GenericSelectionExpr *S) { TRY_TO(WalkUpFromGenericSelectionExpr(S)); StmtQueueAction StmtQueue(*this); StmtQueue.queue(S->getControllingExpr()); for (unsigned i = 0; i != S->getNumAssocs(); ++i) { if (TypeSourceInfo *TS = S->getAssocTypeSourceInfo(i)) TRY_TO(TraverseTypeLoc(TS->getTypeLoc())); StmtQueue.queue(S->getAssocExpr(i)); } return true; } // PseudoObjectExpr is a special case because of the wierdness with // syntactic expressions and opaque values. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraversePseudoObjectExpr(PseudoObjectExpr *S) { TRY_TO(WalkUpFromPseudoObjectExpr(S)); StmtQueueAction StmtQueue(*this); StmtQueue.queue(S->getSyntacticForm()); for (PseudoObjectExpr::semantics_iterator i = S->semantics_begin(), e = S->semantics_end(); i != e; ++i) { Expr *sub = *i; if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(sub)) sub = OVE->getSourceExpr(); StmtQueue.queue(sub); } return true; } DEF_TRAVERSE_STMT(CXXScalarValueInitExpr, { // This is called for code like 'return T()' where T is a built-in // (i.e. non-class) type. TRY_TO(TraverseTypeLoc(S->getTypeSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXNewExpr, { // The child-iterator will pick up the other arguments. TRY_TO(TraverseTypeLoc(S->getAllocatedTypeSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(OffsetOfExpr, { // The child-iterator will pick up the expression representing // the field. // FIMXE: for code like offsetof(Foo, a.b.c), should we get // making a MemberExpr callbacks for Foo.a, Foo.a.b, and Foo.a.b.c? TRY_TO(TraverseTypeLoc(S->getTypeSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(UnaryExprOrTypeTraitExpr, { // The child-iterator will pick up the arg if it's an expression, // but not if it's a type. if (S->isArgumentType()) TRY_TO(TraverseTypeLoc(S->getArgumentTypeInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXTypeidExpr, { // The child-iterator will pick up the arg if it's an expression, // but not if it's a type. if (S->isTypeOperand()) TRY_TO(TraverseTypeLoc(S->getTypeOperandSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(MSPropertyRefExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); }) DEF_TRAVERSE_STMT(CXXUuidofExpr, { // The child-iterator will pick up the arg if it's an expression, // but not if it's a type. if (S->isTypeOperand()) TRY_TO(TraverseTypeLoc(S->getTypeOperandSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(TypeTraitExpr, { for (unsigned I = 0, N = S->getNumArgs(); I != N; ++I) TRY_TO(TraverseTypeLoc(S->getArg(I)->getTypeLoc())); }) DEF_TRAVERSE_STMT(ArrayTypeTraitExpr, { TRY_TO(TraverseTypeLoc(S->getQueriedTypeSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(ExpressionTraitExpr, { StmtQueue.queue(S->getQueriedExpression()); }) DEF_TRAVERSE_STMT(VAArgExpr, { // The child-iterator will pick up the expression argument. TRY_TO(TraverseTypeLoc(S->getWrittenTypeInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXTemporaryObjectExpr, { // This is called for code like 'return T()' where T is a class type. TRY_TO(TraverseTypeLoc(S->getTypeSourceInfo()->getTypeLoc())); }) // Walk only the visible parts of lambda expressions. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseLambdaExpr(LambdaExpr *S) { TRY_TO(WalkUpFromLambdaExpr(S)); for (LambdaExpr::capture_iterator C = S->explicit_capture_begin(), CEnd = S->explicit_capture_end(); C != CEnd; ++C) { TRY_TO(TraverseLambdaCapture(S, C)); } TypeLoc TL = S->getCallOperator()->getTypeSourceInfo()->getTypeLoc(); FunctionProtoTypeLoc Proto = TL.castAs<FunctionProtoTypeLoc>(); if (S->hasExplicitParameters() && S->hasExplicitResultType()) { // Visit the whole type. TRY_TO(TraverseTypeLoc(TL)); } else { if (S->hasExplicitParameters()) { // Visit parameters. for (unsigned I = 0, N = Proto.getNumParams(); I != N; ++I) { TRY_TO(TraverseDecl(Proto.getParam(I))); } } else if (S->hasExplicitResultType()) { TRY_TO(TraverseTypeLoc(Proto.getReturnLoc())); } auto *T = Proto.getTypePtr(); for (const auto &E : T->exceptions()) { TRY_TO(TraverseType(E)); } if (Expr *NE = T->getNoexceptExpr()) TRY_TO(TraverseStmt(NE)); } TRY_TO(TraverseLambdaBody(S)); return true; } DEF_TRAVERSE_STMT(CXXUnresolvedConstructExpr, { // This is called for code like 'T()', where T is a template argument. TRY_TO(TraverseTypeLoc(S->getTypeSourceInfo()->getTypeLoc())); }) // These expressions all might take explicit template arguments. // We traverse those if so. FIXME: implement these. DEF_TRAVERSE_STMT(CXXConstructExpr, {}) DEF_TRAVERSE_STMT(CallExpr, {}) DEF_TRAVERSE_STMT(CXXMemberCallExpr, {}) // These exprs (most of them), do not need any action except iterating // over the children. DEF_TRAVERSE_STMT(AddrLabelExpr, {}) DEF_TRAVERSE_STMT(ArraySubscriptExpr, {}) DEF_TRAVERSE_STMT(BlockExpr, { TRY_TO(TraverseDecl(S->getBlockDecl())); return true; // no child statements to loop through. }) DEF_TRAVERSE_STMT(ChooseExpr, {}) DEF_TRAVERSE_STMT(CompoundLiteralExpr, { TRY_TO(TraverseTypeLoc(S->getTypeSourceInfo()->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXBindTemporaryExpr, {}) DEF_TRAVERSE_STMT(CXXBoolLiteralExpr, {}) DEF_TRAVERSE_STMT(CXXDefaultArgExpr, {}) DEF_TRAVERSE_STMT(CXXDefaultInitExpr, {}) DEF_TRAVERSE_STMT(CXXDeleteExpr, {}) DEF_TRAVERSE_STMT(ExprWithCleanups, {}) DEF_TRAVERSE_STMT(CXXNullPtrLiteralExpr, {}) DEF_TRAVERSE_STMT(CXXStdInitializerListExpr, {}) DEF_TRAVERSE_STMT(CXXPseudoDestructorExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); if (TypeSourceInfo *ScopeInfo = S->getScopeTypeInfo()) TRY_TO(TraverseTypeLoc(ScopeInfo->getTypeLoc())); if (TypeSourceInfo *DestroyedTypeInfo = S->getDestroyedTypeInfo()) TRY_TO(TraverseTypeLoc(DestroyedTypeInfo->getTypeLoc())); }) DEF_TRAVERSE_STMT(CXXThisExpr, {}) DEF_TRAVERSE_STMT(CXXThrowExpr, {}) DEF_TRAVERSE_STMT(UserDefinedLiteral, {}) DEF_TRAVERSE_STMT(DesignatedInitExpr, {}) DEF_TRAVERSE_STMT(DesignatedInitUpdateExpr, {}) DEF_TRAVERSE_STMT(ExtVectorElementExpr, {}) DEF_TRAVERSE_STMT(GNUNullExpr, {}) DEF_TRAVERSE_STMT(ImplicitValueInitExpr, {}) DEF_TRAVERSE_STMT(NoInitExpr, {}) DEF_TRAVERSE_STMT(ObjCBoolLiteralExpr, {}) DEF_TRAVERSE_STMT(ObjCEncodeExpr, { if (TypeSourceInfo *TInfo = S->getEncodedTypeSourceInfo()) TRY_TO(TraverseTypeLoc(TInfo->getTypeLoc())); }) DEF_TRAVERSE_STMT(ObjCIsaExpr, {}) DEF_TRAVERSE_STMT(ObjCIvarRefExpr, {}) DEF_TRAVERSE_STMT(ObjCMessageExpr, { if (TypeSourceInfo *TInfo = S->getClassReceiverTypeInfo()) TRY_TO(TraverseTypeLoc(TInfo->getTypeLoc())); }) DEF_TRAVERSE_STMT(ObjCPropertyRefExpr, {}) DEF_TRAVERSE_STMT(ObjCSubscriptRefExpr, {}) DEF_TRAVERSE_STMT(ObjCProtocolExpr, {}) DEF_TRAVERSE_STMT(ObjCSelectorExpr, {}) DEF_TRAVERSE_STMT(ObjCIndirectCopyRestoreExpr, {}) DEF_TRAVERSE_STMT(ObjCBridgedCastExpr, { TRY_TO(TraverseTypeLoc(S->getTypeInfoAsWritten()->getTypeLoc())); }) DEF_TRAVERSE_STMT(ParenExpr, {}) DEF_TRAVERSE_STMT(ParenListExpr, {}) DEF_TRAVERSE_STMT(PredefinedExpr, {}) DEF_TRAVERSE_STMT(ShuffleVectorExpr, {}) DEF_TRAVERSE_STMT(ConvertVectorExpr, {}) DEF_TRAVERSE_STMT(StmtExpr, {}) DEF_TRAVERSE_STMT(UnresolvedLookupExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); if (S->hasExplicitTemplateArgs()) { TRY_TO(TraverseTemplateArgumentLocsHelper(S->getTemplateArgs(), S->getNumTemplateArgs())); } }) DEF_TRAVERSE_STMT(UnresolvedMemberExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); if (S->hasExplicitTemplateArgs()) { TRY_TO(TraverseTemplateArgumentLocsHelper(S->getTemplateArgs(), S->getNumTemplateArgs())); } }) DEF_TRAVERSE_STMT(SEHTryStmt, {}) DEF_TRAVERSE_STMT(SEHExceptStmt, {}) DEF_TRAVERSE_STMT(SEHFinallyStmt, {}) DEF_TRAVERSE_STMT(SEHLeaveStmt, {}) DEF_TRAVERSE_STMT(CapturedStmt, { TRY_TO(TraverseDecl(S->getCapturedDecl())); }) DEF_TRAVERSE_STMT(CXXOperatorCallExpr, {}) DEF_TRAVERSE_STMT(OpaqueValueExpr, {}) DEF_TRAVERSE_STMT(TypoExpr, {}) DEF_TRAVERSE_STMT(CUDAKernelCallExpr, {}) // These operators (all of them) do not need any action except // iterating over the children. DEF_TRAVERSE_STMT(BinaryConditionalOperator, {}) DEF_TRAVERSE_STMT(ConditionalOperator, {}) DEF_TRAVERSE_STMT(UnaryOperator, {}) DEF_TRAVERSE_STMT(BinaryOperator, {}) DEF_TRAVERSE_STMT(CompoundAssignOperator, {}) DEF_TRAVERSE_STMT(CXXNoexceptExpr, {}) DEF_TRAVERSE_STMT(PackExpansionExpr, {}) DEF_TRAVERSE_STMT(SizeOfPackExpr, {}) DEF_TRAVERSE_STMT(SubstNonTypeTemplateParmPackExpr, {}) DEF_TRAVERSE_STMT(SubstNonTypeTemplateParmExpr, {}) DEF_TRAVERSE_STMT(FunctionParmPackExpr, {}) DEF_TRAVERSE_STMT(MaterializeTemporaryExpr, {}) DEF_TRAVERSE_STMT(CXXFoldExpr, {}) DEF_TRAVERSE_STMT(AtomicExpr, {}) // These literals (all of them) do not need any action. DEF_TRAVERSE_STMT(IntegerLiteral, {}) DEF_TRAVERSE_STMT(CharacterLiteral, {}) DEF_TRAVERSE_STMT(FloatingLiteral, {}) DEF_TRAVERSE_STMT(ImaginaryLiteral, {}) DEF_TRAVERSE_STMT(StringLiteral, {}) DEF_TRAVERSE_STMT(ObjCStringLiteral, {}) DEF_TRAVERSE_STMT(ObjCBoxedExpr, {}) DEF_TRAVERSE_STMT(ObjCArrayLiteral, {}) DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {}) // Traverse OpenCL: AsType, Convert. DEF_TRAVERSE_STMT(AsTypeExpr, {}) // OpenMP directives. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseOMPExecutableDirective( OMPExecutableDirective *S) { for (auto *C : S->clauses()) { TRY_TO(TraverseOMPClause(C)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseOMPLoopDirective(OMPLoopDirective *S) { return TraverseOMPExecutableDirective(S); } DEF_TRAVERSE_STMT(OMPParallelDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPSimdDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPForDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPForSimdDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPSectionsDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPSectionDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPSingleDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPMasterDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPCriticalDirective, { TRY_TO(TraverseDeclarationNameInfo(S->getDirectiveName())); TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPParallelForDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPParallelForSimdDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPParallelSectionsDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTaskDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTaskyieldDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPBarrierDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTaskwaitDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTaskgroupDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPCancellationPointDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPCancelDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPFlushDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPOrderedDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPAtomicDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTargetDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) DEF_TRAVERSE_STMT(OMPTeamsDirective, { TRY_TO(TraverseOMPExecutableDirective(S)); }) // OpenMP clauses. template <typename Derived> bool RecursiveASTVisitor<Derived>::TraverseOMPClause(OMPClause *C) { if (!C) return true; switch (C->getClauseKind()) { #define OPENMP_CLAUSE(Name, Class) \ case OMPC_##Name: \ TRY_TO(Visit##Class(static_cast<Class *>(C))); \ break; #include "clang/Basic/OpenMPKinds.def" case OMPC_threadprivate: case OMPC_unknown: break; } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPIfClause(OMPIfClause *C) { TRY_TO(TraverseStmt(C->getCondition())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPFinalClause(OMPFinalClause *C) { TRY_TO(TraverseStmt(C->getCondition())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPNumThreadsClause(OMPNumThreadsClause *C) { TRY_TO(TraverseStmt(C->getNumThreads())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPSafelenClause(OMPSafelenClause *C) { TRY_TO(TraverseStmt(C->getSafelen())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPCollapseClause(OMPCollapseClause *C) { TRY_TO(TraverseStmt(C->getNumForLoops())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPDefaultClause(OMPDefaultClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPProcBindClause(OMPProcBindClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPScheduleClause(OMPScheduleClause *C) { TRY_TO(TraverseStmt(C->getChunkSize())); TRY_TO(TraverseStmt(C->getHelperChunkSize())); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPOrderedClause(OMPOrderedClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPNowaitClause(OMPNowaitClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPUntiedClause(OMPUntiedClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPMergeableClause(OMPMergeableClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPReadClause(OMPReadClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPWriteClause(OMPWriteClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPCaptureClause(OMPCaptureClause *) { return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPSeqCstClause(OMPSeqCstClause *) { return true; } template <typename Derived> template <typename T> bool RecursiveASTVisitor<Derived>::VisitOMPClauseList(T *Node) { for (auto *E : Node->varlists()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPPrivateClause(OMPPrivateClause *C) { TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->private_copies()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPFirstprivateClause( OMPFirstprivateClause *C) { TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->private_copies()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->inits()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPLastprivateClause( OMPLastprivateClause *C) { TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->private_copies()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->source_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->destination_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->assignment_ops()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPSharedClause(OMPSharedClause *C) { TRY_TO(VisitOMPClauseList(C)); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) { TRY_TO(TraverseStmt(C->getStep())); TRY_TO(TraverseStmt(C->getCalcStep())); TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->inits()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->updates()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->finals()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) { TRY_TO(TraverseStmt(C->getAlignment())); TRY_TO(VisitOMPClauseList(C)); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPCopyinClause(OMPCopyinClause *C) { TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->source_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->destination_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->assignment_ops()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPCopyprivateClause( OMPCopyprivateClause *C) { TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->source_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->destination_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->assignment_ops()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPReductionClause(OMPReductionClause *C) { TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc())); TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo())); TRY_TO(VisitOMPClauseList(C)); for (auto *E : C->lhs_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->rhs_exprs()) { TRY_TO(TraverseStmt(E)); } for (auto *E : C->reduction_ops()) { TRY_TO(TraverseStmt(E)); } return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) { TRY_TO(VisitOMPClauseList(C)); return true; } template <typename Derived> bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) { TRY_TO(VisitOMPClauseList(C)); return true; } // FIXME: look at the following tricky-seeming exprs to see if we // need to recurse on anything. These are ones that have methods // returning decls or qualtypes or nestednamespecifier -- though I'm // not sure if they own them -- or just seemed very complicated, or // had lots of sub-types to explore. // // VisitOverloadExpr and its children: recurse on template args? etc? // FIXME: go through all the stmts and exprs again, and see which of them // create new types, and recurse on the types (TypeLocs?) of those. // Candidates: // // http://clang.llvm.org/doxygen/classclang_1_1CXXTypeidExpr.html // http://clang.llvm.org/doxygen/classclang_1_1UnaryExprOrTypeTraitExpr.html // http://clang.llvm.org/doxygen/classclang_1_1TypesCompatibleExpr.html // Every class that has getQualifier. #undef DEF_TRAVERSE_STMT #undef TRY_TO #undef RecursiveASTVisitor } // end namespace clang #endif // LLVM_CLANG_LIBCLANG_RECURSIVEASTVISITOR_H
[ "kjlu@gatech.edu" ]
kjlu@gatech.edu
a26880a9b941ecb71f2bff6a0255ff17dd93f609
e76e1d3bef8dda184f6ad869ef68e55b9a63f4bb
/Random/approx_log.h
141c1b44d3206bffae22f3f4e3783a9ce4356ce0
[]
no_license
VinInn/ctest
1dc634ba662e579ffe9ddabfde21fe17d9bc1534
8dbef5207cb3bd7d83e1874f0fce3f98e66c1915
refs/heads/master
2023-07-14T21:19:58.215969
2023-07-08T06:04:55
2023-07-08T06:04:55
21,533,811
3
0
null
null
null
null
UTF-8
C++
false
false
5,255
h
#pragma once /* Quick and dirty, branchless, log implementations Author: Florent de Dinechin, Aric, ENS-Lyon All right reserved Warning + disclaimers: - no special case handling (infinite/NaN inputs, even zero input, etc) - no input subnormal handling, you'll get completely wrong results. This is the worst problem IMHO (leading to very rare but very bad bugs) However it is probable you can guarantee that your input numbers are never subnormal, check that. Otherwise I'll fix it... - output accuracy reported is only absolute. Relative accuracy may be arbitrary bad around log(1), especially for approx_log0. approx_logf is more or less OK. - The larger/smaller the input x (i.e. away from 1), the better the accuracy. - For the higher degree polynomials it is possible to win a few cycles by parallelizing the evaluation of the polynomial (Estrin). It doesn't make much sense if you want to make a vector function. - All this code is FMA-safe (and accelerated by FMA) Feel free to distribute or insert in other programs etc, as long as this notice is attached. Comments, requests etc: Florent.de.Dinechin@ens-lyon.fr Polynomials were obtained using Sollya scripts (in comments): please also keep these comments attached to the code of approx_logf. */ #include "approx_math.h" template <int DEGREE> constexpr float approx_logf_P(float p); // the following is Sollya output // degree = 2 => absolute accuracy is 7 bits template <> constexpr float approx_logf_P<2>(float y) { return y * (float(0x1.0671c4p0) + y * (float(-0x7.27744p-4))); } // degree = 3 => absolute accuracy is 10 bits template <> constexpr float approx_logf_P<3>(float y) { return y * (float(0x1.013354p0) + y * (-float(0x8.33006p-4) + y * float(0x4.0d16cp-4))); } // degree = 4 => absolute accuracy is 13 bits template <> constexpr float approx_logf_P<4>(float y) { return y * (float(0xf.ff5bap-4) + y * (-float(0x8.13e5ep-4) + y * (float(0x5.826ep-4) + y * (-float(0x2.e87fb8p-4))))); } // degree = 5 => absolute accuracy is 16 bits template <> constexpr float approx_logf_P<5>(float y) { return y * (float(0xf.ff652p-4) + y * (-float(0x8.0048ap-4) + y * (float(0x5.72782p-4) + y * (-float(0x4.20904p-4) + y * float(0x2.1d7fd8p-4))))); } // degree = 6 => absolute accuracy is 19 bits template <> constexpr float approx_logf_P<6>(float y) { return y * (float(0xf.fff14p-4) + y * (-float(0x7.ff4bfp-4) + y * (float(0x5.582f6p-4) + y * (-float(0x4.1dcf2p-4) + y * (float(0x3.3863f8p-4) + y * (-float(0x1.9288d4p-4))))))); } // degree = 7 => absolute accuracy is 21 bits template <> constexpr float approx_logf_P<7>(float y) { return y * (float(0x1.000034p0) + y * (-float(0x7.ffe57p-4) + y * (float(0x5.5422ep-4) + y * (-float(0x4.037a6p-4) + y * (float(0x3.541c88p-4) + y * (-float(0x2.af842p-4) + y * float(0x1.48b3d8p-4))))))); } // degree = 8 => absolute accuracy is 24 bits template <> constexpr float approx_logf_P<8>(float y) { return y * (float(0x1.00000cp0) + y * (float(-0x8.0003p-4) + y * (float(0x5.55087p-4) + y * (float(-0x3.fedcep-4) + y * (float(0x3.3a1dap-4) + y * (float(-0x2.cb55fp-4) + y * (float(0x2.38831p-4) + y * (float(-0xf.e87cap-8))))))))); } template <int DEGREE> constexpr float unsafe_logf_impl(float x) { using namespace approx_math; binary32 xx, m; xx.f = x; // as many integer computations as possible, most are 1-cycle only, and lots of ILP. int e = (((xx.i32) >> 23) & 0xFF) - 127; // extract exponent m.i32 = (xx.i32 & 0x007FFFFF) | 0x3F800000; // extract mantissa as an FP number int adjust = (xx.i32 >> 22) & 1; // first bit of the mantissa, tells us if 1.m > 1.5 m.i32 -= adjust << 23; // if so, divide 1.m by 2 (exact operation, no rounding) e += adjust; // and update exponent so we still have x=2^E*y // now back to floating-point float y = m.f - 1.0f; // Sterbenz-exact; cancels but we don't care about output relative error // all the computations so far were free of rounding errors... // the following is based on Sollya output float p = approx_logf_P<DEGREE>(y); constexpr float Log2 = 0xb.17218p-4; // 0.693147182464599609375 return float(e) * Log2 + p; } #ifndef NO_APPROX_MATH template <int DEGREE> constexpr float unsafe_logf(float x) { return unsafe_logf_impl<DEGREE>(x); } template <int DEGREE> constexpr float approx_logf(float x) { using namespace approx_math; constexpr float MAXNUMF = 3.4028234663852885981170418348451692544e38f; //x = std::max(std::min(x,MAXNUMF),0.f); float res = unsafe_logf<DEGREE>(x); res = (x < MAXNUMF) ? res : std::numeric_limits<float>::infinity(); return (x > 0) ? res : std::numeric_limits<float>::quiet_NaN(); } #else template <int DEGREE> constexpr float unsafe_logf(float x) { return std::log(x); } template <int DEGREE> constexpr float approx_logf(float x) { return std::log(x); } #endif // NO_APPROX_MATH
[ "vincenzo.innocente@cern.ch" ]
vincenzo.innocente@cern.ch
e08956d592567bc5e8fd7a1024a68307747dbc1e
416b8c31b16ebcd873fbbea82d089143ea693c27
/classes/gateScene.cpp
af48c83cf48da2e5a8dde2b9573b88b70b8532d9
[]
no_license
17c/CrazyCar
e76f5338cdbc1bc7b098de054022f3d06b8d2c6f
96c415fb3818db5b98a4d2cba98d66cd74b97e15
refs/heads/master
2021-01-11T04:46:03.938272
2016-10-17T05:03:13
2016-10-17T05:03:13
71,098,892
0
0
null
null
null
null
GB18030
C++
false
false
3,986
cpp
#include "gateScene.h" #include "Car.h" #include "CarMoveController.h" #include "MonsterManager.h" #include "CSceneStart.h" #include "cocos2d.h" USING_NS_CC; Scene * gateScene::createScene() { auto scene = Scene::create(); auto Layer = gateScene::create(); scene->addChild(Layer); return scene; } bool gateScene::init() { if (!Layer::init()) { return false; } score = 0.0; //分数记为0 isPause = false; auto visibleSize = Director::getInstance()->getVisibleSize(); this->scheduleUpdate(); auto CarMap_1 = TMXTiledMap::create("CarMap.tmx"); //初始化赛车地图1; m_backGround_1 = CarMap_1; //初始化 s_CarMap的值 log("X:%f,Y:%f", CarMap_1->getContentSize().width, CarMap_1->getContentSize().height); log("PosX:%f,PosY: %f", CarMap_1->getPositionX(),CarMap_1->getPositionY());//X:770.000000,Y:4200.000000 PosY: 0.000000 auto CarMap_2 = TMXTiledMap::create("CarMap.tmx"); //初始化 赛车地图2 m_backGround_2 = CarMap_2; CarMap_2->setPositionY(CarMap_1->getPositionY()+CarMap_1->getContentSize().height); //设置地图2的坐标 this->addChild(CarMap_1,0); this->addChild(CarMap_2,0); auto car = Car::create(); //创建Player; Sprite* s_car = Sprite::create("Car.png"); // 创建一个精灵s_car car->bindSprite(s_car);//与Player绑定 //car->bindMap(CarMap); //将CarMap与汽车绑定 this->addChild(car);//加入场景中 m_car = car; TMXObjectGroup* player = CarMap_1->getObjectGroup("player"); //获取图形层 auto playerPointMap = player->getObject("playerPoint"); // 获取图形层的一个属性PlayerPoint float PlayerPosX = playerPointMap.at("x").asFloat(); //获取玩家坐标的X值 float PlayerPosY = playerPointMap.at("y").asFloat(); //获取玩家坐标的Y值 car->setPosition(Point(PlayerPosX, PlayerPosY));//设置玩家汽车的位置 auto carController = CarMoveController::create(); //创建 汽车移动控制器 carController->bindCar(car); //将其与汽车绑定 car->addChild(carController); //为了防止汽车移动控制器被release()掉 MonsterManager* monsterManager = MonsterManager::create(); //初始化怪物管理器 monsterManager->bindCar(car); // 怪兽管理器与汽车绑定 this->addChild(monsterManager); LoadUI(); //加载UI return true; } void gateScene::update(float dt) { score = score + dt; float fbackGround_1_PosY = m_backGround_1->getPositionY(); fbackGround_1_PosY -= m_car->getCarSpeed(); m_backGround_1->setPositionY(fbackGround_1_PosY); //让地图1 自己动起来 log("%f", fbackGround_1_PosY); float fbackGround_2_PosY = m_backGround_2->getPositionY(); fbackGround_2_PosY -= m_car->getCarSpeed(); m_backGround_2->setPositionY(fbackGround_2_PosY); //让地图2 自己动起来 if (fbackGround_1_PosY <= -(m_backGround_1->getContentSize().height)) { //当地图1的坐标小于等于 -height/2 时 设置它的坐标为 m_backGround_1->setPositionY(m_backGround_1->getContentSize().height); } if (fbackGround_2_PosY <= -(m_backGround_2->getContentSize().height)) { //当地图2的坐标小于等于 -height/2 时 设置它的坐标为 m_backGround_2->setPositionY(m_backGround_2->getContentSize().height); } tf_score->setText(Value(score).asString()); } void gateScene::LoadUI() { auto ui = CSLoader::createNode("scene1.csb"); this->addChild(ui,0); bt_pause =static_cast<ui::Button*>(ui->getChildByName("bt_pause")); //读取暂停按钮 bt_pause->addClickEventListener([=](Ref* sender) { if (!isPause) { Director::getInstance()->pause(); isPause = true; } else { Director::getInstance()->resume(); isPause = false; } }); bt_turnBack = static_cast<ui::Button*>(ui->getChildByName("bt_back")); //返回目录 bt_turnBack->addClickEventListener([](Ref* sender) { Director::getInstance()->replaceScene(CSceneStart::createScene()); }); tf_score = static_cast<ui::TextField*>(ui->getChildByName("tf_score")); //读取 记分面板 }
[ "hacor@foxmail.com" ]
hacor@foxmail.com
12d45ffba4841d485f40e60c6c87b2c977b38422
701106170d5ad2c2261fbe8a33be23ebf81f6226
/main.cpp
e2135f312cc20d2359c2c92ba0085492e87e7852
[]
no_license
drWebber/CourseWork
7e9bbfe91930471e14b7303b62e218a13a579d4a
88ca7650d6647a1f660035312257f61cc25b3347
refs/heads/master
2021-05-07T22:27:53.817884
2017-11-11T16:38:50
2017-11-11T16:38:50
107,310,386
0
0
null
null
null
null
UTF-8
C++
false
false
440
cpp
#include "mainwindow.h" #include <QApplication> #include <QFile> int main(int argc, char *argv[]) { QApplication a(argc, argv); QApplication::setWindowIcon(QIcon(QPixmap(":/img/images/favicon.png"))); QFile styleF; styleF.setFileName(":/qss/misc/style.css"); styleF.open(QFile::ReadOnly); QString qssStr = styleF.readAll(); qApp->setStyleSheet(qssStr); MainWindow w; w.show(); return a.exec(); }
[ "m.fedorenko@tut.by" ]
m.fedorenko@tut.by
919af789f97707f908f51262a011d8a43b635f8f
d29244939102a4e16f5aef5d36a5e4de96619267
/CheckPresence/app/src/main/jni/MemoryFile.cpp
684dc4f028d2b2f51756fc72e98ec66fa6a537d1
[]
no_license
damiandajer/CheckPresence
e304d525cc2cac2397dfdae96007b82df62de86f
5cfd07f55c8bc0e5bb39f4e1daecab5af5415ab6
refs/heads/master
2021-01-21T04:41:31.830649
2016-06-20T22:03:08
2016-06-20T22:03:08
55,186,043
1
0
null
2016-06-20T22:03:09
2016-03-31T22:05:10
C++
WINDOWS-1250
C++
false
false
3,804
cpp
#include "MemoryFile.h" MemoryFile::MemoryFile() : mFileData(nullptr) , mFileLength(0) , mIndexRead(0) , mIndexWrite(0) { } MemoryFile::MemoryFile(const char * fileData, int fileLength) : mFileData(nullptr) , mFileLength(fileLength) , mIndexRead(0) , mIndexWrite(0) { setFile(fileData, fileLength); } #if defined (_MSC_VER) MemoryFile::MemoryFile(std::string fileName) : mFileData(nullptr) , mFileLength(0) , mIndexRead(0) , mIndexWrite(0) { std::fstream fp; fp.open(fileName, std::ios_base::in | std::ios_base::binary); if (!fp.is_open()) { mError = FILE_NOT_FOUND; return; } /*if ((fp = fopen(f.c_str(), "rb")) == NULL) return 0;*/ fp.seekg(0, std::ios_base::end); //fseek(fp, 0, SEEK_END); this->mFileLength = fp.tellg(); //flen = ftell(fp); //file lenght //fileData = new char[flen]; fp.seekg(0, std::ios_base::beg); mFileData = new char[mFileLength]; fp.read(mFileData, mFileLength); //fseek(fp, 0, SEEK_SET); //fread(fileData, 1, flen, fp); //memoryFile.setFile(fileData, flen); mError = E_OK; fp.close(); } #endif // defined (_MSC_VER) MemoryFile::~MemoryFile() { close(); } void MemoryFile::close() { if (mFileData != nullptr) { delete[] mFileData; mFileData = nullptr; } mFileLength = 0; mIndexRead = 0; mIndexWrite = 0; } bool MemoryFile::setFile(const char *fileData, int fileLength) { if (fileData == nullptr || fileLength < 0) return false; close(); mFileData = new char[fileLength]; if (mFileData == nullptr) return false; for (size_t i = 0; i < fileLength; ++i) { mFileData[i] = fileData[i]; } mFileLength = fileLength; mIndexRead = 0; mIndexWrite = 0; } size_t MemoryFile::getLenght() const { return mFileLength; } char * MemoryFile::gets(char * str, int size) { size_t i; if (mFileData == nullptr || str == nullptr || size <= 0 || mIndexRead >= mFileLength) return nullptr; for (i = 0; i < size - 1 && mFileData[mIndexRead] != '\n'; ++i) { str[i] = mFileData[mIndexRead++]; if (mIndexRead >= mFileLength) break; } str[i] = '\0'; return str; } int MemoryFile::getc() { if (mIndexRead >= mFileLength) return EOF; return mFileData[mIndexRead++]; } int MemoryFile::getInt(bool binaryMode) { if (mFileData == nullptr) { mError = NO_DATA_FILE_IN_MEMORY; return 0; } size_t i = 0; int val = 0; if (binaryMode) { size_t intSize = sizeof(int); if (mFileLength - mIndexRead > intSize) { for (i = 0; i < intSize; ++i) { ((char*)&val)[i] = this->getc(); } } // mIndexRead += intSize; - line commented because MemoryFile::getc() control mIndexRead } else { const size_t strLen = 32; char strNumber[strLen]; for (i = 0; i < strLen - 1 && (mFileData[mIndexRead] != '\n' && mFileData[mIndexRead] != '\0' && mFileData[mIndexRead] != ' '); ++i) { strNumber[i] = mFileData[mIndexRead++]; if (mIndexRead >= mFileLength) break; } strNumber[i] = '\0'; val = std::atoi(strNumber); } mError = E_OK; return val; } int MemoryFile::seek(long int offset, int origin) { if (origin < 0 || origin >= SEEK_COUNT) return EOF; if (origin == SEEK_SET && offset >= 0 && offset <= mFileLength) mIndexRead = offset; else if (origin == SEEK_CUR && mIndexRead + offset >= 0 && mFileLength > mIndexRead + offset) mIndexRead += offset; else if (origin == SEEK_END && mFileLength - offset >= 0 && offset <= 0) mIndexRead = mFileLength + offset; else return EOF; return 0; } size_t MemoryFile::tellg() const { /*if (mFileData == nullptr) // chyba potrzebne wyjatki do obsłogi tych bledow .... mError = NO_DATA_FILE_IN_MEMORY;*/ return mIndexRead; } size_t MemoryFile::tellp() const { return mIndexWrite; } size_t MemoryFile::getFileLength() const { return mFileLength; } const char * MemoryFile::getDataPointer() const { return mFileData; }
[ "damiandajer@gmail.com" ]
damiandajer@gmail.com
fa60772fe1078682a6d364f8806c94805096c37d
2bc222c4afd9db25917d5469db0ff5da0a076797
/src/istream/istream_null.hxx
6756189c4bc4745d360f49985f1ec93513523128
[]
permissive
CM4all/beng-proxy
27fd1a1908810cb10584d8ead388fbdf21f15ba9
4b870c9f81d5719fd5b0007c2094c1d5dd94a9c4
refs/heads/master
2023-08-31T18:43:31.463121
2023-08-30T14:03:31
2023-08-30T14:03:31
96,917,990
43
12
BSD-2-Clause
2023-09-11T10:00:43
2017-07-11T17:13:52
C++
UTF-8
C++
false
false
271
hxx
// SPDX-License-Identifier: BSD-2-Clause // Copyright CM4all GmbH // author: Max Kellermann <mk@cm4all.com> #pragma once struct pool; class UnusedIstreamPtr; /** * #Istream implementation which reads nothing. */ UnusedIstreamPtr istream_null_new(struct pool &pool);
[ "mk@cm4all.com" ]
mk@cm4all.com
bdfe31dba45fd1feead3176fafa1650366828537
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_5/MP+dmb.sy+ctrl-rfi-ctrl-addr-ctrlisb.c.cbmc_out.cpp
2a66e9e71679971a4f93e9c570d689ee4a8ad4d3
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
57,505
cpp
// Global variabls: // 0:vars:5 // 7:atom_1_X10_0:1 // 5:atom_1_X0_1:1 // 6:atom_1_X4_1:1 // Local global variabls: // 0:thr0:1 // 1:thr1:1 #define ADDRSIZE 8 #define LOCALADDRSIZE 2 #define NTHREAD 3 #define NCONTEXT 5 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert(stmt, "error") #define max(a,b) (a>b?a:b) char __get_rng(); char get_rng( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } char get_rng_th( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } int main(int argc, char **argv) { // Declare arrays for intial value version in contexts int local_mem[LOCALADDRSIZE]; // Dumping initializations local_mem[0+0] = 0; local_mem[1+0] = 0; int cstart[NTHREAD]; int creturn[NTHREAD]; // declare arrays for contexts activity int active[NCONTEXT]; int ctx_used[NCONTEXT]; // declare arrays for intial value version in contexts int meminit_[ADDRSIZE*NCONTEXT]; #define meminit(x,k) meminit_[(x)*NCONTEXT+k] int coinit_[ADDRSIZE*NCONTEXT]; #define coinit(x,k) coinit_[(x)*NCONTEXT+k] int deltainit_[ADDRSIZE*NCONTEXT]; #define deltainit(x,k) deltainit_[(x)*NCONTEXT+k] // declare arrays for running value version in contexts int mem_[ADDRSIZE*NCONTEXT]; #define mem(x,k) mem_[(x)*NCONTEXT+k] int co_[ADDRSIZE*NCONTEXT]; #define co(x,k) co_[(x)*NCONTEXT+k] int delta_[ADDRSIZE*NCONTEXT]; #define delta(x,k) delta_[(x)*NCONTEXT+k] // declare arrays for local buffer and observed writes int buff_[NTHREAD*ADDRSIZE]; #define buff(x,k) buff_[(x)*ADDRSIZE+k] int pw_[NTHREAD*ADDRSIZE]; #define pw(x,k) pw_[(x)*ADDRSIZE+k] // declare arrays for context stamps char cr_[NTHREAD*ADDRSIZE]; #define cr(x,k) cr_[(x)*ADDRSIZE+k] char iw_[NTHREAD*ADDRSIZE]; #define iw(x,k) iw_[(x)*ADDRSIZE+k] char cw_[NTHREAD*ADDRSIZE]; #define cw(x,k) cw_[(x)*ADDRSIZE+k] char cx_[NTHREAD*ADDRSIZE]; #define cx(x,k) cx_[(x)*ADDRSIZE+k] char is_[NTHREAD*ADDRSIZE]; #define is(x,k) is_[(x)*ADDRSIZE+k] char cs_[NTHREAD*ADDRSIZE]; #define cs(x,k) cs_[(x)*ADDRSIZE+k] char crmax_[NTHREAD*ADDRSIZE]; #define crmax(x,k) crmax_[(x)*ADDRSIZE+k] char sforbid_[ADDRSIZE*NCONTEXT]; #define sforbid(x,k) sforbid_[(x)*NCONTEXT+k] // declare arrays for synchronizations int cl[NTHREAD]; int cdy[NTHREAD]; int cds[NTHREAD]; int cdl[NTHREAD]; int cisb[NTHREAD]; int caddr[NTHREAD]; int cctrl[NTHREAD]; int r0= 0; char creg_r0; char creg__r0__0_; int r1= 0; char creg_r1; char creg__r1__0_; int r2= 0; char creg_r2; int r3= 0; char creg_r3; int r4= 0; char creg_r4; int r5= 0; char creg_r5; int r6= 0; char creg_r6; char creg__r6__0_; int r7= 0; char creg_r7; char creg__r0__1_; char creg__r1__1_; char creg__r7__0_; int r8= 0; char creg_r8; int r9= 0; char creg_r9; int r10= 0; char creg_r10; int r11= 0; char creg_r11; char creg__r11__1_; int r12= 0; char creg_r12; char creg__r12__1_; int r13= 0; char creg_r13; char creg__r13__1_; int r14= 0; char creg_r14; int r15= 0; char creg_r15; int r16= 0; char creg_r16; int r17= 0; char creg_r17; int r18= 0; char creg_r18; int r19= 0; char creg_r19; int r20= 0; char creg_r20; int r21= 0; char creg_r21; char creg__r21__1_; int r22= 0; char creg_r22; char old_cctrl= 0; char old_cr= 0; char old_cdy= 0; char old_cw= 0; char new_creg= 0; buff(0,0) = 0; pw(0,0) = 0; cr(0,0) = 0; iw(0,0) = 0; cw(0,0) = 0; cx(0,0) = 0; is(0,0) = 0; cs(0,0) = 0; crmax(0,0) = 0; buff(0,1) = 0; pw(0,1) = 0; cr(0,1) = 0; iw(0,1) = 0; cw(0,1) = 0; cx(0,1) = 0; is(0,1) = 0; cs(0,1) = 0; crmax(0,1) = 0; buff(0,2) = 0; pw(0,2) = 0; cr(0,2) = 0; iw(0,2) = 0; cw(0,2) = 0; cx(0,2) = 0; is(0,2) = 0; cs(0,2) = 0; crmax(0,2) = 0; buff(0,3) = 0; pw(0,3) = 0; cr(0,3) = 0; iw(0,3) = 0; cw(0,3) = 0; cx(0,3) = 0; is(0,3) = 0; cs(0,3) = 0; crmax(0,3) = 0; buff(0,4) = 0; pw(0,4) = 0; cr(0,4) = 0; iw(0,4) = 0; cw(0,4) = 0; cx(0,4) = 0; is(0,4) = 0; cs(0,4) = 0; crmax(0,4) = 0; buff(0,5) = 0; pw(0,5) = 0; cr(0,5) = 0; iw(0,5) = 0; cw(0,5) = 0; cx(0,5) = 0; is(0,5) = 0; cs(0,5) = 0; crmax(0,5) = 0; buff(0,6) = 0; pw(0,6) = 0; cr(0,6) = 0; iw(0,6) = 0; cw(0,6) = 0; cx(0,6) = 0; is(0,6) = 0; cs(0,6) = 0; crmax(0,6) = 0; buff(0,7) = 0; pw(0,7) = 0; cr(0,7) = 0; iw(0,7) = 0; cw(0,7) = 0; cx(0,7) = 0; is(0,7) = 0; cs(0,7) = 0; crmax(0,7) = 0; cl[0] = 0; cdy[0] = 0; cds[0] = 0; cdl[0] = 0; cisb[0] = 0; caddr[0] = 0; cctrl[0] = 0; cstart[0] = get_rng(0,NCONTEXT-1); creturn[0] = get_rng(0,NCONTEXT-1); buff(1,0) = 0; pw(1,0) = 0; cr(1,0) = 0; iw(1,0) = 0; cw(1,0) = 0; cx(1,0) = 0; is(1,0) = 0; cs(1,0) = 0; crmax(1,0) = 0; buff(1,1) = 0; pw(1,1) = 0; cr(1,1) = 0; iw(1,1) = 0; cw(1,1) = 0; cx(1,1) = 0; is(1,1) = 0; cs(1,1) = 0; crmax(1,1) = 0; buff(1,2) = 0; pw(1,2) = 0; cr(1,2) = 0; iw(1,2) = 0; cw(1,2) = 0; cx(1,2) = 0; is(1,2) = 0; cs(1,2) = 0; crmax(1,2) = 0; buff(1,3) = 0; pw(1,3) = 0; cr(1,3) = 0; iw(1,3) = 0; cw(1,3) = 0; cx(1,3) = 0; is(1,3) = 0; cs(1,3) = 0; crmax(1,3) = 0; buff(1,4) = 0; pw(1,4) = 0; cr(1,4) = 0; iw(1,4) = 0; cw(1,4) = 0; cx(1,4) = 0; is(1,4) = 0; cs(1,4) = 0; crmax(1,4) = 0; buff(1,5) = 0; pw(1,5) = 0; cr(1,5) = 0; iw(1,5) = 0; cw(1,5) = 0; cx(1,5) = 0; is(1,5) = 0; cs(1,5) = 0; crmax(1,5) = 0; buff(1,6) = 0; pw(1,6) = 0; cr(1,6) = 0; iw(1,6) = 0; cw(1,6) = 0; cx(1,6) = 0; is(1,6) = 0; cs(1,6) = 0; crmax(1,6) = 0; buff(1,7) = 0; pw(1,7) = 0; cr(1,7) = 0; iw(1,7) = 0; cw(1,7) = 0; cx(1,7) = 0; is(1,7) = 0; cs(1,7) = 0; crmax(1,7) = 0; cl[1] = 0; cdy[1] = 0; cds[1] = 0; cdl[1] = 0; cisb[1] = 0; caddr[1] = 0; cctrl[1] = 0; cstart[1] = get_rng(0,NCONTEXT-1); creturn[1] = get_rng(0,NCONTEXT-1); buff(2,0) = 0; pw(2,0) = 0; cr(2,0) = 0; iw(2,0) = 0; cw(2,0) = 0; cx(2,0) = 0; is(2,0) = 0; cs(2,0) = 0; crmax(2,0) = 0; buff(2,1) = 0; pw(2,1) = 0; cr(2,1) = 0; iw(2,1) = 0; cw(2,1) = 0; cx(2,1) = 0; is(2,1) = 0; cs(2,1) = 0; crmax(2,1) = 0; buff(2,2) = 0; pw(2,2) = 0; cr(2,2) = 0; iw(2,2) = 0; cw(2,2) = 0; cx(2,2) = 0; is(2,2) = 0; cs(2,2) = 0; crmax(2,2) = 0; buff(2,3) = 0; pw(2,3) = 0; cr(2,3) = 0; iw(2,3) = 0; cw(2,3) = 0; cx(2,3) = 0; is(2,3) = 0; cs(2,3) = 0; crmax(2,3) = 0; buff(2,4) = 0; pw(2,4) = 0; cr(2,4) = 0; iw(2,4) = 0; cw(2,4) = 0; cx(2,4) = 0; is(2,4) = 0; cs(2,4) = 0; crmax(2,4) = 0; buff(2,5) = 0; pw(2,5) = 0; cr(2,5) = 0; iw(2,5) = 0; cw(2,5) = 0; cx(2,5) = 0; is(2,5) = 0; cs(2,5) = 0; crmax(2,5) = 0; buff(2,6) = 0; pw(2,6) = 0; cr(2,6) = 0; iw(2,6) = 0; cw(2,6) = 0; cx(2,6) = 0; is(2,6) = 0; cs(2,6) = 0; crmax(2,6) = 0; buff(2,7) = 0; pw(2,7) = 0; cr(2,7) = 0; iw(2,7) = 0; cw(2,7) = 0; cx(2,7) = 0; is(2,7) = 0; cs(2,7) = 0; crmax(2,7) = 0; cl[2] = 0; cdy[2] = 0; cds[2] = 0; cdl[2] = 0; cisb[2] = 0; caddr[2] = 0; cctrl[2] = 0; cstart[2] = get_rng(0,NCONTEXT-1); creturn[2] = get_rng(0,NCONTEXT-1); // Dumping initializations mem(0+0,0) = 0; mem(0+1,0) = 0; mem(0+2,0) = 0; mem(0+3,0) = 0; mem(0+4,0) = 0; mem(7+0,0) = 0; mem(5+0,0) = 0; mem(6+0,0) = 0; // Dumping context matching equalities co(0,0) = 0; delta(0,0) = -1; mem(0,1) = meminit(0,1); co(0,1) = coinit(0,1); delta(0,1) = deltainit(0,1); mem(0,2) = meminit(0,2); co(0,2) = coinit(0,2); delta(0,2) = deltainit(0,2); mem(0,3) = meminit(0,3); co(0,3) = coinit(0,3); delta(0,3) = deltainit(0,3); mem(0,4) = meminit(0,4); co(0,4) = coinit(0,4); delta(0,4) = deltainit(0,4); co(1,0) = 0; delta(1,0) = -1; mem(1,1) = meminit(1,1); co(1,1) = coinit(1,1); delta(1,1) = deltainit(1,1); mem(1,2) = meminit(1,2); co(1,2) = coinit(1,2); delta(1,2) = deltainit(1,2); mem(1,3) = meminit(1,3); co(1,3) = coinit(1,3); delta(1,3) = deltainit(1,3); mem(1,4) = meminit(1,4); co(1,4) = coinit(1,4); delta(1,4) = deltainit(1,4); co(2,0) = 0; delta(2,0) = -1; mem(2,1) = meminit(2,1); co(2,1) = coinit(2,1); delta(2,1) = deltainit(2,1); mem(2,2) = meminit(2,2); co(2,2) = coinit(2,2); delta(2,2) = deltainit(2,2); mem(2,3) = meminit(2,3); co(2,3) = coinit(2,3); delta(2,3) = deltainit(2,3); mem(2,4) = meminit(2,4); co(2,4) = coinit(2,4); delta(2,4) = deltainit(2,4); co(3,0) = 0; delta(3,0) = -1; mem(3,1) = meminit(3,1); co(3,1) = coinit(3,1); delta(3,1) = deltainit(3,1); mem(3,2) = meminit(3,2); co(3,2) = coinit(3,2); delta(3,2) = deltainit(3,2); mem(3,3) = meminit(3,3); co(3,3) = coinit(3,3); delta(3,3) = deltainit(3,3); mem(3,4) = meminit(3,4); co(3,4) = coinit(3,4); delta(3,4) = deltainit(3,4); co(4,0) = 0; delta(4,0) = -1; mem(4,1) = meminit(4,1); co(4,1) = coinit(4,1); delta(4,1) = deltainit(4,1); mem(4,2) = meminit(4,2); co(4,2) = coinit(4,2); delta(4,2) = deltainit(4,2); mem(4,3) = meminit(4,3); co(4,3) = coinit(4,3); delta(4,3) = deltainit(4,3); mem(4,4) = meminit(4,4); co(4,4) = coinit(4,4); delta(4,4) = deltainit(4,4); co(5,0) = 0; delta(5,0) = -1; mem(5,1) = meminit(5,1); co(5,1) = coinit(5,1); delta(5,1) = deltainit(5,1); mem(5,2) = meminit(5,2); co(5,2) = coinit(5,2); delta(5,2) = deltainit(5,2); mem(5,3) = meminit(5,3); co(5,3) = coinit(5,3); delta(5,3) = deltainit(5,3); mem(5,4) = meminit(5,4); co(5,4) = coinit(5,4); delta(5,4) = deltainit(5,4); co(6,0) = 0; delta(6,0) = -1; mem(6,1) = meminit(6,1); co(6,1) = coinit(6,1); delta(6,1) = deltainit(6,1); mem(6,2) = meminit(6,2); co(6,2) = coinit(6,2); delta(6,2) = deltainit(6,2); mem(6,3) = meminit(6,3); co(6,3) = coinit(6,3); delta(6,3) = deltainit(6,3); mem(6,4) = meminit(6,4); co(6,4) = coinit(6,4); delta(6,4) = deltainit(6,4); co(7,0) = 0; delta(7,0) = -1; mem(7,1) = meminit(7,1); co(7,1) = coinit(7,1); delta(7,1) = deltainit(7,1); mem(7,2) = meminit(7,2); co(7,2) = coinit(7,2); delta(7,2) = deltainit(7,2); mem(7,3) = meminit(7,3); co(7,3) = coinit(7,3); delta(7,3) = deltainit(7,3); mem(7,4) = meminit(7,4); co(7,4) = coinit(7,4); delta(7,4) = deltainit(7,4); // Dumping thread 1 int ret_thread_1 = 0; cdy[1] = get_rng(0,NCONTEXT-1); ASSUME(cdy[1] >= cstart[1]); T1BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !38, metadata !DIExpression()), !dbg !47 // br label %label_1, !dbg !48 goto T1BLOCK1; T1BLOCK1: // call void @llvm.dbg.label(metadata !46), !dbg !49 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0), metadata !39, metadata !DIExpression()), !dbg !50 // call void @llvm.dbg.value(metadata i64 1, metadata !42, metadata !DIExpression()), !dbg !50 // store atomic i64 1, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !51 // ST: Guess iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l21_c3 old_cw = cw(1,0); cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l21_c3 // Check ASSUME(active[iw(1,0)] == 1); ASSUME(active[cw(1,0)] == 1); ASSUME(sforbid(0,cw(1,0))== 0); ASSUME(iw(1,0) >= 0); ASSUME(iw(1,0) >= 0); ASSUME(cw(1,0) >= iw(1,0)); ASSUME(cw(1,0) >= old_cw); ASSUME(cw(1,0) >= cr(1,0)); ASSUME(cw(1,0) >= cl[1]); ASSUME(cw(1,0) >= cisb[1]); ASSUME(cw(1,0) >= cdy[1]); ASSUME(cw(1,0) >= cdl[1]); ASSUME(cw(1,0) >= cds[1]); ASSUME(cw(1,0) >= cctrl[1]); ASSUME(cw(1,0) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0) = 1; mem(0,cw(1,0)) = 1; co(0,cw(1,0))+=1; delta(0,cw(1,0)) = -1; ASSUME(creturn[1] >= cw(1,0)); // call void (...) @dmbsy(), !dbg !52 // dumbsy: Guess old_cdy = cdy[1]; cdy[1] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[1] >= old_cdy); ASSUME(cdy[1] >= cisb[1]); ASSUME(cdy[1] >= cdl[1]); ASSUME(cdy[1] >= cds[1]); ASSUME(cdy[1] >= cctrl[1]); ASSUME(cdy[1] >= cw(1,0+0)); ASSUME(cdy[1] >= cw(1,0+1)); ASSUME(cdy[1] >= cw(1,0+2)); ASSUME(cdy[1] >= cw(1,0+3)); ASSUME(cdy[1] >= cw(1,0+4)); ASSUME(cdy[1] >= cw(1,7+0)); ASSUME(cdy[1] >= cw(1,5+0)); ASSUME(cdy[1] >= cw(1,6+0)); ASSUME(cdy[1] >= cr(1,0+0)); ASSUME(cdy[1] >= cr(1,0+1)); ASSUME(cdy[1] >= cr(1,0+2)); ASSUME(cdy[1] >= cr(1,0+3)); ASSUME(cdy[1] >= cr(1,0+4)); ASSUME(cdy[1] >= cr(1,7+0)); ASSUME(cdy[1] >= cr(1,5+0)); ASSUME(cdy[1] >= cr(1,6+0)); ASSUME(creturn[1] >= cdy[1]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1), metadata !43, metadata !DIExpression()), !dbg !53 // call void @llvm.dbg.value(metadata i64 1, metadata !45, metadata !DIExpression()), !dbg !53 // store atomic i64 1, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !54 // ST: Guess iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l23_c3 old_cw = cw(1,0+1*1); cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l23_c3 // Check ASSUME(active[iw(1,0+1*1)] == 1); ASSUME(active[cw(1,0+1*1)] == 1); ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(cw(1,0+1*1) >= iw(1,0+1*1)); ASSUME(cw(1,0+1*1) >= old_cw); ASSUME(cw(1,0+1*1) >= cr(1,0+1*1)); ASSUME(cw(1,0+1*1) >= cl[1]); ASSUME(cw(1,0+1*1) >= cisb[1]); ASSUME(cw(1,0+1*1) >= cdy[1]); ASSUME(cw(1,0+1*1) >= cdl[1]); ASSUME(cw(1,0+1*1) >= cds[1]); ASSUME(cw(1,0+1*1) >= cctrl[1]); ASSUME(cw(1,0+1*1) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0+1*1) = 1; mem(0+1*1,cw(1,0+1*1)) = 1; co(0+1*1,cw(1,0+1*1))+=1; delta(0+1*1,cw(1,0+1*1)) = -1; ASSUME(creturn[1] >= cw(1,0+1*1)); // ret i8* null, !dbg !55 ret_thread_1 = (- 1); goto T1BLOCK_END; T1BLOCK_END: // Dumping thread 2 int ret_thread_2 = 0; cdy[2] = get_rng(0,NCONTEXT-1); ASSUME(cdy[2] >= cstart[2]); T2BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !58, metadata !DIExpression()), !dbg !90 // br label %label_2, !dbg !72 goto T2BLOCK1; T2BLOCK1: // call void @llvm.dbg.label(metadata !86), !dbg !92 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1), metadata !60, metadata !DIExpression()), !dbg !93 // %0 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !75 // LD: Guess old_cr = cr(2,0+1*1); cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l29_c15 // Check ASSUME(active[cr(2,0+1*1)] == 2); ASSUME(cr(2,0+1*1) >= iw(2,0+1*1)); ASSUME(cr(2,0+1*1) >= 0); ASSUME(cr(2,0+1*1) >= cdy[2]); ASSUME(cr(2,0+1*1) >= cisb[2]); ASSUME(cr(2,0+1*1) >= cdl[2]); ASSUME(cr(2,0+1*1) >= cl[2]); // Update creg_r0 = cr(2,0+1*1); crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1)); caddr[2] = max(caddr[2],0); if(cr(2,0+1*1) < cw(2,0+1*1)) { r0 = buff(2,0+1*1); ASSUME((!(( (cw(2,0+1*1) < 1) && (1 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,1)> 0)); ASSUME((!(( (cw(2,0+1*1) < 2) && (2 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,2)> 0)); ASSUME((!(( (cw(2,0+1*1) < 3) && (3 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,3)> 0)); ASSUME((!(( (cw(2,0+1*1) < 4) && (4 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,4)> 0)); } else { if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) { ASSUME(cr(2,0+1*1) >= old_cr); } pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1)); r0 = mem(0+1*1,cr(2,0+1*1)); } ASSUME(creturn[2] >= cr(2,0+1*1)); // call void @llvm.dbg.value(metadata i64 %0, metadata !62, metadata !DIExpression()), !dbg !93 // %conv = trunc i64 %0 to i32, !dbg !76 // call void @llvm.dbg.value(metadata i32 %conv, metadata !59, metadata !DIExpression()), !dbg !90 // %tobool = icmp ne i32 %conv, 0, !dbg !77 creg__r0__0_ = max(0,creg_r0); // br i1 %tobool, label %if.then, label %if.else, !dbg !79 old_cctrl = cctrl[2]; cctrl[2] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[2] >= old_cctrl); ASSUME(cctrl[2] >= creg__r0__0_); if((r0!=0)) { goto T2BLOCK2; } else { goto T2BLOCK3; } T2BLOCK2: // br label %lbl_LC00, !dbg !80 goto T2BLOCK4; T2BLOCK3: // br label %lbl_LC00, !dbg !81 goto T2BLOCK4; T2BLOCK4: // call void @llvm.dbg.label(metadata !87), !dbg !101 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2), metadata !63, metadata !DIExpression()), !dbg !102 // call void @llvm.dbg.value(metadata i64 1, metadata !65, metadata !DIExpression()), !dbg !102 // store atomic i64 1, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !84 // ST: Guess iw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l32_c3 old_cw = cw(2,0+2*1); cw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l32_c3 // Check ASSUME(active[iw(2,0+2*1)] == 2); ASSUME(active[cw(2,0+2*1)] == 2); ASSUME(sforbid(0+2*1,cw(2,0+2*1))== 0); ASSUME(iw(2,0+2*1) >= 0); ASSUME(iw(2,0+2*1) >= 0); ASSUME(cw(2,0+2*1) >= iw(2,0+2*1)); ASSUME(cw(2,0+2*1) >= old_cw); ASSUME(cw(2,0+2*1) >= cr(2,0+2*1)); ASSUME(cw(2,0+2*1) >= cl[2]); ASSUME(cw(2,0+2*1) >= cisb[2]); ASSUME(cw(2,0+2*1) >= cdy[2]); ASSUME(cw(2,0+2*1) >= cdl[2]); ASSUME(cw(2,0+2*1) >= cds[2]); ASSUME(cw(2,0+2*1) >= cctrl[2]); ASSUME(cw(2,0+2*1) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,0+2*1) = 1; mem(0+2*1,cw(2,0+2*1)) = 1; co(0+2*1,cw(2,0+2*1))+=1; delta(0+2*1,cw(2,0+2*1)) = -1; ASSUME(creturn[2] >= cw(2,0+2*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2), metadata !67, metadata !DIExpression()), !dbg !104 // %1 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !86 // LD: Guess old_cr = cr(2,0+2*1); cr(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l33_c15 // Check ASSUME(active[cr(2,0+2*1)] == 2); ASSUME(cr(2,0+2*1) >= iw(2,0+2*1)); ASSUME(cr(2,0+2*1) >= 0); ASSUME(cr(2,0+2*1) >= cdy[2]); ASSUME(cr(2,0+2*1) >= cisb[2]); ASSUME(cr(2,0+2*1) >= cdl[2]); ASSUME(cr(2,0+2*1) >= cl[2]); // Update creg_r1 = cr(2,0+2*1); crmax(2,0+2*1) = max(crmax(2,0+2*1),cr(2,0+2*1)); caddr[2] = max(caddr[2],0); if(cr(2,0+2*1) < cw(2,0+2*1)) { r1 = buff(2,0+2*1); ASSUME((!(( (cw(2,0+2*1) < 1) && (1 < crmax(2,0+2*1)) )))||(sforbid(0+2*1,1)> 0)); ASSUME((!(( (cw(2,0+2*1) < 2) && (2 < crmax(2,0+2*1)) )))||(sforbid(0+2*1,2)> 0)); ASSUME((!(( (cw(2,0+2*1) < 3) && (3 < crmax(2,0+2*1)) )))||(sforbid(0+2*1,3)> 0)); ASSUME((!(( (cw(2,0+2*1) < 4) && (4 < crmax(2,0+2*1)) )))||(sforbid(0+2*1,4)> 0)); } else { if(pw(2,0+2*1) != co(0+2*1,cr(2,0+2*1))) { ASSUME(cr(2,0+2*1) >= old_cr); } pw(2,0+2*1) = co(0+2*1,cr(2,0+2*1)); r1 = mem(0+2*1,cr(2,0+2*1)); } ASSUME(creturn[2] >= cr(2,0+2*1)); // call void @llvm.dbg.value(metadata i64 %1, metadata !69, metadata !DIExpression()), !dbg !104 // %conv4 = trunc i64 %1 to i32, !dbg !87 // call void @llvm.dbg.value(metadata i32 %conv4, metadata !66, metadata !DIExpression()), !dbg !90 // %tobool5 = icmp ne i32 %conv4, 0, !dbg !88 creg__r1__0_ = max(0,creg_r1); // br i1 %tobool5, label %if.then6, label %if.else7, !dbg !90 old_cctrl = cctrl[2]; cctrl[2] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[2] >= old_cctrl); ASSUME(cctrl[2] >= creg__r1__0_); if((r1!=0)) { goto T2BLOCK5; } else { goto T2BLOCK6; } T2BLOCK5: // br label %lbl_LC01, !dbg !91 goto T2BLOCK7; T2BLOCK6: // br label %lbl_LC01, !dbg !92 goto T2BLOCK7; T2BLOCK7: // call void @llvm.dbg.label(metadata !88), !dbg !112 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 3), metadata !71, metadata !DIExpression()), !dbg !113 // %2 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 3) monotonic, align 8, !dbg !95 // LD: Guess old_cr = cr(2,0+3*1); cr(2,0+3*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l36_c15 // Check ASSUME(active[cr(2,0+3*1)] == 2); ASSUME(cr(2,0+3*1) >= iw(2,0+3*1)); ASSUME(cr(2,0+3*1) >= 0); ASSUME(cr(2,0+3*1) >= cdy[2]); ASSUME(cr(2,0+3*1) >= cisb[2]); ASSUME(cr(2,0+3*1) >= cdl[2]); ASSUME(cr(2,0+3*1) >= cl[2]); // Update creg_r2 = cr(2,0+3*1); crmax(2,0+3*1) = max(crmax(2,0+3*1),cr(2,0+3*1)); caddr[2] = max(caddr[2],0); if(cr(2,0+3*1) < cw(2,0+3*1)) { r2 = buff(2,0+3*1); ASSUME((!(( (cw(2,0+3*1) < 1) && (1 < crmax(2,0+3*1)) )))||(sforbid(0+3*1,1)> 0)); ASSUME((!(( (cw(2,0+3*1) < 2) && (2 < crmax(2,0+3*1)) )))||(sforbid(0+3*1,2)> 0)); ASSUME((!(( (cw(2,0+3*1) < 3) && (3 < crmax(2,0+3*1)) )))||(sforbid(0+3*1,3)> 0)); ASSUME((!(( (cw(2,0+3*1) < 4) && (4 < crmax(2,0+3*1)) )))||(sforbid(0+3*1,4)> 0)); } else { if(pw(2,0+3*1) != co(0+3*1,cr(2,0+3*1))) { ASSUME(cr(2,0+3*1) >= old_cr); } pw(2,0+3*1) = co(0+3*1,cr(2,0+3*1)); r2 = mem(0+3*1,cr(2,0+3*1)); } ASSUME(creturn[2] >= cr(2,0+3*1)); // call void @llvm.dbg.value(metadata i64 %2, metadata !73, metadata !DIExpression()), !dbg !113 // %conv11 = trunc i64 %2 to i32, !dbg !96 // call void @llvm.dbg.value(metadata i32 %conv11, metadata !70, metadata !DIExpression()), !dbg !90 // %xor = xor i32 %conv11, %conv11, !dbg !97 creg_r3 = creg_r2; r3 = r2 ^ r2; // call void @llvm.dbg.value(metadata i32 %xor, metadata !74, metadata !DIExpression()), !dbg !90 // %add = add nsw i32 4, %xor, !dbg !98 creg_r4 = max(0,creg_r3); r4 = 4 + r3; // %idxprom = sext i32 %add to i64, !dbg !98 // %arrayidx = getelementptr inbounds [5 x i64], [5 x i64]* @vars, i64 0, i64 %idxprom, !dbg !98 r5 = 0+r4*1; creg_r5 = creg_r4; // call void @llvm.dbg.value(metadata i64* %arrayidx, metadata !76, metadata !DIExpression()), !dbg !118 // %3 = load atomic i64, i64* %arrayidx monotonic, align 8, !dbg !98 // LD: Guess old_cr = cr(2,r5); cr(2,r5) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l38_c16 // Check ASSUME(active[cr(2,r5)] == 2); ASSUME(cr(2,r5) >= iw(2,r5)); ASSUME(cr(2,r5) >= creg_r5); ASSUME(cr(2,r5) >= cdy[2]); ASSUME(cr(2,r5) >= cisb[2]); ASSUME(cr(2,r5) >= cdl[2]); ASSUME(cr(2,r5) >= cl[2]); // Update creg_r6 = cr(2,r5); crmax(2,r5) = max(crmax(2,r5),cr(2,r5)); caddr[2] = max(caddr[2],creg_r5); if(cr(2,r5) < cw(2,r5)) { r6 = buff(2,r5); ASSUME((!(( (cw(2,r5) < 1) && (1 < crmax(2,r5)) )))||(sforbid(r5,1)> 0)); ASSUME((!(( (cw(2,r5) < 2) && (2 < crmax(2,r5)) )))||(sforbid(r5,2)> 0)); ASSUME((!(( (cw(2,r5) < 3) && (3 < crmax(2,r5)) )))||(sforbid(r5,3)> 0)); ASSUME((!(( (cw(2,r5) < 4) && (4 < crmax(2,r5)) )))||(sforbid(r5,4)> 0)); } else { if(pw(2,r5) != co(r5,cr(2,r5))) { ASSUME(cr(2,r5) >= old_cr); } pw(2,r5) = co(r5,cr(2,r5)); r6 = mem(r5,cr(2,r5)); } ASSUME(creturn[2] >= cr(2,r5)); // call void @llvm.dbg.value(metadata i64 %3, metadata !78, metadata !DIExpression()), !dbg !118 // %conv15 = trunc i64 %3 to i32, !dbg !100 // call void @llvm.dbg.value(metadata i32 %conv15, metadata !75, metadata !DIExpression()), !dbg !90 // %tobool16 = icmp ne i32 %conv15, 0, !dbg !101 creg__r6__0_ = max(0,creg_r6); // br i1 %tobool16, label %if.then17, label %if.else18, !dbg !103 old_cctrl = cctrl[2]; cctrl[2] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[2] >= old_cctrl); ASSUME(cctrl[2] >= creg__r6__0_); if((r6!=0)) { goto T2BLOCK8; } else { goto T2BLOCK9; } T2BLOCK8: // br label %lbl_LC02, !dbg !104 goto T2BLOCK10; T2BLOCK9: // br label %lbl_LC02, !dbg !105 goto T2BLOCK10; T2BLOCK10: // call void @llvm.dbg.label(metadata !89), !dbg !125 // call void (...) @isb(), !dbg !107 // isb: Guess cisb[2] = get_rng(0,NCONTEXT-1); // Check ASSUME(cisb[2] >= cdy[2]); ASSUME(cisb[2] >= cctrl[2]); ASSUME(cisb[2] >= caddr[2]); ASSUME(creturn[2] >= cisb[2]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0), metadata !80, metadata !DIExpression()), !dbg !127 // %4 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !109 // LD: Guess old_cr = cr(2,0); cr(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l42_c17 // Check ASSUME(active[cr(2,0)] == 2); ASSUME(cr(2,0) >= iw(2,0)); ASSUME(cr(2,0) >= 0); ASSUME(cr(2,0) >= cdy[2]); ASSUME(cr(2,0) >= cisb[2]); ASSUME(cr(2,0) >= cdl[2]); ASSUME(cr(2,0) >= cl[2]); // Update creg_r7 = cr(2,0); crmax(2,0) = max(crmax(2,0),cr(2,0)); caddr[2] = max(caddr[2],0); if(cr(2,0) < cw(2,0)) { r7 = buff(2,0); ASSUME((!(( (cw(2,0) < 1) && (1 < crmax(2,0)) )))||(sforbid(0,1)> 0)); ASSUME((!(( (cw(2,0) < 2) && (2 < crmax(2,0)) )))||(sforbid(0,2)> 0)); ASSUME((!(( (cw(2,0) < 3) && (3 < crmax(2,0)) )))||(sforbid(0,3)> 0)); ASSUME((!(( (cw(2,0) < 4) && (4 < crmax(2,0)) )))||(sforbid(0,4)> 0)); } else { if(pw(2,0) != co(0,cr(2,0))) { ASSUME(cr(2,0) >= old_cr); } pw(2,0) = co(0,cr(2,0)); r7 = mem(0,cr(2,0)); } ASSUME(creturn[2] >= cr(2,0)); // call void @llvm.dbg.value(metadata i64 %4, metadata !82, metadata !DIExpression()), !dbg !127 // %conv22 = trunc i64 %4 to i32, !dbg !110 // call void @llvm.dbg.value(metadata i32 %conv22, metadata !79, metadata !DIExpression()), !dbg !90 // %cmp = icmp eq i32 %conv, 1, !dbg !111 creg__r0__1_ = max(0,creg_r0); // %conv23 = zext i1 %cmp to i32, !dbg !111 // call void @llvm.dbg.value(metadata i32 %conv23, metadata !83, metadata !DIExpression()), !dbg !90 // store i32 %conv23, i32* @atom_1_X0_1, align 4, !dbg !112, !tbaa !113 // ST: Guess iw(2,5) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l44_c15 old_cw = cw(2,5); cw(2,5) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l44_c15 // Check ASSUME(active[iw(2,5)] == 2); ASSUME(active[cw(2,5)] == 2); ASSUME(sforbid(5,cw(2,5))== 0); ASSUME(iw(2,5) >= creg__r0__1_); ASSUME(iw(2,5) >= 0); ASSUME(cw(2,5) >= iw(2,5)); ASSUME(cw(2,5) >= old_cw); ASSUME(cw(2,5) >= cr(2,5)); ASSUME(cw(2,5) >= cl[2]); ASSUME(cw(2,5) >= cisb[2]); ASSUME(cw(2,5) >= cdy[2]); ASSUME(cw(2,5) >= cdl[2]); ASSUME(cw(2,5) >= cds[2]); ASSUME(cw(2,5) >= cctrl[2]); ASSUME(cw(2,5) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,5) = (r0==1); mem(5,cw(2,5)) = (r0==1); co(5,cw(2,5))+=1; delta(5,cw(2,5)) = -1; ASSUME(creturn[2] >= cw(2,5)); // %cmp24 = icmp eq i32 %conv4, 1, !dbg !117 creg__r1__1_ = max(0,creg_r1); // %conv25 = zext i1 %cmp24 to i32, !dbg !117 // call void @llvm.dbg.value(metadata i32 %conv25, metadata !84, metadata !DIExpression()), !dbg !90 // store i32 %conv25, i32* @atom_1_X4_1, align 4, !dbg !118, !tbaa !113 // ST: Guess iw(2,6) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l46_c15 old_cw = cw(2,6); cw(2,6) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l46_c15 // Check ASSUME(active[iw(2,6)] == 2); ASSUME(active[cw(2,6)] == 2); ASSUME(sforbid(6,cw(2,6))== 0); ASSUME(iw(2,6) >= creg__r1__1_); ASSUME(iw(2,6) >= 0); ASSUME(cw(2,6) >= iw(2,6)); ASSUME(cw(2,6) >= old_cw); ASSUME(cw(2,6) >= cr(2,6)); ASSUME(cw(2,6) >= cl[2]); ASSUME(cw(2,6) >= cisb[2]); ASSUME(cw(2,6) >= cdy[2]); ASSUME(cw(2,6) >= cdl[2]); ASSUME(cw(2,6) >= cds[2]); ASSUME(cw(2,6) >= cctrl[2]); ASSUME(cw(2,6) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,6) = (r1==1); mem(6,cw(2,6)) = (r1==1); co(6,cw(2,6))+=1; delta(6,cw(2,6)) = -1; ASSUME(creturn[2] >= cw(2,6)); // %cmp26 = icmp eq i32 %conv22, 0, !dbg !119 creg__r7__0_ = max(0,creg_r7); // %conv27 = zext i1 %cmp26 to i32, !dbg !119 // call void @llvm.dbg.value(metadata i32 %conv27, metadata !85, metadata !DIExpression()), !dbg !90 // store i32 %conv27, i32* @atom_1_X10_0, align 4, !dbg !120, !tbaa !113 // ST: Guess iw(2,7) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l48_c16 old_cw = cw(2,7); cw(2,7) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l48_c16 // Check ASSUME(active[iw(2,7)] == 2); ASSUME(active[cw(2,7)] == 2); ASSUME(sforbid(7,cw(2,7))== 0); ASSUME(iw(2,7) >= creg__r7__0_); ASSUME(iw(2,7) >= 0); ASSUME(cw(2,7) >= iw(2,7)); ASSUME(cw(2,7) >= old_cw); ASSUME(cw(2,7) >= cr(2,7)); ASSUME(cw(2,7) >= cl[2]); ASSUME(cw(2,7) >= cisb[2]); ASSUME(cw(2,7) >= cdy[2]); ASSUME(cw(2,7) >= cdl[2]); ASSUME(cw(2,7) >= cds[2]); ASSUME(cw(2,7) >= cctrl[2]); ASSUME(cw(2,7) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,7) = (r7==0); mem(7,cw(2,7)) = (r7==0); co(7,cw(2,7))+=1; delta(7,cw(2,7)) = -1; ASSUME(creturn[2] >= cw(2,7)); // ret i8* null, !dbg !121 ret_thread_2 = (- 1); goto T2BLOCK_END; T2BLOCK_END: // Dumping thread 0 int ret_thread_0 = 0; cdy[0] = get_rng(0,NCONTEXT-1); ASSUME(cdy[0] >= cstart[0]); T0BLOCK0: // %thr0 = alloca i64, align 8 // %thr1 = alloca i64, align 8 // call void @llvm.dbg.value(metadata i32 %argc, metadata !148, metadata !DIExpression()), !dbg !193 // call void @llvm.dbg.value(metadata i8** %argv, metadata !149, metadata !DIExpression()), !dbg !193 // %0 = bitcast i64* %thr0 to i8*, !dbg !88 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #6, !dbg !88 // call void @llvm.dbg.declare(metadata i64* %thr0, metadata !150, metadata !DIExpression()), !dbg !195 // %1 = bitcast i64* %thr1 to i8*, !dbg !90 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #6, !dbg !90 // call void @llvm.dbg.declare(metadata i64* %thr1, metadata !154, metadata !DIExpression()), !dbg !197 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 4), metadata !155, metadata !DIExpression()), !dbg !198 // call void @llvm.dbg.value(metadata i64 0, metadata !157, metadata !DIExpression()), !dbg !198 // store atomic i64 0, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 4) monotonic, align 8, !dbg !93 // ST: Guess iw(0,0+4*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l56_c3 old_cw = cw(0,0+4*1); cw(0,0+4*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l56_c3 // Check ASSUME(active[iw(0,0+4*1)] == 0); ASSUME(active[cw(0,0+4*1)] == 0); ASSUME(sforbid(0+4*1,cw(0,0+4*1))== 0); ASSUME(iw(0,0+4*1) >= 0); ASSUME(iw(0,0+4*1) >= 0); ASSUME(cw(0,0+4*1) >= iw(0,0+4*1)); ASSUME(cw(0,0+4*1) >= old_cw); ASSUME(cw(0,0+4*1) >= cr(0,0+4*1)); ASSUME(cw(0,0+4*1) >= cl[0]); ASSUME(cw(0,0+4*1) >= cisb[0]); ASSUME(cw(0,0+4*1) >= cdy[0]); ASSUME(cw(0,0+4*1) >= cdl[0]); ASSUME(cw(0,0+4*1) >= cds[0]); ASSUME(cw(0,0+4*1) >= cctrl[0]); ASSUME(cw(0,0+4*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+4*1) = 0; mem(0+4*1,cw(0,0+4*1)) = 0; co(0+4*1,cw(0,0+4*1))+=1; delta(0+4*1,cw(0,0+4*1)) = -1; ASSUME(creturn[0] >= cw(0,0+4*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 3), metadata !158, metadata !DIExpression()), !dbg !200 // call void @llvm.dbg.value(metadata i64 0, metadata !160, metadata !DIExpression()), !dbg !200 // store atomic i64 0, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 3) monotonic, align 8, !dbg !95 // ST: Guess iw(0,0+3*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l57_c3 old_cw = cw(0,0+3*1); cw(0,0+3*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l57_c3 // Check ASSUME(active[iw(0,0+3*1)] == 0); ASSUME(active[cw(0,0+3*1)] == 0); ASSUME(sforbid(0+3*1,cw(0,0+3*1))== 0); ASSUME(iw(0,0+3*1) >= 0); ASSUME(iw(0,0+3*1) >= 0); ASSUME(cw(0,0+3*1) >= iw(0,0+3*1)); ASSUME(cw(0,0+3*1) >= old_cw); ASSUME(cw(0,0+3*1) >= cr(0,0+3*1)); ASSUME(cw(0,0+3*1) >= cl[0]); ASSUME(cw(0,0+3*1) >= cisb[0]); ASSUME(cw(0,0+3*1) >= cdy[0]); ASSUME(cw(0,0+3*1) >= cdl[0]); ASSUME(cw(0,0+3*1) >= cds[0]); ASSUME(cw(0,0+3*1) >= cctrl[0]); ASSUME(cw(0,0+3*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+3*1) = 0; mem(0+3*1,cw(0,0+3*1)) = 0; co(0+3*1,cw(0,0+3*1))+=1; delta(0+3*1,cw(0,0+3*1)) = -1; ASSUME(creturn[0] >= cw(0,0+3*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2), metadata !161, metadata !DIExpression()), !dbg !202 // call void @llvm.dbg.value(metadata i64 0, metadata !163, metadata !DIExpression()), !dbg !202 // store atomic i64 0, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !97 // ST: Guess iw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l58_c3 old_cw = cw(0,0+2*1); cw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l58_c3 // Check ASSUME(active[iw(0,0+2*1)] == 0); ASSUME(active[cw(0,0+2*1)] == 0); ASSUME(sforbid(0+2*1,cw(0,0+2*1))== 0); ASSUME(iw(0,0+2*1) >= 0); ASSUME(iw(0,0+2*1) >= 0); ASSUME(cw(0,0+2*1) >= iw(0,0+2*1)); ASSUME(cw(0,0+2*1) >= old_cw); ASSUME(cw(0,0+2*1) >= cr(0,0+2*1)); ASSUME(cw(0,0+2*1) >= cl[0]); ASSUME(cw(0,0+2*1) >= cisb[0]); ASSUME(cw(0,0+2*1) >= cdy[0]); ASSUME(cw(0,0+2*1) >= cdl[0]); ASSUME(cw(0,0+2*1) >= cds[0]); ASSUME(cw(0,0+2*1) >= cctrl[0]); ASSUME(cw(0,0+2*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+2*1) = 0; mem(0+2*1,cw(0,0+2*1)) = 0; co(0+2*1,cw(0,0+2*1))+=1; delta(0+2*1,cw(0,0+2*1)) = -1; ASSUME(creturn[0] >= cw(0,0+2*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1), metadata !164, metadata !DIExpression()), !dbg !204 // call void @llvm.dbg.value(metadata i64 0, metadata !166, metadata !DIExpression()), !dbg !204 // store atomic i64 0, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !99 // ST: Guess iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l59_c3 old_cw = cw(0,0+1*1); cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l59_c3 // Check ASSUME(active[iw(0,0+1*1)] == 0); ASSUME(active[cw(0,0+1*1)] == 0); ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(cw(0,0+1*1) >= iw(0,0+1*1)); ASSUME(cw(0,0+1*1) >= old_cw); ASSUME(cw(0,0+1*1) >= cr(0,0+1*1)); ASSUME(cw(0,0+1*1) >= cl[0]); ASSUME(cw(0,0+1*1) >= cisb[0]); ASSUME(cw(0,0+1*1) >= cdy[0]); ASSUME(cw(0,0+1*1) >= cdl[0]); ASSUME(cw(0,0+1*1) >= cds[0]); ASSUME(cw(0,0+1*1) >= cctrl[0]); ASSUME(cw(0,0+1*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+1*1) = 0; mem(0+1*1,cw(0,0+1*1)) = 0; co(0+1*1,cw(0,0+1*1))+=1; delta(0+1*1,cw(0,0+1*1)) = -1; ASSUME(creturn[0] >= cw(0,0+1*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0), metadata !167, metadata !DIExpression()), !dbg !206 // call void @llvm.dbg.value(metadata i64 0, metadata !169, metadata !DIExpression()), !dbg !206 // store atomic i64 0, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !101 // ST: Guess iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l60_c3 old_cw = cw(0,0); cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l60_c3 // Check ASSUME(active[iw(0,0)] == 0); ASSUME(active[cw(0,0)] == 0); ASSUME(sforbid(0,cw(0,0))== 0); ASSUME(iw(0,0) >= 0); ASSUME(iw(0,0) >= 0); ASSUME(cw(0,0) >= iw(0,0)); ASSUME(cw(0,0) >= old_cw); ASSUME(cw(0,0) >= cr(0,0)); ASSUME(cw(0,0) >= cl[0]); ASSUME(cw(0,0) >= cisb[0]); ASSUME(cw(0,0) >= cdy[0]); ASSUME(cw(0,0) >= cdl[0]); ASSUME(cw(0,0) >= cds[0]); ASSUME(cw(0,0) >= cctrl[0]); ASSUME(cw(0,0) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0) = 0; mem(0,cw(0,0)) = 0; co(0,cw(0,0))+=1; delta(0,cw(0,0)) = -1; ASSUME(creturn[0] >= cw(0,0)); // store i32 0, i32* @atom_1_X0_1, align 4, !dbg !102, !tbaa !103 // ST: Guess iw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l61_c15 old_cw = cw(0,5); cw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l61_c15 // Check ASSUME(active[iw(0,5)] == 0); ASSUME(active[cw(0,5)] == 0); ASSUME(sforbid(5,cw(0,5))== 0); ASSUME(iw(0,5) >= 0); ASSUME(iw(0,5) >= 0); ASSUME(cw(0,5) >= iw(0,5)); ASSUME(cw(0,5) >= old_cw); ASSUME(cw(0,5) >= cr(0,5)); ASSUME(cw(0,5) >= cl[0]); ASSUME(cw(0,5) >= cisb[0]); ASSUME(cw(0,5) >= cdy[0]); ASSUME(cw(0,5) >= cdl[0]); ASSUME(cw(0,5) >= cds[0]); ASSUME(cw(0,5) >= cctrl[0]); ASSUME(cw(0,5) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,5) = 0; mem(5,cw(0,5)) = 0; co(5,cw(0,5))+=1; delta(5,cw(0,5)) = -1; ASSUME(creturn[0] >= cw(0,5)); // store i32 0, i32* @atom_1_X4_1, align 4, !dbg !107, !tbaa !103 // ST: Guess iw(0,6) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l62_c15 old_cw = cw(0,6); cw(0,6) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l62_c15 // Check ASSUME(active[iw(0,6)] == 0); ASSUME(active[cw(0,6)] == 0); ASSUME(sforbid(6,cw(0,6))== 0); ASSUME(iw(0,6) >= 0); ASSUME(iw(0,6) >= 0); ASSUME(cw(0,6) >= iw(0,6)); ASSUME(cw(0,6) >= old_cw); ASSUME(cw(0,6) >= cr(0,6)); ASSUME(cw(0,6) >= cl[0]); ASSUME(cw(0,6) >= cisb[0]); ASSUME(cw(0,6) >= cdy[0]); ASSUME(cw(0,6) >= cdl[0]); ASSUME(cw(0,6) >= cds[0]); ASSUME(cw(0,6) >= cctrl[0]); ASSUME(cw(0,6) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,6) = 0; mem(6,cw(0,6)) = 0; co(6,cw(0,6))+=1; delta(6,cw(0,6)) = -1; ASSUME(creturn[0] >= cw(0,6)); // store i32 0, i32* @atom_1_X10_0, align 4, !dbg !108, !tbaa !103 // ST: Guess iw(0,7) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l63_c16 old_cw = cw(0,7); cw(0,7) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l63_c16 // Check ASSUME(active[iw(0,7)] == 0); ASSUME(active[cw(0,7)] == 0); ASSUME(sforbid(7,cw(0,7))== 0); ASSUME(iw(0,7) >= 0); ASSUME(iw(0,7) >= 0); ASSUME(cw(0,7) >= iw(0,7)); ASSUME(cw(0,7) >= old_cw); ASSUME(cw(0,7) >= cr(0,7)); ASSUME(cw(0,7) >= cl[0]); ASSUME(cw(0,7) >= cisb[0]); ASSUME(cw(0,7) >= cdy[0]); ASSUME(cw(0,7) >= cdl[0]); ASSUME(cw(0,7) >= cds[0]); ASSUME(cw(0,7) >= cctrl[0]); ASSUME(cw(0,7) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,7) = 0; mem(7,cw(0,7)) = 0; co(7,cw(0,7))+=1; delta(7,cw(0,7)) = -1; ASSUME(creturn[0] >= cw(0,7)); // %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #6, !dbg !109 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,0+3)); ASSUME(cdy[0] >= cw(0,0+4)); ASSUME(cdy[0] >= cw(0,7+0)); ASSUME(cdy[0] >= cw(0,5+0)); ASSUME(cdy[0] >= cw(0,6+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,0+3)); ASSUME(cdy[0] >= cr(0,0+4)); ASSUME(cdy[0] >= cr(0,7+0)); ASSUME(cdy[0] >= cr(0,5+0)); ASSUME(cdy[0] >= cr(0,6+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[1] >= cdy[0]); // %call9 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #6, !dbg !110 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,0+3)); ASSUME(cdy[0] >= cw(0,0+4)); ASSUME(cdy[0] >= cw(0,7+0)); ASSUME(cdy[0] >= cw(0,5+0)); ASSUME(cdy[0] >= cw(0,6+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,0+3)); ASSUME(cdy[0] >= cr(0,0+4)); ASSUME(cdy[0] >= cr(0,7+0)); ASSUME(cdy[0] >= cr(0,5+0)); ASSUME(cdy[0] >= cr(0,6+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[2] >= cdy[0]); // %2 = load i64, i64* %thr0, align 8, !dbg !111, !tbaa !112 r9 = local_mem[0]; // %call10 = call i32 @pthread_join(i64 noundef %2, i8** noundef null), !dbg !114 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,0+3)); ASSUME(cdy[0] >= cw(0,0+4)); ASSUME(cdy[0] >= cw(0,7+0)); ASSUME(cdy[0] >= cw(0,5+0)); ASSUME(cdy[0] >= cw(0,6+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,0+3)); ASSUME(cdy[0] >= cr(0,0+4)); ASSUME(cdy[0] >= cr(0,7+0)); ASSUME(cdy[0] >= cr(0,5+0)); ASSUME(cdy[0] >= cr(0,6+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[1]); // %3 = load i64, i64* %thr1, align 8, !dbg !115, !tbaa !112 r10 = local_mem[1]; // %call11 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !116 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,0+3)); ASSUME(cdy[0] >= cw(0,0+4)); ASSUME(cdy[0] >= cw(0,7+0)); ASSUME(cdy[0] >= cw(0,5+0)); ASSUME(cdy[0] >= cw(0,6+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,0+3)); ASSUME(cdy[0] >= cr(0,0+4)); ASSUME(cdy[0] >= cr(0,7+0)); ASSUME(cdy[0] >= cr(0,5+0)); ASSUME(cdy[0] >= cr(0,6+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[2]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0), metadata !171, metadata !DIExpression()), !dbg !219 // %4 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !118 // LD: Guess old_cr = cr(0,0); cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l71_c13 // Check ASSUME(active[cr(0,0)] == 0); ASSUME(cr(0,0) >= iw(0,0)); ASSUME(cr(0,0) >= 0); ASSUME(cr(0,0) >= cdy[0]); ASSUME(cr(0,0) >= cisb[0]); ASSUME(cr(0,0) >= cdl[0]); ASSUME(cr(0,0) >= cl[0]); // Update creg_r11 = cr(0,0); crmax(0,0) = max(crmax(0,0),cr(0,0)); caddr[0] = max(caddr[0],0); if(cr(0,0) < cw(0,0)) { r11 = buff(0,0); ASSUME((!(( (cw(0,0) < 1) && (1 < crmax(0,0)) )))||(sforbid(0,1)> 0)); ASSUME((!(( (cw(0,0) < 2) && (2 < crmax(0,0)) )))||(sforbid(0,2)> 0)); ASSUME((!(( (cw(0,0) < 3) && (3 < crmax(0,0)) )))||(sforbid(0,3)> 0)); ASSUME((!(( (cw(0,0) < 4) && (4 < crmax(0,0)) )))||(sforbid(0,4)> 0)); } else { if(pw(0,0) != co(0,cr(0,0))) { ASSUME(cr(0,0) >= old_cr); } pw(0,0) = co(0,cr(0,0)); r11 = mem(0,cr(0,0)); } ASSUME(creturn[0] >= cr(0,0)); // call void @llvm.dbg.value(metadata i64 %4, metadata !173, metadata !DIExpression()), !dbg !219 // %conv = trunc i64 %4 to i32, !dbg !119 // call void @llvm.dbg.value(metadata i32 %conv, metadata !170, metadata !DIExpression()), !dbg !193 // %cmp = icmp eq i32 %conv, 1, !dbg !120 creg__r11__1_ = max(0,creg_r11); // %conv12 = zext i1 %cmp to i32, !dbg !120 // call void @llvm.dbg.value(metadata i32 %conv12, metadata !174, metadata !DIExpression()), !dbg !193 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1), metadata !176, metadata !DIExpression()), !dbg !223 // %5 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !122 // LD: Guess old_cr = cr(0,0+1*1); cr(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l73_c13 // Check ASSUME(active[cr(0,0+1*1)] == 0); ASSUME(cr(0,0+1*1) >= iw(0,0+1*1)); ASSUME(cr(0,0+1*1) >= 0); ASSUME(cr(0,0+1*1) >= cdy[0]); ASSUME(cr(0,0+1*1) >= cisb[0]); ASSUME(cr(0,0+1*1) >= cdl[0]); ASSUME(cr(0,0+1*1) >= cl[0]); // Update creg_r12 = cr(0,0+1*1); crmax(0,0+1*1) = max(crmax(0,0+1*1),cr(0,0+1*1)); caddr[0] = max(caddr[0],0); if(cr(0,0+1*1) < cw(0,0+1*1)) { r12 = buff(0,0+1*1); ASSUME((!(( (cw(0,0+1*1) < 1) && (1 < crmax(0,0+1*1)) )))||(sforbid(0+1*1,1)> 0)); ASSUME((!(( (cw(0,0+1*1) < 2) && (2 < crmax(0,0+1*1)) )))||(sforbid(0+1*1,2)> 0)); ASSUME((!(( (cw(0,0+1*1) < 3) && (3 < crmax(0,0+1*1)) )))||(sforbid(0+1*1,3)> 0)); ASSUME((!(( (cw(0,0+1*1) < 4) && (4 < crmax(0,0+1*1)) )))||(sforbid(0+1*1,4)> 0)); } else { if(pw(0,0+1*1) != co(0+1*1,cr(0,0+1*1))) { ASSUME(cr(0,0+1*1) >= old_cr); } pw(0,0+1*1) = co(0+1*1,cr(0,0+1*1)); r12 = mem(0+1*1,cr(0,0+1*1)); } ASSUME(creturn[0] >= cr(0,0+1*1)); // call void @llvm.dbg.value(metadata i64 %5, metadata !178, metadata !DIExpression()), !dbg !223 // %conv16 = trunc i64 %5 to i32, !dbg !123 // call void @llvm.dbg.value(metadata i32 %conv16, metadata !175, metadata !DIExpression()), !dbg !193 // %cmp17 = icmp eq i32 %conv16, 1, !dbg !124 creg__r12__1_ = max(0,creg_r12); // %conv18 = zext i1 %cmp17 to i32, !dbg !124 // call void @llvm.dbg.value(metadata i32 %conv18, metadata !179, metadata !DIExpression()), !dbg !193 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2), metadata !181, metadata !DIExpression()), !dbg !227 // %6 = load atomic i64, i64* getelementptr inbounds ([5 x i64], [5 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !126 // LD: Guess old_cr = cr(0,0+2*1); cr(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l75_c13 // Check ASSUME(active[cr(0,0+2*1)] == 0); ASSUME(cr(0,0+2*1) >= iw(0,0+2*1)); ASSUME(cr(0,0+2*1) >= 0); ASSUME(cr(0,0+2*1) >= cdy[0]); ASSUME(cr(0,0+2*1) >= cisb[0]); ASSUME(cr(0,0+2*1) >= cdl[0]); ASSUME(cr(0,0+2*1) >= cl[0]); // Update creg_r13 = cr(0,0+2*1); crmax(0,0+2*1) = max(crmax(0,0+2*1),cr(0,0+2*1)); caddr[0] = max(caddr[0],0); if(cr(0,0+2*1) < cw(0,0+2*1)) { r13 = buff(0,0+2*1); ASSUME((!(( (cw(0,0+2*1) < 1) && (1 < crmax(0,0+2*1)) )))||(sforbid(0+2*1,1)> 0)); ASSUME((!(( (cw(0,0+2*1) < 2) && (2 < crmax(0,0+2*1)) )))||(sforbid(0+2*1,2)> 0)); ASSUME((!(( (cw(0,0+2*1) < 3) && (3 < crmax(0,0+2*1)) )))||(sforbid(0+2*1,3)> 0)); ASSUME((!(( (cw(0,0+2*1) < 4) && (4 < crmax(0,0+2*1)) )))||(sforbid(0+2*1,4)> 0)); } else { if(pw(0,0+2*1) != co(0+2*1,cr(0,0+2*1))) { ASSUME(cr(0,0+2*1) >= old_cr); } pw(0,0+2*1) = co(0+2*1,cr(0,0+2*1)); r13 = mem(0+2*1,cr(0,0+2*1)); } ASSUME(creturn[0] >= cr(0,0+2*1)); // call void @llvm.dbg.value(metadata i64 %6, metadata !183, metadata !DIExpression()), !dbg !227 // %conv22 = trunc i64 %6 to i32, !dbg !127 // call void @llvm.dbg.value(metadata i32 %conv22, metadata !180, metadata !DIExpression()), !dbg !193 // %cmp23 = icmp eq i32 %conv22, 1, !dbg !128 creg__r13__1_ = max(0,creg_r13); // %conv24 = zext i1 %cmp23 to i32, !dbg !128 // call void @llvm.dbg.value(metadata i32 %conv24, metadata !184, metadata !DIExpression()), !dbg !193 // %7 = load i32, i32* @atom_1_X0_1, align 4, !dbg !129, !tbaa !103 // LD: Guess old_cr = cr(0,5); cr(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l77_c13 // Check ASSUME(active[cr(0,5)] == 0); ASSUME(cr(0,5) >= iw(0,5)); ASSUME(cr(0,5) >= 0); ASSUME(cr(0,5) >= cdy[0]); ASSUME(cr(0,5) >= cisb[0]); ASSUME(cr(0,5) >= cdl[0]); ASSUME(cr(0,5) >= cl[0]); // Update creg_r14 = cr(0,5); crmax(0,5) = max(crmax(0,5),cr(0,5)); caddr[0] = max(caddr[0],0); if(cr(0,5) < cw(0,5)) { r14 = buff(0,5); ASSUME((!(( (cw(0,5) < 1) && (1 < crmax(0,5)) )))||(sforbid(5,1)> 0)); ASSUME((!(( (cw(0,5) < 2) && (2 < crmax(0,5)) )))||(sforbid(5,2)> 0)); ASSUME((!(( (cw(0,5) < 3) && (3 < crmax(0,5)) )))||(sforbid(5,3)> 0)); ASSUME((!(( (cw(0,5) < 4) && (4 < crmax(0,5)) )))||(sforbid(5,4)> 0)); } else { if(pw(0,5) != co(5,cr(0,5))) { ASSUME(cr(0,5) >= old_cr); } pw(0,5) = co(5,cr(0,5)); r14 = mem(5,cr(0,5)); } ASSUME(creturn[0] >= cr(0,5)); // call void @llvm.dbg.value(metadata i32 %7, metadata !185, metadata !DIExpression()), !dbg !193 // %8 = load i32, i32* @atom_1_X4_1, align 4, !dbg !130, !tbaa !103 // LD: Guess old_cr = cr(0,6); cr(0,6) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l78_c13 // Check ASSUME(active[cr(0,6)] == 0); ASSUME(cr(0,6) >= iw(0,6)); ASSUME(cr(0,6) >= 0); ASSUME(cr(0,6) >= cdy[0]); ASSUME(cr(0,6) >= cisb[0]); ASSUME(cr(0,6) >= cdl[0]); ASSUME(cr(0,6) >= cl[0]); // Update creg_r15 = cr(0,6); crmax(0,6) = max(crmax(0,6),cr(0,6)); caddr[0] = max(caddr[0],0); if(cr(0,6) < cw(0,6)) { r15 = buff(0,6); ASSUME((!(( (cw(0,6) < 1) && (1 < crmax(0,6)) )))||(sforbid(6,1)> 0)); ASSUME((!(( (cw(0,6) < 2) && (2 < crmax(0,6)) )))||(sforbid(6,2)> 0)); ASSUME((!(( (cw(0,6) < 3) && (3 < crmax(0,6)) )))||(sforbid(6,3)> 0)); ASSUME((!(( (cw(0,6) < 4) && (4 < crmax(0,6)) )))||(sforbid(6,4)> 0)); } else { if(pw(0,6) != co(6,cr(0,6))) { ASSUME(cr(0,6) >= old_cr); } pw(0,6) = co(6,cr(0,6)); r15 = mem(6,cr(0,6)); } ASSUME(creturn[0] >= cr(0,6)); // call void @llvm.dbg.value(metadata i32 %8, metadata !186, metadata !DIExpression()), !dbg !193 // %9 = load i32, i32* @atom_1_X10_0, align 4, !dbg !131, !tbaa !103 // LD: Guess old_cr = cr(0,7); cr(0,7) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l79_c13 // Check ASSUME(active[cr(0,7)] == 0); ASSUME(cr(0,7) >= iw(0,7)); ASSUME(cr(0,7) >= 0); ASSUME(cr(0,7) >= cdy[0]); ASSUME(cr(0,7) >= cisb[0]); ASSUME(cr(0,7) >= cdl[0]); ASSUME(cr(0,7) >= cl[0]); // Update creg_r16 = cr(0,7); crmax(0,7) = max(crmax(0,7),cr(0,7)); caddr[0] = max(caddr[0],0); if(cr(0,7) < cw(0,7)) { r16 = buff(0,7); ASSUME((!(( (cw(0,7) < 1) && (1 < crmax(0,7)) )))||(sforbid(7,1)> 0)); ASSUME((!(( (cw(0,7) < 2) && (2 < crmax(0,7)) )))||(sforbid(7,2)> 0)); ASSUME((!(( (cw(0,7) < 3) && (3 < crmax(0,7)) )))||(sforbid(7,3)> 0)); ASSUME((!(( (cw(0,7) < 4) && (4 < crmax(0,7)) )))||(sforbid(7,4)> 0)); } else { if(pw(0,7) != co(7,cr(0,7))) { ASSUME(cr(0,7) >= old_cr); } pw(0,7) = co(7,cr(0,7)); r16 = mem(7,cr(0,7)); } ASSUME(creturn[0] >= cr(0,7)); // call void @llvm.dbg.value(metadata i32 %9, metadata !187, metadata !DIExpression()), !dbg !193 // %and = and i32 %8, %9, !dbg !132 creg_r17 = max(creg_r15,creg_r16); r17 = r15 & r16; // call void @llvm.dbg.value(metadata i32 %and, metadata !188, metadata !DIExpression()), !dbg !193 // %and25 = and i32 %7, %and, !dbg !133 creg_r18 = max(creg_r14,creg_r17); r18 = r14 & r17; // call void @llvm.dbg.value(metadata i32 %and25, metadata !189, metadata !DIExpression()), !dbg !193 // %and26 = and i32 %conv24, %and25, !dbg !134 creg_r19 = max(creg__r13__1_,creg_r18); r19 = (r13==1) & r18; // call void @llvm.dbg.value(metadata i32 %and26, metadata !190, metadata !DIExpression()), !dbg !193 // %and27 = and i32 %conv18, %and26, !dbg !135 creg_r20 = max(creg__r12__1_,creg_r19); r20 = (r12==1) & r19; // call void @llvm.dbg.value(metadata i32 %and27, metadata !191, metadata !DIExpression()), !dbg !193 // %and28 = and i32 %conv12, %and27, !dbg !136 creg_r21 = max(creg__r11__1_,creg_r20); r21 = (r11==1) & r20; // call void @llvm.dbg.value(metadata i32 %and28, metadata !192, metadata !DIExpression()), !dbg !193 // %cmp29 = icmp eq i32 %and28, 1, !dbg !137 creg__r21__1_ = max(0,creg_r21); // br i1 %cmp29, label %if.then, label %if.end, !dbg !139 old_cctrl = cctrl[0]; cctrl[0] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[0] >= old_cctrl); ASSUME(cctrl[0] >= creg__r21__1_); if((r21==1)) { goto T0BLOCK1; } else { goto T0BLOCK2; } T0BLOCK1: // call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([121 x i8], [121 x i8]* @.str.1, i64 0, i64 0), i32 noundef 85, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #7, !dbg !140 // unreachable, !dbg !140 r22 = 1; goto T0BLOCK_END; T0BLOCK2: // %10 = bitcast i64* %thr1 to i8*, !dbg !143 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #6, !dbg !143 // %11 = bitcast i64* %thr0 to i8*, !dbg !143 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #6, !dbg !143 // ret i32 0, !dbg !144 ret_thread_0 = 0; goto T0BLOCK_END; T0BLOCK_END: ASSUME(meminit(0,1) == mem(0,0)); ASSUME(coinit(0,1) == co(0,0)); ASSUME(deltainit(0,1) == delta(0,0)); ASSUME(meminit(0,2) == mem(0,1)); ASSUME(coinit(0,2) == co(0,1)); ASSUME(deltainit(0,2) == delta(0,1)); ASSUME(meminit(0,3) == mem(0,2)); ASSUME(coinit(0,3) == co(0,2)); ASSUME(deltainit(0,3) == delta(0,2)); ASSUME(meminit(0,4) == mem(0,3)); ASSUME(coinit(0,4) == co(0,3)); ASSUME(deltainit(0,4) == delta(0,3)); ASSUME(meminit(1,1) == mem(1,0)); ASSUME(coinit(1,1) == co(1,0)); ASSUME(deltainit(1,1) == delta(1,0)); ASSUME(meminit(1,2) == mem(1,1)); ASSUME(coinit(1,2) == co(1,1)); ASSUME(deltainit(1,2) == delta(1,1)); ASSUME(meminit(1,3) == mem(1,2)); ASSUME(coinit(1,3) == co(1,2)); ASSUME(deltainit(1,3) == delta(1,2)); ASSUME(meminit(1,4) == mem(1,3)); ASSUME(coinit(1,4) == co(1,3)); ASSUME(deltainit(1,4) == delta(1,3)); ASSUME(meminit(2,1) == mem(2,0)); ASSUME(coinit(2,1) == co(2,0)); ASSUME(deltainit(2,1) == delta(2,0)); ASSUME(meminit(2,2) == mem(2,1)); ASSUME(coinit(2,2) == co(2,1)); ASSUME(deltainit(2,2) == delta(2,1)); ASSUME(meminit(2,3) == mem(2,2)); ASSUME(coinit(2,3) == co(2,2)); ASSUME(deltainit(2,3) == delta(2,2)); ASSUME(meminit(2,4) == mem(2,3)); ASSUME(coinit(2,4) == co(2,3)); ASSUME(deltainit(2,4) == delta(2,3)); ASSUME(meminit(3,1) == mem(3,0)); ASSUME(coinit(3,1) == co(3,0)); ASSUME(deltainit(3,1) == delta(3,0)); ASSUME(meminit(3,2) == mem(3,1)); ASSUME(coinit(3,2) == co(3,1)); ASSUME(deltainit(3,2) == delta(3,1)); ASSUME(meminit(3,3) == mem(3,2)); ASSUME(coinit(3,3) == co(3,2)); ASSUME(deltainit(3,3) == delta(3,2)); ASSUME(meminit(3,4) == mem(3,3)); ASSUME(coinit(3,4) == co(3,3)); ASSUME(deltainit(3,4) == delta(3,3)); ASSUME(meminit(4,1) == mem(4,0)); ASSUME(coinit(4,1) == co(4,0)); ASSUME(deltainit(4,1) == delta(4,0)); ASSUME(meminit(4,2) == mem(4,1)); ASSUME(coinit(4,2) == co(4,1)); ASSUME(deltainit(4,2) == delta(4,1)); ASSUME(meminit(4,3) == mem(4,2)); ASSUME(coinit(4,3) == co(4,2)); ASSUME(deltainit(4,3) == delta(4,2)); ASSUME(meminit(4,4) == mem(4,3)); ASSUME(coinit(4,4) == co(4,3)); ASSUME(deltainit(4,4) == delta(4,3)); ASSUME(meminit(5,1) == mem(5,0)); ASSUME(coinit(5,1) == co(5,0)); ASSUME(deltainit(5,1) == delta(5,0)); ASSUME(meminit(5,2) == mem(5,1)); ASSUME(coinit(5,2) == co(5,1)); ASSUME(deltainit(5,2) == delta(5,1)); ASSUME(meminit(5,3) == mem(5,2)); ASSUME(coinit(5,3) == co(5,2)); ASSUME(deltainit(5,3) == delta(5,2)); ASSUME(meminit(5,4) == mem(5,3)); ASSUME(coinit(5,4) == co(5,3)); ASSUME(deltainit(5,4) == delta(5,3)); ASSUME(meminit(6,1) == mem(6,0)); ASSUME(coinit(6,1) == co(6,0)); ASSUME(deltainit(6,1) == delta(6,0)); ASSUME(meminit(6,2) == mem(6,1)); ASSUME(coinit(6,2) == co(6,1)); ASSUME(deltainit(6,2) == delta(6,1)); ASSUME(meminit(6,3) == mem(6,2)); ASSUME(coinit(6,3) == co(6,2)); ASSUME(deltainit(6,3) == delta(6,2)); ASSUME(meminit(6,4) == mem(6,3)); ASSUME(coinit(6,4) == co(6,3)); ASSUME(deltainit(6,4) == delta(6,3)); ASSUME(meminit(7,1) == mem(7,0)); ASSUME(coinit(7,1) == co(7,0)); ASSUME(deltainit(7,1) == delta(7,0)); ASSUME(meminit(7,2) == mem(7,1)); ASSUME(coinit(7,2) == co(7,1)); ASSUME(deltainit(7,2) == delta(7,1)); ASSUME(meminit(7,3) == mem(7,2)); ASSUME(coinit(7,3) == co(7,2)); ASSUME(deltainit(7,3) == delta(7,2)); ASSUME(meminit(7,4) == mem(7,3)); ASSUME(coinit(7,4) == co(7,3)); ASSUME(deltainit(7,4) == delta(7,3)); ASSERT(r22== 0); }
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
451a8d73e91dc117e337eaf37e857e38c93faa10
654907f9d0e495b86c2a01e5ebf48c8eaa6e3735
/src/rpcmisc.cpp
eefb1926f9a6cb47181b378f465f4881018316d0
[ "MIT", "Apache-2.0" ]
permissive
yibitcoin/yibitcoin
a9fee20756354fcacb726edc368b994b63f39a4b
e1c2143b925900b8ded33942b95d8e69ee66f2f5
refs/heads/master
2021-01-01T04:26:34.413240
2016-05-16T04:41:34
2016-05-16T04:41:34
58,698,688
2
1
null
null
null
null
UTF-8
C++
false
false
16,135
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" #include "clientversion.h" #include "init.h" #include "main.h" #include "net.h" #include "netbase.h" #include "rpcserver.h" #include "timedata.h" #include "util.h" #ifdef ENABLE_WALLET #include "wallet/wallet.h" #include "wallet/walletdb.h" #endif #include <stdint.h> #include <boost/assign/list_of.hpp> #include "json/json_spirit_utils.h" #include "json/json_spirit_value.h" using namespace json_spirit; using namespace std; /** * @note Do not add or change anything in the information returned by this * method. `getinfo` exists for backwards-compatibility only. It combines * information from wildly different sources in the program, which is a mess, * and is thus planned to be deprecated eventually. * * Based on the source of the information, new information should be added to: * - `getblockchaininfo`, * - `getnetworkinfo` or * - `getwalletinfo` * * Or alternatively, create a specific query method for the information. **/ Value getinfo(const Array& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getinfo\n" "Returns an object containing various state info.\n" "\nResult:\n" "{\n" " \"version\": xxxxx, (numeric) the server version\n" " \"protocolversion\": xxxxx, (numeric) the protocol version\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" " \"balance\": xxxxxxx, (numeric) the total yibitcoin balance of the wallet\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"timeoffset\": xxxxx, (numeric) the time offset\n" " \"connections\": xxxxx, (numeric) the number of connections\n" " \"proxy\": \"host:port\", (string, optional) the proxy used by the server\n" " \"difficulty\": xxxxxx, (numeric) the current difficulty\n" " \"testnet\": true|false, (boolean) if the server is using testnet or not\n" " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" " \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n" " \"paytxfee\": x.xxxx, (numeric) the transaction fee set in ytc/kb\n" " \"relayfee\": x.xxxx, (numeric) minimum relay fee for non-free transactions in ytc/kb\n" " \"errors\": \"...\" (string) any error messages\n" "}\n" "\nExamples:\n" + HelpExampleCli("getinfo", "") + HelpExampleRpc("getinfo", "") ); #ifdef ENABLE_WALLET LOCK2(cs_main, pwalletMain ? &pwalletMain->cs_wallet : NULL); #else LOCK(cs_main); #endif proxyType proxy; GetProxy(NET_IPV4, proxy); Object obj; obj.push_back(Pair("version", CLIENT_VERSION)); obj.push_back(Pair("protocolversion", PROTOCOL_VERSION)); #ifdef ENABLE_WALLET if (pwalletMain) { obj.push_back(Pair("walletversion", pwalletMain->GetVersion())); obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); } #endif obj.push_back(Pair("blocks", (int)chainActive.Height())); obj.push_back(Pair("timeoffset", GetTimeOffset())); obj.push_back(Pair("connections", (int)vNodes.size())); obj.push_back(Pair("proxy", (proxy.IsValid() ? proxy.proxy.ToStringIPPort() : string()))); obj.push_back(Pair("difficulty", (double)GetDifficulty())); obj.push_back(Pair("testnet", Params().TestnetToBeDeprecatedFieldRPC())); #ifdef ENABLE_WALLET if (pwalletMain) { obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime())); obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); } if (pwalletMain && pwalletMain->IsCrypted()) obj.push_back(Pair("unlocked_until", nWalletUnlockTime)); obj.push_back(Pair("paytxfee", ValueFromAmount(payTxFee.GetFeePerK()))); #endif obj.push_back(Pair("relayfee", ValueFromAmount(::minRelayTxFee.GetFeePerK()))); obj.push_back(Pair("errors", GetWarnings("statusbar"))); return obj; } #ifdef ENABLE_WALLET class DescribeAddressVisitor : public boost::static_visitor<Object> { private: isminetype mine; public: DescribeAddressVisitor(isminetype mineIn) : mine(mineIn) {} Object operator()(const CNoDestination &dest) const { return Object(); } Object operator()(const CKeyID &keyID) const { Object obj; CPubKey vchPubKey; obj.push_back(Pair("isscript", false)); if (mine == ISMINE_SPENDABLE) { pwalletMain->GetPubKey(keyID, vchPubKey); obj.push_back(Pair("pubkey", HexStr(vchPubKey))); obj.push_back(Pair("iscompressed", vchPubKey.IsCompressed())); } return obj; } Object operator()(const CScriptID &scriptID) const { Object obj; obj.push_back(Pair("isscript", true)); if (mine != ISMINE_NO) { CScript subscript; pwalletMain->GetCScript(scriptID, subscript); std::vector<CTxDestination> addresses; txnouttype whichType; int nRequired; ExtractDestinations(subscript, whichType, addresses, nRequired); obj.push_back(Pair("script", GetTxnOutputType(whichType))); obj.push_back(Pair("hex", HexStr(subscript.begin(), subscript.end()))); Array a; BOOST_FOREACH(const CTxDestination& addr, addresses) a.push_back(CBitcoinAddress(addr).ToString()); obj.push_back(Pair("addresses", a)); if (whichType == TX_MULTISIG) obj.push_back(Pair("sigsrequired", nRequired)); } return obj; } }; #endif Value validateaddress(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "validateaddress \"yibitcoinaddress\"\n" "\nReturn information about the given yibitcoin address.\n" "\nArguments:\n" "1. \"yibitcoinaddress\" (string, required) The yibitcoin address to validate\n" "\nResult:\n" "{\n" " \"isvalid\" : true|false, (boolean) If the address is valid or not. If not, this is the only property returned.\n" " \"address\" : \"yibitcoinaddress\",(string) The yibitcoin address validated\n" " \"scriptPubKey\" : \"hex\", (string) The hex encoded scriptPubKey generated by the address\n" " \"ismine\" : true|false, (boolean) If the address is yours or not\n" " \"isscript\" : true|false, (boolean) If the key is a script\n" " \"pubkey\" : \"publickeyhex\", (string) The hex value of the raw public key\n" " \"iscompressed\" : true|false, (boolean) If the address is compressed\n" " \"account\" : \"account\" (string) DEPRECATED. The account associated with the address, \"\" is the default account\n" "}\n" "\nExamples:\n" + HelpExampleCli("validateaddress", "\"DTaXouBvXCDfViRZzSCaVNQBAyt1D9zThT\"") + HelpExampleRpc("validateaddress", "\"DTaXouBvXCDfViRZzSCaVNQBAyt1D9zThT\"") ); #ifdef ENABLE_WALLET LOCK2(cs_main, pwalletMain ? &pwalletMain->cs_wallet : NULL); #else LOCK(cs_main); #endif CBitcoinAddress address(params[0].get_str()); bool isValid = address.IsValid(); Object ret; ret.push_back(Pair("isvalid", isValid)); if (isValid) { CTxDestination dest = address.Get(); string currentAddress = address.ToString(); ret.push_back(Pair("address", currentAddress)); CScript scriptPubKey = GetScriptForDestination(dest); ret.push_back(Pair("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()))); #ifdef ENABLE_WALLET isminetype mine = pwalletMain ? IsMine(*pwalletMain, dest) : ISMINE_NO; ret.push_back(Pair("ismine", (mine & ISMINE_SPENDABLE) ? true : false)); if (mine != ISMINE_NO) { ret.push_back(Pair("iswatchonly", (mine & ISMINE_WATCH_ONLY) ? true: false)); Object detail = boost::apply_visitor(DescribeAddressVisitor(mine), dest); ret.insert(ret.end(), detail.begin(), detail.end()); } if (pwalletMain && pwalletMain->mapAddressBook.count(dest)) ret.push_back(Pair("account", pwalletMain->mapAddressBook[dest].name)); #endif } return ret; } /** * Used by addmultisigaddress / createmultisig: */ CScript _createmultisig_redeemScript(const Array& params) { int nRequired = params[0].get_int(); const Array& keys = params[1].get_array(); // Gather public keys if (nRequired < 1) throw runtime_error("a multisignature address must require at least one key to redeem"); if ((int)keys.size() < nRequired) throw runtime_error( strprintf("not enough keys supplied " "(got %u keys, but need at least %d to redeem)", keys.size(), nRequired)); if (keys.size() > 16) throw runtime_error("Number of addresses involved in the multisignature address creation > 16\nReduce the number"); std::vector<CPubKey> pubkeys; pubkeys.resize(keys.size()); for (unsigned int i = 0; i < keys.size(); i++) { const std::string& ks = keys[i].get_str(); #ifdef ENABLE_WALLET // Case 1: Bitcoin address and we have full public key: CBitcoinAddress address(ks); if (pwalletMain && address.IsValid()) { CKeyID keyID; if (!address.GetKeyID(keyID)) throw runtime_error( strprintf("%s does not refer to a key",ks)); CPubKey vchPubKey; if (!pwalletMain->GetPubKey(keyID, vchPubKey)) throw runtime_error( strprintf("no full public key for address %s",ks)); if (!vchPubKey.IsFullyValid()) throw runtime_error(" Invalid public key: "+ks); pubkeys[i] = vchPubKey; } // Case 2: hex public key else #endif if (IsHex(ks)) { CPubKey vchPubKey(ParseHex(ks)); if (!vchPubKey.IsFullyValid()) throw runtime_error(" Invalid public key: "+ks); pubkeys[i] = vchPubKey; } else { throw runtime_error(" Invalid public key: "+ks); } } CScript result = GetScriptForMultisig(nRequired, pubkeys); if (result.size() > MAX_SCRIPT_ELEMENT_SIZE) throw runtime_error( strprintf("redeemScript exceeds size limit: %d > %d", result.size(), MAX_SCRIPT_ELEMENT_SIZE)); return result; } Value createmultisig(const Array& params, bool fHelp) { if (fHelp || params.size() < 2 || params.size() > 2) { string msg = "createmultisig nrequired [\"key\",...]\n" "\nCreates a multi-signature address with n signature of m keys required.\n" "It returns a json object with the address and redeemScript.\n" "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" "2. \"keys\" (string, required) A json array of keys which are yibitcoin addresses or hex-encoded public keys\n" " [\n" " \"key\" (string) yibitcoin address or hex-encoded public key\n" " ,...\n" " ]\n" "\nResult:\n" "{\n" " \"address\":\"multisigaddress\", (string) The value of the new multisig address.\n" " \"redeemScript\":\"script\" (string) The string value of the hex-encoded redemption script.\n" "}\n" "\nExamples:\n" "\nCreate a multisig address from 2 addresses\n" + HelpExampleCli("createmultisig", "2 \"[\\\"DB1Y8APJPE9K1kfYeuGPcbtyK7uruTNFa9\\\",\\\"DB9yDzihrJJBZ7mEUuGRAz7bJbh5jQJexj\\\"]\"") + "\nAs a json rpc call\n" + HelpExampleRpc("createmultisig", "2, \"[\\\"DB1Y8APJPE9K1kfYeuGPcbtyK7uruTNFa9\\\",\\\"DB9yDzihrJJBZ7mEUuGRAz7bJbh5jQJexj\\\"]\"") ; throw runtime_error(msg); } // Construct using pay-to-script-hash: CScript inner = _createmultisig_redeemScript(params); CScriptID innerID(inner); CBitcoinAddress address(innerID); Object result; result.push_back(Pair("address", address.ToString())); result.push_back(Pair("redeemScript", HexStr(inner.begin(), inner.end()))); return result; } Value verifymessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 3) throw runtime_error( "verifymessage \"yibitcoinaddress\" \"signature\" \"message\"\n" "\nVerify a signed message\n" "\nArguments:\n" "1. \"yibitcoinaddress\" (string, required) The yibitcoin address to use for the signature.\n" "2. \"signature\" (string, required) The signature provided by the signer in base 64 encoding (see signmessage).\n" "3. \"message\" (string, required) The message that was signed.\n" "\nResult:\n" "true|false (boolean) If the signature is verified or not.\n" "\nExamples:\n" "\nUnlock the wallet for 30 seconds\n" + HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") + "\nCreate the signature\n" + HelpExampleCli("signmessage", "\"YdpejGX1DonBtixhsqMLLtf98qKVrNBuM4\" \"my message\"") + "\nVerify the signature\n" + HelpExampleCli("verifymessage", "\"YdpejGX1DonBtixhsqMLLtf98qKVrNBuM4\" \"signature\" \"my message\"") + "\nAs json rpc\n" + HelpExampleRpc("verifymessage", "\"YdpejGX1DonBtixhsqMLLtf98qKVrNBuM4\", \"signature\", \"my message\"") ); LOCK(cs_main); string strAddress = params[0].get_str(); string strSign = params[1].get_str(); string strMessage = params[2].get_str(); CBitcoinAddress addr(strAddress); if (!addr.IsValid()) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address"); CKeyID keyID; if (!addr.GetKeyID(keyID)) throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to key"); bool fInvalid = false; vector<unsigned char> vchSig = DecodeBase64(strSign.c_str(), &fInvalid); if (fInvalid) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Malformed base64 encoding"); CHashWriter ss(SER_GETHASH, 0); ss << strMessageMagic; ss << strMessage; CPubKey pubkey; if (!pubkey.RecoverCompact(ss.GetHash(), vchSig)) return false; return (pubkey.GetID() == keyID); } Value setmocktime(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "setmocktime timestamp\n" "\nSet the local time to given timestamp (-regtest only)\n" "\nArguments:\n" "1. timestamp (integer, required) Unix seconds-since-epoch timestamp\n" " Pass 0 to go back to using the system time." ); if (!Params().MineBlocksOnDemand()) throw runtime_error("setmocktime for regression testing (-regtest mode) only"); LOCK(cs_main); RPCTypeCheck(params, boost::assign::list_of(int_type)); SetMockTime(params[0].get_int64()); return Value::null; }
[ "fuwenke@gmail.com" ]
fuwenke@gmail.com
261fb97fb7911207113920884aafedade385826a
1f56f9d07657499d5d7bcce1d6349189f3c24269
/src/test/merkle_tests.cpp
df796d582048b7f704d1b3779d5024397af01f96
[ "MIT" ]
permissive
jesusleon1995/banq
d5ae4165032ceb2f210ceaf37738c24cc1749dca
4d2c5448b6ecbbff488ef4d0c472a3a58ef27d10
refs/heads/master
2020-03-16T20:51:00.890446
2018-06-26T08:04:16
2018-06-26T08:04:16
130,862,851
0
0
null
2018-04-24T13:59:06
2018-04-24T13:59:05
null
UTF-8
C++
false
false
5,908
cpp
// Copyright (c) 2015 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "consensus/merkle.h" #include "test/test_banq.h" #include "random.h" #include <boost/test/unit_test.hpp> BOOST_FIXTURE_TEST_SUITE(merkle_tests, TestingSetup) // Older version of the merkle root computation code, for comparison. static uint256 BlockBuildMerkleTree(const CBlock& block, bool* fMutated, std::vector<uint256>& vMerkleTree) { vMerkleTree.clear(); vMerkleTree.reserve(block.vtx.size() * 2 + 16); // Safe upper bound for the number of total nodes. for (std::vector<CTransaction>::const_iterator it(block.vtx.begin()); it != block.vtx.end(); ++it) vMerkleTree.push_back(it->GetHash()); int j = 0; bool mutated = false; for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2) { for (int i = 0; i < nSize; i += 2) { int i2 = std::min(i+1, nSize-1); if (i2 == i + 1 && i2 + 1 == nSize && vMerkleTree[j+i] == vMerkleTree[j+i2]) { // Two identical hashes at the end of the list at a particular level. mutated = true; } vMerkleTree.push_back(Hash(vMerkleTree[j+i].begin(), vMerkleTree[j+i].end(), vMerkleTree[j+i2].begin(), vMerkleTree[j+i2].end())); } j += nSize; } if (fMutated) { *fMutated = mutated; } return (vMerkleTree.empty() ? uint256() : vMerkleTree.back()); } // Older version of the merkle branch computation code, for comparison. static std::vector<uint256> BlockGetMerkleBranch(const CBlock& block, const std::vector<uint256>& vMerkleTree, int nIndex) { std::vector<uint256> vMerkleBranch; int j = 0; for (int nSize = block.vtx.size(); nSize > 1; nSize = (nSize + 1) / 2) { int i = std::min(nIndex^1, nSize-1); vMerkleBranch.push_back(vMerkleTree[j+i]); nIndex >>= 1; j += nSize; } return vMerkleBranch; } static inline int ctz(uint32_t i) { if (i == 0) return 0; int j = 0; while (!(i & 1)) { j++; i >>= 1; } return j; } BOOST_AUTO_TEST_CASE(merkle_test) { for (int i = 0; i < 32; i++) { // Try 32 block sizes: all sizes from 0 to 16 inclusive, and then 15 random sizes. int ntx = (i <= 16) ? i : 17 + (insecure_rand() % 4000); // Try up to 3 mutations. for (int mutate = 0; mutate <= 3; mutate++) { int duplicate1 = mutate >= 1 ? 1 << ctz(ntx) : 0; // The last how many transactions to duplicate first. if (duplicate1 >= ntx) break; // Duplication of the entire tree results in a different root (it adds a level). int ntx1 = ntx + duplicate1; // The resulting number of transactions after the first duplication. int duplicate2 = mutate >= 2 ? 1 << ctz(ntx1) : 0; // Likewise for the second mutation. if (duplicate2 >= ntx1) break; int ntx2 = ntx1 + duplicate2; int duplicate3 = mutate >= 3 ? 1 << ctz(ntx2) : 0; // And for the the third mutation. if (duplicate3 >= ntx2) break; int ntx3 = ntx2 + duplicate3; // Build a block with ntx different transactions. CBlock block; block.vtx.resize(ntx); for (int j = 0; j < ntx; j++) { CMutableTransaction mtx; mtx.nLockTime = j; block.vtx[j] = mtx; } // Compute the root of the block before mutating it. bool unmutatedMutated = false; uint256 unmutatedRoot = BlockMerkleRoot(block, &unmutatedMutated); BOOST_CHECK(unmutatedMutated == false); // Optionally mutate by duplicating the last transactions, resulting in the same merkle root. block.vtx.resize(ntx3); for (int j = 0; j < duplicate1; j++) { block.vtx[ntx + j] = block.vtx[ntx + j - duplicate1]; } for (int j = 0; j < duplicate2; j++) { block.vtx[ntx1 + j] = block.vtx[ntx1 + j - duplicate2]; } for (int j = 0; j < duplicate3; j++) { block.vtx[ntx2 + j] = block.vtx[ntx2 + j - duplicate3]; } // Compute the merkle root and merkle tree using the old mechanism. bool oldMutated = false; std::vector<uint256> merkleTree; uint256 oldRoot = BlockBuildMerkleTree(block, &oldMutated, merkleTree); // Compute the merkle root using the new mechanism. bool newMutated = false; uint256 newRoot = BlockMerkleRoot(block, &newMutated); BOOST_CHECK(oldRoot == newRoot); BOOST_CHECK(newRoot == unmutatedRoot); BOOST_CHECK((newRoot == uint256()) == (ntx == 0)); BOOST_CHECK(oldMutated == newMutated); BOOST_CHECK(newMutated == !!mutate); // If no mutation was done (once for every ntx value), try up to 16 branches. if (mutate == 0) { for (int loop = 0; loop < std::min(ntx, 16); loop++) { // If ntx <= 16, try all branches. Otherise, try 16 random ones. int mtx = loop; if (ntx > 16) { mtx = insecure_rand() % ntx; } std::vector<uint256> newBranch = BlockMerkleBranch(block, mtx); std::vector<uint256> oldBranch = BlockGetMerkleBranch(block, merkleTree, mtx); BOOST_CHECK(oldBranch == newBranch); BOOST_CHECK(ComputeMerkleRootFromBranch(block.vtx[mtx].GetHash(), newBranch, mtx) == oldRoot); } } } } } BOOST_AUTO_TEST_SUITE_END()
[ "info@banq.online" ]
info@banq.online
f9b9a84f9b4c7b7e15cf5762b8d0e2a6f8824e90
aa27c780f8fc33cfc8bb1d9d77b85dfbdf8579cf
/src/sengi_up_sim.cpp
93d9e8d649ab463f1662cb15bb85fcca7c19dc7c
[ "MIT" ]
permissive
Russ76/upbot_ros
eccf4bb37bd49e75295a714e839bc9a8cb0d62a6
94220ac5adc50fd59efd1e7fbad17bb535c1e911
refs/heads/master
2022-01-09T09:41:29.788104
2019-06-03T23:04:16
2019-06-03T23:04:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,587
cpp
/* * The MIT License * * Copyright (c) 2019 Giovanni di Dio Bruno https://gbr1.github.io * * 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 <ros/ros.h> #include <geometry_msgs/Twist.h> //#include <sensor_msgs/JointState.h> #include <tf/transform_broadcaster.h> #include <nav_msgs/Odometry.h> #include <upboard_ros/Led.h> #include <upboard_ros/Leds.h> double x = 0.0; double y = 0.0; double th = 0.0; double vx = 0.0; double vy = 0.0; double vth = 0.0; float wr, wl; void callbackMotor(const geometry_msgs::Twist& msg){ wr=(msg.linear.x+msg.angular.z*0.057)/0.35; wl=(msg.linear.x-msg.angular.z*0.057)/0.35; vx=msg.linear.x; vth=msg.angular.z; } int main(int argc, char** argv){ ros::init(argc, argv, "sengi_sim"); ros::NodeHandle nh; ros::Subscriber emulateDrive = nh.subscribe("/erwhi_velocity_controller/cmd_vel",1,callbackMotor); ros::Publisher odom_pub = nh.advertise<nav_msgs::Odometry>("odom", 50); //ros::Publisher joint_pub = nh.advertise<sensor_msgs::JointState>("/joint_state", 50); ros::Publisher led_pub = nh.advertise<upboard_ros::Leds>("/upboard/leds",10); tf::TransformBroadcaster odom_broadcaster; upboard_ros::Led led_msg; upboard_ros::Leds leds_msg; ros::Time current_time, last_time; current_time = ros::Time::now(); last_time = ros::Time::now(); ros::Rate r(50.0); while(nh.ok()){ ros::spinOnce(); // check for incoming messages current_time = ros::Time::now(); //compute odometry in a typical way given the velocities of the robot double dt = (current_time - last_time).toSec(); double delta_x = (vx * cos(th) - vy * sin(th)) * dt; double delta_y = (vx * sin(th) + vy * cos(th)) * dt; double delta_th = vth * dt; x += delta_x; y += delta_y; th += delta_th; //since all odometry is 6DOF we'll need a quaternion created from yaw geometry_msgs::Quaternion odom_quat = tf::createQuaternionMsgFromYaw(th); //first, we'll publish the transform over tf geometry_msgs::TransformStamped odom_trans; odom_trans.header.stamp = current_time; odom_trans.header.frame_id = "odom"; odom_trans.child_frame_id = "base_footprint"; odom_trans.transform.translation.x = x; odom_trans.transform.translation.y = y; odom_trans.transform.translation.z = 0.0; odom_trans.transform.rotation = odom_quat; //send the transform odom_broadcaster.sendTransform(odom_trans); //next, we'll publish the odometry message over ROS nav_msgs::Odometry odom; odom.header.stamp = current_time; odom.header.frame_id = "odom"; //set the position odom.pose.pose.position.x = x; odom.pose.pose.position.y = y; odom.pose.pose.position.z = 0.0; odom.pose.pose.orientation = odom_quat; //set the velocity odom.child_frame_id = "base_footprint"; odom.twist.twist.linear.x = vx; odom.twist.twist.linear.y = vy; odom.twist.twist.angular.z = vth; //publish the message odom_pub.publish(odom); /* sensor_msgs::JointState js; js.header.frame_id="base_link"; js.header.stamp=ros::Time::now(); js.name[0]="left_joint"; js.position[0]=wl/dt; js.velocity[0]=wl; js.name[1]="right_joint"; js.position[1]=wr/dt; js.velocity[1]=wr; joint_pub.publish(js); */ //publish leds update //right wheel blue forward, yellow backward leds_msg.header.stamp=ros::Time::now(); leds_msg.header.frame_id="base_link"; if (wr>0){ led_msg.led=led_msg.BLUE; led_msg.value=1; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.YELLOW; led_msg.value=0; leds_msg.leds.push_back(led_msg); } else { if (wr<0){ led_msg.led=led_msg.BLUE; led_msg.value=0; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.YELLOW; led_msg.value=1; leds_msg.leds.push_back(led_msg); } else{ led_msg.led=led_msg.BLUE; led_msg.value=0; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.YELLOW; led_msg.value=0; leds_msg.leds.push_back(led_msg); } } if (wl>0){ led_msg.led=led_msg.GREEN; led_msg.value=1; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.RED; led_msg.value=0; leds_msg.leds.push_back(led_msg); } else { if (wl<0){ led_msg.led=led_msg.GREEN; led_msg.value=0; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.RED; led_msg.value=1; leds_msg.leds.push_back(led_msg); } else{ led_msg.led=led_msg.GREEN; led_msg.value=0; leds_msg.leds.push_back(led_msg); led_msg.led=led_msg.RED; led_msg.value=0; leds_msg.leds.push_back(led_msg); } } led_pub.publish(leds_msg); leds_msg.leds.clear(); last_time = current_time; r.sleep(); } }
[ "giovannididio.bruno@gmail.com" ]
giovannididio.bruno@gmail.com
488c62a2543fa09abba02070792e7881d2f1f88f
4a0fd2a24ca24bb9be61a76e8f7a89ab4f5089d8
/RUIYIN_OMRON/RUIYIN_OMRON/RUIYIN_OMRON.cpp
f85d30ade62c8f7c7b8ee6bc8d4edb6a26ed0850
[]
no_license
ifteng/Test
619c7d58363d42e386094675f3887e12466a28da
fe019129a98173662e41c2bb234e61a6e5be89de
refs/heads/master
2020-04-22T13:43:21.502714
2019-02-13T01:32:16
2019-02-13T01:32:16
170,419,135
0
0
null
null
null
null
GB18030
C++
false
false
3,555
cpp
// RUIYIN_OMRON.cpp : 定义 DLL 的初始化例程。 // #include "stdafx.h" #include "RUIYIN_OMRON.h" #include "PB_API.h" #include "RS232C.H" #include "COMMFCN.h" #ifdef _DEBUG #define new DEBUG_NEW #endif BOOL g_bIsInit = FALSE; CRs232c g_ToolRs232; vector<CString> strVec; //将引用层传进来的字符串解析成单个字符串装进容器里面 #define TIMEOUT 500 HANDLE g_hDevicePolling = NULL; HANDLE g_hDevicePollingEvent = CreateEvent(NULL, TRUE, FALSE, NULL); static DWORD WINAPI PollingThreadProc(LPVOID pParam); // //TODO: 如果此 DLL 相对于 MFC DLL 是动态链接的, // 则从此 DLL 导出的任何调入 // MFC 的函数必须将 AFX_MANAGE_STATE 宏添加到 // 该函数的最前面。 // // 例如: // // extern "C" BOOL PASCAL EXPORT ExportedFunction() // { // AFX_MANAGE_STATE(AfxGetStaticModuleState()); // // 此处为普通函数体 // } // // 此宏先于任何 MFC 调用 // 出现在每个函数中十分重要。 这意味着 // 它必须作为函数中的第一个语句 // 出现,甚至先于所有对象变量声明, // 这是因为它们的构造函数可能生成 MFC // DLL 调用。 // // 有关其他详细信息, // 请参阅 MFC 技术说明 33 和 58。 // // CRUIYIN_OMRONApp BEGIN_MESSAGE_MAP(CRUIYIN_OMRONApp, CWinApp) END_MESSAGE_MAP() // CRUIYIN_OMRONApp 构造 CRUIYIN_OMRONApp::CRUIYIN_OMRONApp() { // TODO: 在此处添加构造代码, // 将所有重要的初始化放置在 InitInstance 中 } // 唯一的一个 CRUIYIN_OMRONApp 对象 CRUIYIN_OMRONApp theApp; // CRUIYIN_OMRONApp 初始化 BOOL CRUIYIN_OMRONApp::InitInstance() { CWinApp::InitInstance(); return TRUE; } int PB_API Initialize(int Buate, int Port) { DeleteLog(GetFullPath("LOG").GetBuffer(0), 15); LOG_LEVEL(LOGTYPE_DEBUG | LOGTYPE_ERROR | LOGTYPE_SPECIAL); LOG_JSRCB(LOGTYPE_DEBUG, OMRONLOG, "[Initialize]--正在初始化..."); g_bIsInit = FALSE; if (g_ToolRs232.SetOpenState(Buate, 7, EVENPARITY, ONESTOPBIT)) { if (!g_ToolRs232.Open(Port)) { LOG_JSRCB(LOGTYPE_ERROR, OMRONLOG, "Initialize]--打开串口[%d]失败!%d", Port, GetLastError()); return -1; } } DWORD dwThreadId = NULL; g_hDevicePolling = CreateThread(NULL, 0, PollingThreadProc, NULL, 0, &dwThreadId); g_bIsInit = TRUE; SetEvent(g_hDevicePollingEvent); return 1; } static DWORD WINAPI PollingThreadProc(LPVOID pParam) { BOOL bRet = FALSE; while (TRUE) { DWORD dwResult = WaitForSingleObject(g_hDevicePollingEvent, INFINITE); if (dwResult == WAIT_OBJECT_0) { Sleep(TIMEOUT); LOG_JSRCB(LOGTYPE_DEBUG, OMRONLOG, "[PollingThreadProc]--触发线程..."); g_ToolRs232.ClearSR(); if (FALSE == g_ToolRs232.IsOpen()) continue; UINT uLen = 0, uReadLen = 0; BYTE szBuff[1024] = { 0 }; bRet = g_ToolRs232.GetString(szBuff, 40, (int*)&uReadLen, TIMEOUT * 1000); LOG_JSRCB(LOGTYPE_DEBUG, OMRONLOG, "[BeginRead]--开始读,字符串是[%s]", szBuff); if (FALSE == bRet) continue; CString CStrTemp,CStrData; CStrTemp = szBuff; strVec = SplitString(CStrTemp, " "); char szSendData[1024] = { 0 }; sprintf(szSendData,"%s,%s,%s" ,strVec[1], strVec[2], strVec[3]); LOG_JSRCB(LOGTYPE_DEBUG, OMRONLOG, "[BeginRead]--开始读,截取字符串是[%s]", szSendData); m_pFunCBGetCardNumByTrack(szSendData); } } return TRUE; } BOOL SetCallBack(GetCardNumByTrack pFun) { if (NULL == pFun) { LOG_JSRCB(LOGTYPE_DEBUG, OMRONLOG, "回掉函数不得为空."); return FALSE; } m_pFunCBGetCardNumByTrack = pFun; return TRUE; }
[ "862334163@qq.com" ]
862334163@qq.com
e71c0bccdef8d7a8bc2be255767598decc0b2ed1
42b29c6ad9deb4494dbb9f914252b93b1632f97a
/OpenVRTest/VRWindow.h
cc260153dac2c3304283aad9806a488c3303d3d8
[]
no_license
JeremyAdamHart/OpenVRTest
403817d284609b0dd44e2b686438587bb739460d
31582f791a3a79cb6b70de6591fc6f87de493084
refs/heads/master
2021-06-02T23:14:39.375265
2020-06-30T05:49:53
2020-06-30T05:49:53
92,997,194
0
0
null
null
null
null
UTF-8
C++
false
false
1,079
h
#pragma once #ifdef _WIN32 #define APIENTRY __stdcall #endif // GLAD #include <glad/glad.h> // confirm that GLAD didn't include windows.h #ifdef _WINDOWS_ #error windows.h was included! #endif // GLFW #include <GLFW/glfw3.h> #include <openvr/openvr.h> #include <string> #include <glm/glm.hpp> #include "VRCamera.h" class WindowManager { protected: GLFWwindow *window; void initGL(); int window_width, window_height; public: WindowManager(); WindowManager(int width, int height, std::string name, glm::vec4 color = glm::vec4(1.f)); void mainLoop(); void mainLoopNoAO(); void paintingLoop(const char* loadedFile, const char* savedFile, int sampleNumber=16); void paintingLoopIndexed(const char* loadedFile, const char* savedFile, int sampleNumber=16); void paintingLoopIndexedMT(const char* loadedFile, const char* savedFile, int sampleNumber = 16); void paintingLoopMT(const char* loadedFile, const char* savedFile, int sampleNumber = 16); }; vr::IVRSystem *initVR(); void initGlad(); GLFWwindow *createWindow(int width, int height, std::string name);
[ "jeremyadamhart@gmail.com" ]
jeremyadamhart@gmail.com
dbe0395d9f51ce5ea17cf0c610ef5273640526c8
8b98136ecb89e1f45848a77979465ba4591613b7
/Labor_5_2_Vitruelle Methoden in der Bib/Dozent.cpp
6f7f6b8f0306cfc9a463d8aa90e4007808fc7224
[]
no_license
Voxel07/OOS1
9c27b11a855ecfb088d1056609541c8361dd5d02
ecb42fc14ca0582692eaac420d105aed82a80f6e
refs/heads/master
2023-04-12T00:12:17.056145
2021-04-21T11:53:00
2021-04-21T11:53:00
330,428,133
0
0
null
null
null
null
ISO-8859-3
C++
false
false
213
cpp
#include"Dozent.hpp" Dozent::Dozent(std::string _name, int _prfrNr) :Person(_name,3),prfrNr(_prfrNr) { } void Dozent::print() const{ Person::print(); std::cout << "Prüfernummer: " << prfrNr << std::endl; }
[ "voxel@vivaldi.net" ]
voxel@vivaldi.net
bbfbb2dca2b2d925b9a42de011c58bc8f9e7316e
3c444f7c0678d0a4d07990a4aea9ff891808b2e0
/src/engine/doer/doer.cpp
99a6fc0c605e69e02a9fe2fcbaa430bfae5ab9ae
[]
no_license
srikanth007m/spruce
ffeaa9f97b8b3c2ec446a72df449306e548769f7
89a29b3f4a5c2c84d3288b57f01363485885e8af
refs/heads/master
2021-01-10T03:43:33.341546
2014-10-03T07:01:05
2014-10-03T07:01:05
49,263,679
0
0
null
null
null
null
UTF-8
C++
false
false
12,471
cpp
// doer.cpp // // Copyright (C) 2011, Institute for System Programming // of the Russian Academy of Sciences (ISPRAS) // Author: // Vahram Martirosyan <vmartirosyan@gmail.com> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301, USA. // A component of the Engine which executes the test packages #include <TestResult.hpp> #include <XmlSpruceLog.hpp> #include <PartitionManager.hpp> #include <KedrIntegrator.hpp> #include <LeakChecker.hpp> #include <map> #include <iostream> #include <vector> #include <algorithm> using namespace std; //extern TestPackage btrfsTestPackage; //extern TestPackage ext4TestPackage; char * DeviceName = NULL; char * MountPoint = NULL; char * FileSystem = NULL; TestPackage Initcommon(); TestPackage Initext4(); TestPackage Initjfs(); TestPackage Initxfs(); TestPackage Initbtrfs(); map<string, TestPackage*> InitPackages(string fs, vector<string> AllowedPackages) { static bool Initialized = false; static map<string, TestPackage> packages; if ( !Initialized ) { TestPackage pkgCommon = Initcommon(); packages[pkgCommon.GetName()] = pkgCommon; TestPackage pkgBtrfs = Initbtrfs(); packages[pkgBtrfs.GetName()] = pkgBtrfs; TestPackage pkgExt4 = Initext4(); packages[pkgExt4.GetName()] = pkgExt4; TestPackage pkgJfs = Initjfs(); packages[pkgJfs.GetName()] = pkgJfs; TestPackage pkgXfs = Initxfs(); packages[pkgXfs.GetName()] = pkgXfs; Initialized = true; } map<string, TestPackage*> result; #ifdef COMPAT if ( find(AllowedPackages.begin(), AllowedPackages.end(), (string)"common_32") != AllowedPackages.end() ) { result["common_32"] = &packages["common_32"]; } #else if ( find(AllowedPackages.begin(), AllowedPackages.end(), (string)"common") != AllowedPackages.end() ) { result["common"] = &packages["common"]; } #endif if ( find(AllowedPackages.begin(), AllowedPackages.end(), (string)"fs-spec") != AllowedPackages.end() ) { #ifdef COMPAT if ( packages.find(fs+"_32") != packages.end() ) { result[packages[fs+"_32"].GetName()] = &packages[fs+"_32"]; } #else if ( packages.find(fs) != packages.end() ) { result[packages[fs].GetName()] = &packages[fs]; } #endif } return result; } string GetOptionsToEnable(vector<string> TestsToRun); vector<string> TestsToRun; vector<string> TestsToExclude; string OptionsToEnable; string Path; // Represents the path of the current running FS.(Mkfs+Mount)Option.TestPackge.TestSet.Test int main(int argc, char ** argv) { cerr << "Running " << argv[0] << "." << endl; if ( argc < 4 ) { cerr << "Usage: " << argv[0] << " <FS> <LogFile> <MountOptions>" << endl; return 1; } string LogFolder; vector<string> Packages; Checks PerformChecks = None; // p - Packages, // c - Checks // f - FS // l - Log Folder // r - Run tests // e - Exclude tests const char* optstring = "f:l:p:c:r:e:"; char c; while ( (c = getopt(argc, argv, optstring)) != -1 ) { switch ( c ) { case 'c': { vector<string> ch; ch = SplitString(optarg, ';'); for ( vector<string>::iterator j = ch.begin(); j != ch.end(); ++j ) { if ( *j == strFuncional ) PerformChecks |= Functional; else if (*j == strStability) PerformChecks |= Stability; else if (*j == strMemoryLeak) PerformChecks |= MemoryLeak; else if (*j == strDangerous) PerformChecks |= Dangerous; } break; } case 'p': Packages = SplitString(optarg, ';'); // Add the compat versions of the mentioned packages #ifdef COMPAT { size_t PackagesSize = Packages.size(); for ( size_t i = 0; i < PackagesSize; ++i ) Packages.push_back(Packages[i] + "_32"); } #endif break; case 'f': FileSystem = optarg; break; case 'l': LogFolder = optarg; break; case 'r': TestsToRun = SplitString(optarg, ';'); break; case 'e': TestsToExclude = SplitString(optarg, ';'); break; default: Logger::LogError((string)"Unknown option: " + c); return 1; } } if ( FileSystem == NULL || !strcmp(FileSystem, "") ) { Logger::LogError("Cannot obtain file system name."); return -EFAULT; } Path = FileSystem; if ( SkipTestPath(Path) ) return 1; if ( getenv("Partition") ) DeviceName = getenv("Partition"); else { Logger::LogError("Cannot obtain device name."); return -EFAULT; } if ( getenv("MountAt") ) MountPoint = getenv("MountAt"); else { Logger::LogError("Cannot obtain mount point."); return -EFAULT; } map<string, TestPackage*> Tests = InitPackages(FileSystem, Packages); //cerr << "Package count: " << Tests.size() << endl; vector<pair<string, string> > MountOptions; bool PerformLeakCheck = PerformChecks & MemoryLeak; bool PerformFaultSimulation = PerformChecks & Stability; KedrIntegrator kedr; TestSet leakTestSet("Memory Leaks, Unallocated frees"); Test MemoryLeakTest("Memory Leak", "Checks if there are any possible memory leaks in the filesystem driver."); // Check if KEDR needs to be loaded if ( PerformLeakCheck || PerformFaultSimulation ) { try { cout << "Loading KEDR framework for module : " << FileSystem << endl; kedr.SetTargetModule(FileSystem); if ( PerformLeakCheck ) kedr.EnableMemLeakCheck(); if ( PerformFaultSimulation ) kedr.EnableFaultSimulation(); // Process possible additional KEDR payload. // Used in testing of Spruce itself. const char* KEDRAdditionalPayloads = getenv("KEDR_ADDITIONAL_PAYLOADS"); if(KEDRAdditionalPayloads && KEDRAdditionalPayloads[0] != '\0') { kedr.AddPayloads(KEDRAdditionalPayloads); } kedr.LoadKEDR(); cout << "KEDR is successfully loaded." << endl; } catch (Exception e) { cerr << "KEDR cannot be loaded." << endl; cerr << "Exception is thrown. " << e.GetMessage() << endl; if ( PerformLeakCheck ) { MemoryLeakTest.AddResult(MemoryLeak, ProcessResult(Unresolved, "Cannot load KEDR framework.")); leakTestSet.AddTest(MemoryLeakTest); } PerformFaultSimulation = false; } } PartitionManager pm( INSTALL_PREFIX"/share/spruce/config/PartitionManager.cfg", DeviceName, MountPoint, FileSystem, ( TestsToRun.size() > 0 ? GetOptionsToEnable(TestsToRun) : "")); PartitionStatus PS = PS_Success; TestPackage tp((string)"MemoryLeaks" + ( ( strstr(argv[0], "_32") != 0 ) ? "_32" : "" )); string PMCurrentOptionsStripped; string PMCurrentOptions; do { string PMCurrentOptionsStripped = pm.GetCurrentOptions(true); string PMCurrentOptions = pm.GetCurrentOptions(false); if ( TestsToExclude.size() > 0 ) { Path = (string)FileSystem + "." + PMCurrentOptions; if ( SkipTestPath(Path) ) { pm.AdvanceOptionsIndex(); continue; } } MountOptions.push_back(pair<string,string>(PMCurrentOptionsStripped, PMCurrentOptions)); PS = pm.PreparePartition(); if ( PS == PS_Fatal ) { Logger::LogFatal("Fatal error raised while preparing partition."); return 1; } if ( PS == PS_Skip ) { Logger::LogError("Skipping case."); continue; } if ( PS == PS_Done ) { Logger::LogInfo("End of mount options."); break; } time_t ItemStartTime = time(0); Status res = Success; for ( map<string, TestPackage*>::iterator i = Tests.begin(); i != Tests.end(); ++i ) { Path = (string)FileSystem + "." + PMCurrentOptions + "." + i->first; Logger::LogInfo("Executing packages. Path: " + Path); if ( SkipTestPath(Path) ) continue; res = i->second->Run(PerformChecks); size_t ItemDuration = time(0) - ItemStartTime; stringstream str; str << ItemDuration; string LogFile = LogFolder + "/" // LogFolder + FileSystem + "_" // FS + i->first + "_" // Package name // Add the '_32' suffix to the name in case of compatibility checks // + ( ( strstr(argv[0], "_32") != 0 ) ? "32_" : "" ) + PMCurrentOptionsStripped // Current options + "_log.xml"; XMLGenerator::GenerateLog(LogFile , *i->second, FileSystem, PMCurrentOptionsStripped, str.str()); if ( res >= Fatal ) break; } if ( res >= Fatal ) break; } while ( PS != PS_Done ); string relPartOutput = ""; PartitionManager::ReleasePartition(MountPoint, &relPartOutput); if ( PerformLeakCheck && kedr.IsRunning() ) { string kedrUnloadModOutput = ""; if( kedr.UnloadModule(FileSystem, &kedrUnloadModOutput)) { LeakChecker leak_check; leakTestSet = leak_check.ProcessLeakCheckerOutput(FileSystem); } else { string Output = ""; if(relPartOutput != "") { Output += relPartOutput + "\n"; } if(kedrUnloadModOutput != "") { Output += kedrUnloadModOutput + "\n"; } MemoryLeakTest.AddResult(MemoryLeak, ProcessResult(Unresolved, Output)); leakTestSet.AddTest(MemoryLeakTest); } } if ( PerformLeakCheck ) { tp.AddTestSet(leakTestSet); string LogFile = LogFolder + "/" // LogFolder + FileSystem + "_" // FS + tp.GetName() + "_" // Package name + PMCurrentOptionsStripped // Current options + "_log.xml"; XMLGenerator::GenerateLog(LogFile , tp, FileSystem, PMCurrentOptionsStripped, "0"); } try { if ( ( PerformFaultSimulation || PerformLeakCheck ) && kedr.IsRunning() ) { if(kedr.UnloadKEDR()) cout << "KEDR is successfully unloaded." << endl; } } catch(Exception e) { cerr << "Error unloading KEDR. " << e.GetMessage() << endl; } // Produce the <FS>.xml to pass to the dashboard generator // The file contains information about mount options and packages ofstream fs_xml((LogFolder + "/" + FileSystem + ".xml").c_str(), ios_base::app); fs_xml << "\t<Options>\n"; for ( unsigned int i = 0; i < MountOptions.size(); ++i ) { string option = MountOptions[i].second; string mkfs_opt = ""; string mount_opt = ""; if ( option.find(":") != string::npos ) { mkfs_opt = option.substr(0, option.find(":")); mount_opt = option.substr( option.find(":") + 1, option.length() - option.find(":") ); } else mount_opt = option; fs_xml << "\t\t<Option Mkfs=\"" + mkfs_opt + "\" Mount=\"" + mount_opt + "\" Raw=\"" + MountOptions[i].first + "\"/>\n"; } fs_xml << "\t</Options>"; fs_xml.close(); MountOptions.erase(MountOptions.begin(), MountOptions.end()); cerr << "Doer complete." << endl; return 0; } bool SkipTestPath(string Path) { if ( TestsToRun.size() != 0 ) { for ( size_t i = 0; i < TestsToRun.size(); ++i) { vector<string> TestsToRunComponents = SplitString(TestsToRun[i], '.'); vector<string> PathComponents = SplitString(Path, '.'); for ( size_t j = 0; j < PathComponents.size() && j < TestsToRunComponents.size(); ++j ) { if ( TestsToRunComponents[j] != PathComponents[j] ) { Logger::LogInfo("Path `" + Path + "` is not included in run_tests value. Skipping."); return true; } } } Logger::LogInfo("\t\tPath `" + Path + "` is included in run_tests value."); return false; } else if ( TestsToExclude.size() != 0 ) { for ( size_t i = 0; i < TestsToExclude.size(); ++i ) { if ( Path == TestsToExclude[i] ) { Logger::LogInfo("Path `" + Path + "` is included in exclude_tests value. Skipping."); return true; } } return false; } return false; } string GetOptionsToEnable(vector<string> TestsToRun) { string res = ""; for ( size_t i = 0; i < TestsToRun.size(); ++i ) { size_t pos1 = TestsToRun[i].find('.'); if ( pos1 == string::npos ) continue; size_t pos2 = TestsToRun[i].find('.', pos1 + 1 ); if ( pos2 == string::npos ) continue; res += TestsToRun[i].substr(pos1 + 1, pos2 - pos1 - 1) + ";"; } return res; }
[ "tsyvarev@ispras.ru" ]
tsyvarev@ispras.ru
d851bcd04f8241e655e5be505d28d966e5693e42
2f7cd00c3dc4215cdf2688ba3fab3f9f93164bf0
/Math/Vertex3D_PCT.hpp
b9262a93aa27375b17b5b5785cde82e720213d4e
[]
no_license
2bitdreamer/SD6_Engine
f212bf82476f8d8f77acdd074fed55cfbab0b838
f7dbebe902084ea988a6bf576065c5b1abdf247e
refs/heads/master
2020-04-15T15:49:56.969799
2016-09-21T23:29:24
2016-09-21T23:29:24
50,884,472
0
0
null
null
null
null
UTF-8
C++
false
false
463
hpp
#pragma once #include "Engine/Math/raw_vector.hpp" #include "Engine/Math/raw_vector.hpp" #include "Engine/Math/raw_vector.hpp" struct Vertex3D_PCT { Vec3 m_position; RGBA m_color; Vec2 m_texCoords; Vertex3D_PCT(): m_color(255,255,255,255) {}; bool operator == ( const Vertex3D_PCT& rhs ) const { if (m_position == rhs.m_position && m_color == rhs.m_color && m_texCoords == rhs.m_texCoords) { return true; } else { return false; } } };
[ "DarkDespair5@gmail.com" ]
DarkDespair5@gmail.com
1c9c92fcb01a6f0147989e0a4ee6420af12811d3
e57eb6a48e9ccad54182ceab0f2147191267d590
/ArmillarySphere/App/Il2CppOutputProject/Source/il2cppOutput/mscorlib4.cpp
45ec86f48bbf17477f0e2d0cf5f173e3b035f22e
[]
no_license
Doberman0/Final-Year-Project
38fd4aed25a58923ab61db878347d1c8ac7f9183
6d15f163d1a1e3a99663bea405cfada0c2d103c5
refs/heads/master
2022-07-14T06:39:55.648661
2020-05-16T17:13:19
2020-05-16T17:13:19
235,336,227
1
0
null
null
null
null
UTF-8
C++
false
false
2,288,018
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "icalls/mscorlib/System/Enum.h" #include "icalls/mscorlib/System/Environment.h" #include "icalls/mscorlib/System/Exception.h" #include "icalls/mscorlib/System/GC.h" #include "icalls/mscorlib/System.Globalization/CalendarData.h" #include "icalls/mscorlib/System.Globalization/CompareInfo.h" #include "il2cpp-object-internals.h" template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> 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 T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename 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 T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> struct VirtFuncInvoker8 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> struct VirtFuncInvoker7 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method); } }; template <typename 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); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename 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.UnsafeNativeMethods/ManifestEtw/EtwEnableCallback struct EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A; // Mono.Globalization.Unicode.CodePointIndexer struct CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A; // Mono.Globalization.Unicode.Contraction[] struct ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B; // Mono.Globalization.Unicode.Level2Map[] struct Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89; // Mono.Globalization.Unicode.TailoringInfo[] struct TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573; // System.Action`1<System.Guid> struct Action_1_t914484DED737548EE8FABFA959036371C8235942; // System.Action`2<System.Char,System.Object> struct Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48; // System.Action`2<System.Char,System.String> struct Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7; // System.Collections.Generic.Comparer`1<System.String> struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903; // System.Collections.Generic.Comparer`1<System.UInt64> struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.String>[] struct EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1; // System.Collections.Generic.Dictionary`2/Entry<System.String,Mono.Globalization.Unicode.SimpleCollator>[] struct EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Collections.Generic.List`1<System.Int32>>[] struct EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[] struct EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Type>[] struct EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18; // System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.String>[] struct EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.String> struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Mono.Globalization.Unicode.SimpleCollator> struct KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Collections.Generic.List`1<System.Int32>> struct KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Type> struct KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt64,System.Object> struct KeyCollection_tE4E0223181A9DB1608389430F309FD4679105FED; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt64,System.String> struct KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.String> struct ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Mono.Globalization.Unicode.SimpleCollator> struct ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Collections.Generic.List`1<System.Int32>> struct ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String> struct ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Type> struct ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt64,System.String> struct ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3; // System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>> struct Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28; // 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.Dictionary`2<System.String,System.Resources.ResourceSet> struct Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC; // System.Collections.Generic.Dictionary`2<System.String,System.Type> struct Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A; // System.Collections.Generic.Dictionary`2<System.UInt64,System.Object> struct Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A; // System.Collections.Generic.Dictionary`2<System.UInt64,System.String> struct Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833; // System.Collections.Generic.IComparer`1<System.UInt64> struct IComparer_1_t7E1CC88723F5E5E455D1F3D16DB58DCF4B173316; // System.Collections.Generic.IDictionary`2<System.String,System.String> struct IDictionary_2_t8D4B47914EFD2300DFBC7D9626F3D538CFA7CA53; // System.Collections.Generic.IEnumerable`1<System.Int32> struct IEnumerable_1_t1AE8F03F101BA7578AF3A97EF1EBE8DB5FF31215; // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> struct IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F; // System.Collections.Generic.IEnumerable`1<System.UInt64> struct IEnumerable_1_tEA54A68E4E174E71D79A4C0A82BC97CFAD256DEC; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9; // System.Collections.Generic.IEqualityComparer`1<System.UInt64> struct IEqualityComparer_1_t81487468A3651095E666A1DF7A970F6C4D8808B5; // System.Collections.Generic.IList`1<System.Object> struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B; // System.Collections.Generic.IList`1<System.String> struct IList_1_tFFB5515FC97391D04D5034ED7F334357FED1FAE6; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> struct List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EventProvider/SessionInfo> struct List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis> struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC; // System.Collections.Generic.List`1<System.Globalization.CultureInfo> struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832; // System.Collections.Generic.List`1<System.Int32> struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3; // System.Collections.Generic.List`1<System.Type> struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0; // System.Collections.Generic.List`1<System.UInt64> struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8; // System.Collections.Generic.List`1<System.WeakReference> struct List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; // System.Collections.ICollection struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54; // System.Collections.IComparer struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IEqualityComparer struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C; // System.Collections.IHashCodeProvider struct IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> struct ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0; // System.Comparison`1<System.Object> struct Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4; // System.Comparison`1<System.String> struct Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackFrame[] struct StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D; // System.Diagnostics.StackTrace struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Diagnostics.Tracing.ActivityFilter struct ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8; // System.Diagnostics.Tracing.ActivityTracker struct ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object> struct ConcurrentSetItem_2_t270F9459B47B76BFB74FE28134B90289F5DA3E57; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA; // System.Diagnostics.Tracing.EtwSession[] struct EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA; // System.Diagnostics.Tracing.EventAttribute struct EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1; // System.Diagnostics.Tracing.EventCommandEventArgs struct EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15; // System.Diagnostics.Tracing.EventDataAttribute struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85; // System.Diagnostics.Tracing.EventDispatcher struct EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF; // System.Diagnostics.Tracing.EventFieldAttribute struct EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C; // System.Diagnostics.Tracing.EventListener struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6; // System.Diagnostics.Tracing.EventProvider struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB; // System.Diagnostics.Tracing.EventSource/EventData struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04; // System.Diagnostics.Tracing.EventSource/EventMetadata[] struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94; // System.Diagnostics.Tracing.EventSource/OverideEventProvider struct OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B; // System.Diagnostics.Tracing.EventSourceAttribute struct EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286; // System.Diagnostics.Tracing.EventSourceCreatedEventArgs struct EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863; // System.Diagnostics.Tracing.EventSourceException struct EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275; // System.Diagnostics.Tracing.EventWrittenEventArgs struct EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E; // System.Diagnostics.Tracing.FieldMetadata struct FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC; // System.Diagnostics.Tracing.FieldMetadata[] struct FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796; // System.Diagnostics.Tracing.GuidArrayTypeInfo struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068; // System.Diagnostics.Tracing.GuidTypeInfo struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED; // System.Diagnostics.Tracing.Int16ArrayTypeInfo struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3; // System.Diagnostics.Tracing.Int16TypeInfo struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B; // System.Diagnostics.Tracing.Int32ArrayTypeInfo struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C; // System.Diagnostics.Tracing.Int32TypeInfo struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C; // System.Diagnostics.Tracing.Int64ArrayTypeInfo struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC; // System.Diagnostics.Tracing.Int64TypeInfo struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5; // System.Diagnostics.Tracing.IntPtrArrayTypeInfo struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702; // System.Diagnostics.Tracing.IntPtrTypeInfo struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55; // System.Diagnostics.Tracing.ManifestBuilder struct ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450; // System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_0 struct U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F; // System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_1 struct U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A; // System.Diagnostics.Tracing.NameInfo struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C; // System.Diagnostics.Tracing.NameInfo[] struct NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7; // System.Diagnostics.Tracing.NonEventAttribute struct NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726; // System.Diagnostics.Tracing.PropertyAnalysis struct PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A; // System.Diagnostics.Tracing.PropertyAnalysis[] struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB; // System.Diagnostics.Tracing.SByteArrayTypeInfo struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6; // System.Diagnostics.Tracing.SByteTypeInfo struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C; // System.Diagnostics.Tracing.SingleArrayTypeInfo struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239; // System.Diagnostics.Tracing.SingleTypeInfo struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8; // System.Diagnostics.Tracing.StringTypeInfo struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26; // System.Diagnostics.Tracing.TimeSpanTypeInfo struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA; // System.Diagnostics.Tracing.TplEtwProvider struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E; // System.Diagnostics.Tracing.TraceLoggingDataCollector struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA; // System.Diagnostics.Tracing.TraceLoggingEventTypes struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector struct TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl struct Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F; // System.Diagnostics.Tracing.TraceLoggingTypeInfo struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F; // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid> struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]> struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16> struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]> struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32> struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]> struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64> struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]> struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr> struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]> struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object> struct TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte> struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]> struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single> struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]> struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String> struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan> struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16> struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]> struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32> struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]> struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64> struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]> struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr> struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]> struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479; // System.Diagnostics.Tracing.TypeAnalysis struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD; // System.Diagnostics.Tracing.UInt16ArrayTypeInfo struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE; // System.Diagnostics.Tracing.UInt16TypeInfo struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E; // System.Diagnostics.Tracing.UInt32ArrayTypeInfo struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC; // System.Diagnostics.Tracing.UInt32TypeInfo struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59; // System.Diagnostics.Tracing.UInt64ArrayTypeInfo struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5; // System.Diagnostics.Tracing.UInt64TypeInfo struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E; // System.Diagnostics.Tracing.UIntPtrArrayTypeInfo struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C; // System.Diagnostics.Tracing.UIntPtrTypeInfo struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D; // System.DivideByZeroException struct DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC; // System.DllNotFoundException struct DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; // System.DuplicateWaitObjectException struct DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF; // System.Empty struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2; // System.EntryPointNotFoundException struct EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521; // System.Enum/ValuesAndNames struct ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> struct EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C; // System.EventHandler`1<System.Diagnostics.Tracing.EventSourceCreatedEventArgs> struct EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE; // System.EventHandler`1<System.Diagnostics.Tracing.EventWrittenEventArgs> struct EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6; // System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs> struct EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81; // System.Exception struct Exception_t; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21; // System.FieldAccessException struct FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF; // System.FlagsAttribute struct FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867; // 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.Bootstring struct Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E; // System.Globalization.CalendarData[] struct CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD; // 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.CultureInfo[] struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; // System.Globalization.InternalEncodingDataItem[] struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9; // System.Globalization.SortVersion struct SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IConvertible struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; // 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.LocalDataStoreHolder struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304; // System.LocalDataStoreMgr struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9; // System.MemberAccessException struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.MulticastDelegate struct MulticastDelegate_t; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.NullReferenceException struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83; // System.Reflection.Assembly struct Assembly_t; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Reflection.StrongNameKeyPair struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18; // System.Resources.IResourceGroveler struct IResourceGroveler_tCEF78094E38045CAD9EFB296E179CCDFDCB94C44; // System.Resources.IResourceReader struct IResourceReader_t32EA6DD358C3793C4E0BCD3B940EEFD52E7481BE; // System.Resources.ResourceManager struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF; // System.Resources.ResourceManager/CultureNameResourceSetPair struct CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A; // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020; // 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.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.Security.Principal.IPrincipal struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; // System.String struct String_t; // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782; // System.Text.Decoder struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> struct AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70; // System.Threading.InternalThread struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192; // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7; // System.Type struct Type_t; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; IL2CPP_EXTERN_C RuntimeClass* Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t2E51991ADA605DB75870908AF6D7C3093DC3FCBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t537D797E2644AF9046B1E4CAAC405D8CE9D01534_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____811A927B7DADD378BE60BBDE794B9277AA9B50EC_47_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B8864ACB9DD69E3D42151513C840AAE270BF21C8_74_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F073AA332018FDA0D572E99448FFF1D6422BD520_96_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00C5B9DB11398305E81DD934CC30030C1A628291; IL2CPP_EXTERN_C String_t* _stringLiteral00E9885F5602769A313CB71E70C3C23739621EAB; IL2CPP_EXTERN_C String_t* _stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC; IL2CPP_EXTERN_C String_t* _stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A; IL2CPP_EXTERN_C String_t* _stringLiteral03EE66A3DAB3D2CDCE115FCC8379D06011B9D4B9; IL2CPP_EXTERN_C String_t* _stringLiteral0468E3044BB96C27C2B264BCEDCDBC4DD3B9345C; IL2CPP_EXTERN_C String_t* _stringLiteral06B20A4FFFD49C2B41EE9A25F542756DD8B7FA41; IL2CPP_EXTERN_C String_t* _stringLiteral07B3E447DB02B7CC20A78A57C316FEBAE22ED72B; IL2CPP_EXTERN_C String_t* _stringLiteral07D16614C7EAFA63B6B2E43D94BCADBAD1CF4C3B; IL2CPP_EXTERN_C String_t* _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773; IL2CPP_EXTERN_C String_t* _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194; IL2CPP_EXTERN_C String_t* _stringLiteral0B0263D53F1F71417596898D686DD5AF8B90FE9E; IL2CPP_EXTERN_C String_t* _stringLiteral0BC766E82DC8732F2E4596DFFB3069663F7E71C6; IL2CPP_EXTERN_C String_t* _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA; IL2CPP_EXTERN_C String_t* _stringLiteral0E49F311A51BD41B19454E95BFFD18766EB48BFA; IL2CPP_EXTERN_C String_t* _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D; IL2CPP_EXTERN_C String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9; IL2CPP_EXTERN_C String_t* _stringLiteral1045D0486D142C11569D4F7CAE2E19F2F2135D15; IL2CPP_EXTERN_C String_t* _stringLiteral112F3A99B283A4E1788DEDD8E0E5D35375C33747; IL2CPP_EXTERN_C String_t* _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072; IL2CPP_EXTERN_C String_t* _stringLiteral12209D77C65DDBBBCC60B5E59E78677AC5470772; IL2CPP_EXTERN_C String_t* _stringLiteral127CEF0DEDB05FE8497C9C46AEC0AA3FBFF45D64; IL2CPP_EXTERN_C String_t* _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9; IL2CPP_EXTERN_C String_t* _stringLiteral131578187CBC956EA467DE57A93EE3388D7911FA; IL2CPP_EXTERN_C String_t* _stringLiteral14D5E1E4EC2C7FF41DD490D67B71A73D0E31EC7C; IL2CPP_EXTERN_C String_t* _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A; IL2CPP_EXTERN_C String_t* _stringLiteral157562C9A22C3136F032CA6820849E34DFEE3370; IL2CPP_EXTERN_C String_t* _stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578; IL2CPP_EXTERN_C String_t* _stringLiteral16DA788082C4C9A5A70A491C6444E6C78CC150C5; IL2CPP_EXTERN_C String_t* _stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6; IL2CPP_EXTERN_C String_t* _stringLiteral172386082086186807F5EDA33088CEC8484F98BF; IL2CPP_EXTERN_C String_t* _stringLiteral18446046809DCDB1419BD8EAE6DB7987B7EB8EC2; IL2CPP_EXTERN_C String_t* _stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56; IL2CPP_EXTERN_C String_t* _stringLiteral1931755CE670F9620F26153490F473D6268A1311; IL2CPP_EXTERN_C String_t* _stringLiteral196D67E00943D635E0EC2857FAE0B96FDF3C801D; IL2CPP_EXTERN_C String_t* _stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F; IL2CPP_EXTERN_C String_t* _stringLiteral1A349DCC540A3978584510D982075F838B17CD6D; IL2CPP_EXTERN_C String_t* _stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26; IL2CPP_EXTERN_C String_t* _stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0; IL2CPP_EXTERN_C String_t* _stringLiteral1EBE2C76316035130524FC185DA3EF43943BABBC; IL2CPP_EXTERN_C String_t* _stringLiteral1F4876FD676D03AC09FB1856159B448B0D2A55AE; IL2CPP_EXTERN_C String_t* _stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259; IL2CPP_EXTERN_C String_t* _stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6; IL2CPP_EXTERN_C String_t* _stringLiteral246E6F26840D821990AE19D45FDE49C40A6F43E2; IL2CPP_EXTERN_C String_t* _stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6; IL2CPP_EXTERN_C String_t* _stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25; IL2CPP_EXTERN_C String_t* _stringLiteral263A6F6E0C50EF5F5EA93F74510351119E77A374; IL2CPP_EXTERN_C String_t* _stringLiteral26D1D6E68E2EFB43040F5747213A436E201DDBD2; IL2CPP_EXTERN_C String_t* _stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9; IL2CPP_EXTERN_C String_t* _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6; IL2CPP_EXTERN_C String_t* _stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9; IL2CPP_EXTERN_C String_t* _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1; IL2CPP_EXTERN_C String_t* _stringLiteral29E08777F0011BC04150872BBFFF5534D39661D5; IL2CPP_EXTERN_C String_t* _stringLiteral2A650D754943CF220D5227594CAA19A8331C7A8B; IL2CPP_EXTERN_C String_t* _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6; IL2CPP_EXTERN_C String_t* _stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB; IL2CPP_EXTERN_C String_t* _stringLiteral2FFC4249B83F05632C45203CCA17BE1CE49D7495; IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; IL2CPP_EXTERN_C String_t* _stringLiteral31655E4E40C7340D7574D81061F79456A829DEF2; IL2CPP_EXTERN_C String_t* _stringLiteral3166B69F57AF10EE9E8F5D547C4119925D426417; IL2CPP_EXTERN_C String_t* _stringLiteral333C11801925CEAB22DD74C93D7617C041F0FA70; IL2CPP_EXTERN_C String_t* _stringLiteral33EA80F35FE737B35E1D085138643A2660006847; IL2CPP_EXTERN_C String_t* _stringLiteral3435968A1FA5DC7806024802A561C1886C22803B; IL2CPP_EXTERN_C String_t* _stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46; IL2CPP_EXTERN_C String_t* _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257; IL2CPP_EXTERN_C String_t* _stringLiteral37745ED7A0F005FB14522C5CC7C1BA3D9E0DF579; IL2CPP_EXTERN_C String_t* _stringLiteral3818FC9AE3DDA60E826D9B14657F088FB5F30552; IL2CPP_EXTERN_C String_t* _stringLiteral3841A78AE59725028AE44BB042A13EBB8A621270; IL2CPP_EXTERN_C String_t* _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84; IL2CPP_EXTERN_C String_t* _stringLiteral39BEA6DEDC2EA02EF7433B14291DB0C8B3326642; IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727; IL2CPP_EXTERN_C String_t* _stringLiteral3B45D1AAB32F551A0B6E0607F82512D790385944; IL2CPP_EXTERN_C String_t* _stringLiteral3B4C0C6565E036A82BEEF4CF4D00366AF668111F; IL2CPP_EXTERN_C String_t* _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9; IL2CPP_EXTERN_C String_t* _stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE; IL2CPP_EXTERN_C String_t* _stringLiteral3D87DCCAF91986FA4C389725BCAF948EFFA3E43D; IL2CPP_EXTERN_C String_t* _stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B; IL2CPP_EXTERN_C String_t* _stringLiteral3DDA0092F70DE993E51460CD2CDDDCB041FDE82E; IL2CPP_EXTERN_C String_t* _stringLiteral3E05D1803CBCEFD7109BD5259E9057AD7C3AC318; IL2CPP_EXTERN_C String_t* _stringLiteral3E63A20FD24D82D9E81A5F39CCDC550B85A2182A; IL2CPP_EXTERN_C String_t* _stringLiteral3E84966EDA4965346B1B65E8FF71B6DBD7DB4B73; IL2CPP_EXTERN_C String_t* _stringLiteral3F98816C9705E9EA06CFD4DA52C96A453E6CB2D8; IL2CPP_EXTERN_C String_t* _stringLiteral3FCE8FCB8E68DF5EB7FDC8994A85BB862F91A267; IL2CPP_EXTERN_C String_t* _stringLiteral408F64453B908F42FD60655B6602FE9C593982CA; IL2CPP_EXTERN_C String_t* _stringLiteral413C755FA98C7F9008ECA6BE63D35368C4A1514F; IL2CPP_EXTERN_C String_t* _stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6; IL2CPP_EXTERN_C String_t* _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8; IL2CPP_EXTERN_C String_t* _stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61; IL2CPP_EXTERN_C String_t* _stringLiteral4319F745CDC4FD40114E0D897B2013145BAEB728; IL2CPP_EXTERN_C String_t* _stringLiteral432F40DA13A412CABAD63F5524F00CC2C8992AC3; IL2CPP_EXTERN_C String_t* _stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5; IL2CPP_EXTERN_C String_t* _stringLiteral434F56D21A258E7969A92CEA469D5AF82D2A30D9; IL2CPP_EXTERN_C String_t* _stringLiteral4413EC32E60779835B3DAF7E5B512339751AC6EC; IL2CPP_EXTERN_C String_t* _stringLiteral4474ABE156E995800F623A46EB81155997101DC5; IL2CPP_EXTERN_C String_t* _stringLiteral46FC8621F192530C562CAF208362AAC0952C6C2D; IL2CPP_EXTERN_C String_t* _stringLiteral481D5EBFAA65CD8CBAE34C4A33103730147071B9; IL2CPP_EXTERN_C String_t* _stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB; IL2CPP_EXTERN_C String_t* _stringLiteral48F5015F1ACFAB8D3581489DA0BBF59992135C3E; IL2CPP_EXTERN_C String_t* _stringLiteral491831D06619E7C160397FC825EBD1514A126B20; IL2CPP_EXTERN_C String_t* _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA; IL2CPP_EXTERN_C String_t* _stringLiteral4A0B9F9010B567B650A074217E5FD09037275F29; IL2CPP_EXTERN_C String_t* _stringLiteral4A13CBBE581E26FF56A2C1CFF69DF36A497F2D9B; IL2CPP_EXTERN_C String_t* _stringLiteral4ABDA3BCB98FB7AFAF8979248C36F08684C3BB8A; IL2CPP_EXTERN_C String_t* _stringLiteral4B35BE0F7818DF6954737AB957F691EB72A389D2; IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; IL2CPP_EXTERN_C String_t* _stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573; IL2CPP_EXTERN_C String_t* _stringLiteral4EE7F9F6F091866B32663BB85C3E9589E6A0D50E; IL2CPP_EXTERN_C String_t* _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4; IL2CPP_EXTERN_C String_t* _stringLiteral5006ED0248A019713B762563076292379DAF07B4; IL2CPP_EXTERN_C String_t* _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F; IL2CPP_EXTERN_C String_t* _stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6; IL2CPP_EXTERN_C String_t* _stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59; IL2CPP_EXTERN_C String_t* _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F; IL2CPP_EXTERN_C String_t* _stringLiteral520AC5A5E2EF375F995F93F5918F257B8FAF931D; IL2CPP_EXTERN_C String_t* _stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD; IL2CPP_EXTERN_C String_t* _stringLiteral532C67FE1B5AFAE15D2D08FBA7A78DE0F63CC4B5; IL2CPP_EXTERN_C String_t* _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6; IL2CPP_EXTERN_C String_t* _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787; IL2CPP_EXTERN_C String_t* _stringLiteral54D418B5B42E9B96FD52173E32F2031D880B8C46; IL2CPP_EXTERN_C String_t* _stringLiteral54F697A1FF421E46F37022813A88D0937A82090C; IL2CPP_EXTERN_C String_t* _stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371; IL2CPP_EXTERN_C String_t* _stringLiteral56B71E89FB1079CAAADEFD0889E9A22E8B0560E3; IL2CPP_EXTERN_C String_t* _stringLiteral58198E1B107E9130D8D66259C1E5FDCA0B9AF5A0; IL2CPP_EXTERN_C String_t* _stringLiteral587CAF0E2EADCED18EC63C9F5DCB6EB925840F59; IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; IL2CPP_EXTERN_C String_t* _stringLiteral5A7BD4149D0D34D3EC86181CDAB1CB8DD3F441D7; IL2CPP_EXTERN_C String_t* _stringLiteral5B86F346A69763593C28460072B23948C6DEC48A; IL2CPP_EXTERN_C String_t* _stringLiteral5BA93C9DB0CFF93F52B521D7420E43F6EDA2784F; IL2CPP_EXTERN_C String_t* _stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20; IL2CPP_EXTERN_C String_t* _stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02; IL2CPP_EXTERN_C String_t* _stringLiteral5D62DB9F1221432B4705D0AA11A52FAB86E72F72; IL2CPP_EXTERN_C String_t* _stringLiteral5E5C4B3CD84D07CDDD5F796A0ED208357AE2B291; IL2CPP_EXTERN_C String_t* _stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992; IL2CPP_EXTERN_C String_t* _stringLiteral61E97FC629B02A33804B57C172EC3E592ED0AC45; IL2CPP_EXTERN_C String_t* _stringLiteral62FB1585FD37A03B137AFEEEDAADA345F5537A00; IL2CPP_EXTERN_C String_t* _stringLiteral63421775BF8EBC09027CFFC40F85F93CF0EC57EA; IL2CPP_EXTERN_C String_t* _stringLiteral638518959E22A221840EC2702E630739E7C894A7; IL2CPP_EXTERN_C String_t* _stringLiteral6487A22F4D04C78C7FCE5351001A23F780A2376D; IL2CPP_EXTERN_C String_t* _stringLiteral649513493BFCCAC803D0510272A0959554FDCC1D; IL2CPP_EXTERN_C String_t* _stringLiteral64F61EC8D3BCC739D1468635A136D8F9A052B539; IL2CPP_EXTERN_C String_t* _stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85; IL2CPP_EXTERN_C String_t* _stringLiteral67BBF11A3239F8FE8171FEE7FA8B76D4160D696E; IL2CPP_EXTERN_C String_t* _stringLiteral68962AA7A0A67FFB670D647651DFF6FCA01916DC; IL2CPP_EXTERN_C String_t* _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00; IL2CPP_EXTERN_C String_t* _stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E; IL2CPP_EXTERN_C String_t* _stringLiteral69766F02FB09CD43FABB15BE9645941918840347; IL2CPP_EXTERN_C String_t* _stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF; IL2CPP_EXTERN_C String_t* _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272; IL2CPP_EXTERN_C String_t* _stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A; IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C; IL2CPP_EXTERN_C String_t* _stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD; IL2CPP_EXTERN_C String_t* _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603; IL2CPP_EXTERN_C String_t* _stringLiteral6D2279C3ECA84EC66A200D8092FAC2AE76692E6F; IL2CPP_EXTERN_C String_t* _stringLiteral6D57B527E7613982252D681B40F03DFBEC803607; IL2CPP_EXTERN_C String_t* _stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E; IL2CPP_EXTERN_C String_t* _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19; IL2CPP_EXTERN_C String_t* _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F; IL2CPP_EXTERN_C String_t* _stringLiteral6E73877D3AA13493BA01F49A10B5A30CE83306E5; IL2CPP_EXTERN_C String_t* _stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C; IL2CPP_EXTERN_C String_t* _stringLiteral71B0805D942E320B28CD4E33784092B71CF4914F; IL2CPP_EXTERN_C String_t* _stringLiteral726807A56BF9D4443B427982301C16E669EFB30A; IL2CPP_EXTERN_C String_t* _stringLiteral7484F2EE547B8EFBE7C40054E81DCCFDA1946FC2; IL2CPP_EXTERN_C String_t* _stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285; IL2CPP_EXTERN_C String_t* _stringLiteral758F870D25D935A22E7B6F601A5D67252C7D24A1; IL2CPP_EXTERN_C String_t* _stringLiteral75EA75BBC43C03B2DD69090F5F554278D5BA0FFF; IL2CPP_EXTERN_C String_t* _stringLiteral76031DDF92450BA52C1E3945097079807A9065C2; IL2CPP_EXTERN_C String_t* _stringLiteral764C1CDCDDB924E02A85EDBA8640D467D06A6FA4; IL2CPP_EXTERN_C String_t* _stringLiteral76BDE391F8E7164AE2286DF1C9A661FDC5CD88A8; IL2CPP_EXTERN_C String_t* _stringLiteral770BCC70D6014E87ECE237202D721242936CA178; IL2CPP_EXTERN_C String_t* _stringLiteral786CA434663C378B4905D10A07443F2672AFD85C; IL2CPP_EXTERN_C String_t* _stringLiteral79B5F16116B55D562F8C8AAC5999A42980B75EF9; IL2CPP_EXTERN_C String_t* _stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE; IL2CPP_EXTERN_C String_t* _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3; IL2CPP_EXTERN_C String_t* _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD; IL2CPP_EXTERN_C String_t* _stringLiteral7E746D340667E415DE67844CA297722F073C4EB5; IL2CPP_EXTERN_C String_t* _stringLiteral7E9E8E82E00EC8A8E359F0917FB928F553C24E27; IL2CPP_EXTERN_C String_t* _stringLiteral7FBB727DB4B2B6715B092505673CB5922A0D63A8; IL2CPP_EXTERN_C String_t* _stringLiteral802D7D2166FA45354A05B0C0A5AD3C91B046F81E; IL2CPP_EXTERN_C String_t* _stringLiteral81301F243A0BAA95EC5A705A322B7F68C28C1089; IL2CPP_EXTERN_C String_t* _stringLiteral8137F03571D8568066E24A475F203D3C31D3C08C; IL2CPP_EXTERN_C String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E; IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; IL2CPP_EXTERN_C String_t* _stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34; IL2CPP_EXTERN_C String_t* _stringLiteral84CE8379C5F1EA339C5FB691E5BB4A06E10DC5FD; IL2CPP_EXTERN_C String_t* _stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA; IL2CPP_EXTERN_C String_t* _stringLiteral855DCB454D8D2C61BA069AEC5ADB73CCA1157E46; IL2CPP_EXTERN_C String_t* _stringLiteral8705DFCA077C41F08BF9E2BF4473510D785B14E3; IL2CPP_EXTERN_C String_t* _stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A; IL2CPP_EXTERN_C String_t* _stringLiteral87451A61D9F03361D19AA4D07B3469C8F4CC5781; IL2CPP_EXTERN_C String_t* _stringLiteral88CCFACD3FCBE4CCCD76B3480CC051D875ED4591; IL2CPP_EXTERN_C String_t* _stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C; IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; IL2CPP_EXTERN_C String_t* _stringLiteral8A3D3E1BBAE5638D4FAC221C64332EF3B633E689; IL2CPP_EXTERN_C String_t* _stringLiteral8CCFD0DE77C0784114B412169491697DF81B4CCD; IL2CPP_EXTERN_C String_t* _stringLiteral8FDB330FBE0032F38CF465E208ABC5438BC1C01C; IL2CPP_EXTERN_C String_t* _stringLiteral902685EF3692B3767BC81B2C5518F1DB33AF2498; IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; IL2CPP_EXTERN_C String_t* _stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9; IL2CPP_EXTERN_C String_t* _stringLiteral9300964C68712BA23F34ACEF429540225754B632; IL2CPP_EXTERN_C String_t* _stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC; IL2CPP_EXTERN_C String_t* _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C; IL2CPP_EXTERN_C String_t* _stringLiteral9377E60A3330B8DCBA93D22F00E784D5E303A292; IL2CPP_EXTERN_C String_t* _stringLiteral9483BDD3D2B438AB667226C5A0CD8CC30D9BAFB2; IL2CPP_EXTERN_C String_t* _stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066; IL2CPP_EXTERN_C String_t* _stringLiteral960922F9F8E21682ABFD2C7FBBD3F8CBC3CEA2B0; IL2CPP_EXTERN_C String_t* _stringLiteral96E8AEE74A6EC7CE65523A64AD67939E0E62C9D9; IL2CPP_EXTERN_C String_t* _stringLiteral97F27E5AD8A8005896BEAB070988EA16E76BD0CC; IL2CPP_EXTERN_C String_t* _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C; IL2CPP_EXTERN_C String_t* _stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151; IL2CPP_EXTERN_C String_t* _stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44; IL2CPP_EXTERN_C String_t* _stringLiteral99A83968733ADFF557210E1C8B53ACC558341FB8; IL2CPP_EXTERN_C String_t* _stringLiteral99D088ED5F1BAC91ECED72079B3134C8258E1646; IL2CPP_EXTERN_C String_t* _stringLiteral9AB0BD9A6126EE4B9D7538D5C6CBA7AA587F31ED; IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; IL2CPP_EXTERN_C String_t* _stringLiteral9DA0D1E72ACE723870EBF4B28BFA1CCF33B6DDE9; IL2CPP_EXTERN_C String_t* _stringLiteral9ECB2E572CFDA900F36B37BE28189AFF0757C5D3; IL2CPP_EXTERN_C String_t* _stringLiteral9EDD575E287A64ED65D0EA6DDFEC128ADD02BAC0; IL2CPP_EXTERN_C String_t* _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313; IL2CPP_EXTERN_C String_t* _stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C; IL2CPP_EXTERN_C String_t* _stringLiteralA0BBE710D1F301E54FA309EBEACF48130A9ECD04; IL2CPP_EXTERN_C String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3; IL2CPP_EXTERN_C String_t* _stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198; IL2CPP_EXTERN_C String_t* _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2; IL2CPP_EXTERN_C String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; IL2CPP_EXTERN_C String_t* _stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8; IL2CPP_EXTERN_C String_t* _stringLiteralA43AA2B3CCE8548368BBD79297BC5714364EA31A; IL2CPP_EXTERN_C String_t* _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545; IL2CPP_EXTERN_C String_t* _stringLiteralA6468CA2C2E3400246432BD38A3C2294225B56C4; IL2CPP_EXTERN_C String_t* _stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5; IL2CPP_EXTERN_C String_t* _stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB; IL2CPP_EXTERN_C String_t* _stringLiteralAAB90DFE8C6F152A4FB071F5F4F9DF804626E6AB; IL2CPP_EXTERN_C String_t* _stringLiteralAB3DFA7772E82AEBC308D16B390DC7A630733224; IL2CPP_EXTERN_C String_t* _stringLiteralAD5B8BD8A78CB6141D85230014C26A676FF8027A; IL2CPP_EXTERN_C String_t* _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2; IL2CPP_EXTERN_C String_t* _stringLiteralAF2B0CF212656E3065ABF0952C35E2535C594035; IL2CPP_EXTERN_C String_t* _stringLiteralAF349E9E9FCE74123ED62EF0042ACD5FFEB3DC9B; IL2CPP_EXTERN_C String_t* _stringLiteralB01F1CC7133E621E07A9C1B376C56F8218636E39; IL2CPP_EXTERN_C String_t* _stringLiteralB07EE427B13FDA8C265DAACE035CBEF440CB3F7B; IL2CPP_EXTERN_C String_t* _stringLiteralB34B0A02B98367D52DCDC8CC3635FF5A27611AF6; IL2CPP_EXTERN_C String_t* _stringLiteralB36FB26CFC4E8B0E76B4BEA00718F8C941751224; IL2CPP_EXTERN_C String_t* _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035; IL2CPP_EXTERN_C String_t* _stringLiteralB3B32B341E40B76CC0EF6CAC3FFCE579FE71E2EB; IL2CPP_EXTERN_C String_t* _stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B; IL2CPP_EXTERN_C String_t* _stringLiteralB4EBFE34D0FA97F0DD2BB1234FAD8F59805F4E8D; IL2CPP_EXTERN_C String_t* _stringLiteralB4ED19F6FF6156C7E179A990BF73D02E8D5DF1FD; IL2CPP_EXTERN_C String_t* _stringLiteralB58F6A540CFAC225528E9A1911C79E6FB7C59D11; IL2CPP_EXTERN_C String_t* _stringLiteralB62500F9D8FC0619B393A42DBEC55BB8483ABC57; IL2CPP_EXTERN_C String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C; IL2CPP_EXTERN_C String_t* _stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0; IL2CPP_EXTERN_C String_t* _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5; IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; IL2CPP_EXTERN_C String_t* _stringLiteralB9A1EDEC2BC6B07157F69A2748CCE3DF4AA46053; IL2CPP_EXTERN_C String_t* _stringLiteralBA607182F71CA659F7E8466B7873570E4FA6634B; IL2CPP_EXTERN_C String_t* _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895; IL2CPP_EXTERN_C String_t* _stringLiteralBB1EEAB40131BAA9BA8E8A7AE56779A8FA7C7A5A; IL2CPP_EXTERN_C String_t* _stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7; IL2CPP_EXTERN_C String_t* _stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F; IL2CPP_EXTERN_C String_t* _stringLiteralBBFDD5D9E202955BADC46A0444FEDB1D583D1C04; IL2CPP_EXTERN_C String_t* _stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88; IL2CPP_EXTERN_C String_t* _stringLiteralBCE467B40131291712BF0D977BF396E4DE31975E; IL2CPP_EXTERN_C String_t* _stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6; IL2CPP_EXTERN_C String_t* _stringLiteralBF0A2FEAAD70F387CF5BD8F8ECE69E85A8B9FC40; IL2CPP_EXTERN_C String_t* _stringLiteralC032ADC1FF629C9B66F22749AD667E6BEADF144B; IL2CPP_EXTERN_C String_t* _stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5; IL2CPP_EXTERN_C String_t* _stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2; IL2CPP_EXTERN_C String_t* _stringLiteralC1667A6DBF1A3F8146908B8EBC18AF7CDEC1FEFD; IL2CPP_EXTERN_C String_t* _stringLiteralC1FC191BD74A6F60CD1113917CCCF33F6EB445B9; IL2CPP_EXTERN_C String_t* _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A; IL2CPP_EXTERN_C String_t* _stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B; IL2CPP_EXTERN_C String_t* _stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036; IL2CPP_EXTERN_C String_t* _stringLiteralC525149EB1C2E0B57FE563AD7B4D9E45A646784F; IL2CPP_EXTERN_C String_t* _stringLiteralC6C4B89B8CCF0B9BD80A8AFD68F7708852262CAC; IL2CPP_EXTERN_C String_t* _stringLiteralC700DC1C6745C39929C4B490A50F1EF4B6DE67F1; IL2CPP_EXTERN_C String_t* _stringLiteralC8AF2BF24633B03752832E2B88FEEAA0E0308892; IL2CPP_EXTERN_C String_t* _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019; IL2CPP_EXTERN_C String_t* _stringLiteralC9EE751B234DF9F0CB1CEF58C3AFAABDFB33981E; IL2CPP_EXTERN_C String_t* _stringLiteralCA551563A6650D643771A8BD5C569178A0E5DF92; IL2CPP_EXTERN_C String_t* _stringLiteralCBB9EF8F60C063233AE07733AA2EEB5BAC42813F; IL2CPP_EXTERN_C String_t* _stringLiteralCD6B5E37A480F90D8313A8EBA22F2DBEE9A15F7B; IL2CPP_EXTERN_C String_t* _stringLiteralCE7B9CC2EBDA4298D48848DB493F475D87267538; IL2CPP_EXTERN_C String_t* _stringLiteralCEBF554E26A3CEE7CC46716C76105474CD19B3E4; IL2CPP_EXTERN_C String_t* _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77; IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9; IL2CPP_EXTERN_C String_t* _stringLiteralD13D71939A7725E8BBC03792041441B834A48F4F; IL2CPP_EXTERN_C String_t* _stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A; IL2CPP_EXTERN_C String_t* _stringLiteralD374C5B32FDB6AB9A377C21A1496F0AE025350E2; IL2CPP_EXTERN_C String_t* _stringLiteralD37BECCE4F8DB47224B5402BF70365AA2335C425; IL2CPP_EXTERN_C String_t* _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B; IL2CPP_EXTERN_C String_t* _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46; IL2CPP_EXTERN_C String_t* _stringLiteralD414CE398A897E5D390F2C8E42E198F74FC13AA9; IL2CPP_EXTERN_C String_t* _stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E; IL2CPP_EXTERN_C String_t* _stringLiteralD4D60962C564FF4E5AB47355C2F68221D614AFC0; IL2CPP_EXTERN_C String_t* _stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8; IL2CPP_EXTERN_C String_t* _stringLiteralD6CBE7E38E09D40AC8221B0DDE0FB2E220247F7B; IL2CPP_EXTERN_C String_t* _stringLiteralD6D9970C3066A54835E00256D44ECD8153325A03; IL2CPP_EXTERN_C String_t* _stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C; IL2CPP_EXTERN_C String_t* _stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801; IL2CPP_EXTERN_C String_t* _stringLiteralD9907347838493529221F1324618B317C4C431B3; IL2CPP_EXTERN_C String_t* _stringLiteralD9977C4ABA9BD29906A95DAC37967CFF847F0EC5; IL2CPP_EXTERN_C String_t* _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C; IL2CPP_EXTERN_C String_t* _stringLiteralD9BBFE341E231DD531A559F974E1015BCC9E6DC1; IL2CPP_EXTERN_C String_t* _stringLiteralD9FBDDF2CBB921BE69D65F49DDB93CB5E87CC4B4; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDAE50AB6C9EE2D4025C53458EFFED3E935ECDF57; IL2CPP_EXTERN_C String_t* _stringLiteralDC7F6C369E736C6A7FA89F29B4BCEA35B31E7D49; IL2CPP_EXTERN_C String_t* _stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D; IL2CPP_EXTERN_C String_t* _stringLiteralDDECD1B789B8A6D1B22C1C2B6E877A82A395F718; IL2CPP_EXTERN_C String_t* _stringLiteralDE44976BA6EF44944D75FEF09EA6237C375988CC; IL2CPP_EXTERN_C String_t* _stringLiteralDEAE2CA6EAEA43A091674E31DD8E8D250C14C844; IL2CPP_EXTERN_C String_t* _stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56; IL2CPP_EXTERN_C String_t* _stringLiteralDFE109EFC8BE01B7D637E36D004DD36AD98A1201; IL2CPP_EXTERN_C String_t* _stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF; IL2CPP_EXTERN_C String_t* _stringLiteralE0754E6E0A769DC094BEE20EE9DBD4019B26EF24; IL2CPP_EXTERN_C String_t* _stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E; IL2CPP_EXTERN_C String_t* _stringLiteralE11557A88106E7FE5BB613921C6F637BCCD31989; IL2CPP_EXTERN_C String_t* _stringLiteralE19A13294CD96A9A0821CDA57FD3346B2CDFFB6C; IL2CPP_EXTERN_C String_t* _stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68; IL2CPP_EXTERN_C String_t* _stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E; IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; IL2CPP_EXTERN_C String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497; IL2CPP_EXTERN_C String_t* _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11; IL2CPP_EXTERN_C String_t* _stringLiteralE69F20E9F683920D3FB4329ABD951E878B1F9372; IL2CPP_EXTERN_C String_t* _stringLiteralE758F73AF56E73D52D2255C99EF438305E8533BB; IL2CPP_EXTERN_C String_t* _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C; IL2CPP_EXTERN_C String_t* _stringLiteralEC018D9B2AE22D92E0692846B79930726940CF87; IL2CPP_EXTERN_C String_t* _stringLiteralEC87FACA4CBAD909219BBCEA9DBBE370A9F8C690; IL2CPP_EXTERN_C String_t* _stringLiteralECDCCD0C81DE0F1EC6BDFC3DA95A27B4829ED79F; IL2CPP_EXTERN_C String_t* _stringLiteralECE29405C121243BF01F6D1D079D72CB8DF9CDD9; IL2CPP_EXTERN_C String_t* _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661; IL2CPP_EXTERN_C String_t* _stringLiteralEE685442D8365096427B877EAA72FAE0ACF0E4AD; IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; IL2CPP_EXTERN_C String_t* _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39; IL2CPP_EXTERN_C String_t* _stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258; IL2CPP_EXTERN_C String_t* _stringLiteralF070C8E067F3E2E92524DE3089ACBBEFC81CD862; IL2CPP_EXTERN_C String_t* _stringLiteralF0FD5DE40D5624DD5531FCD827C27F5C7421A6CC; IL2CPP_EXTERN_C String_t* _stringLiteralF127B44E6D56B2F84FFDB105466CF4BAAABAB2DE; IL2CPP_EXTERN_C String_t* _stringLiteralF153A28687D6800CAAD6007F5537CB4C0AC0B90B; IL2CPP_EXTERN_C String_t* _stringLiteralF157520F6E4410E060D49EA7EA8D45E29708266E; IL2CPP_EXTERN_C String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F; IL2CPP_EXTERN_C String_t* _stringLiteralF22E0B86040D26623EC71DB229693B313EEFB5B7; IL2CPP_EXTERN_C String_t* _stringLiteralF25B700ED9F092123A43ACB205A6869342CF9DD6; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralF36D79A7BB78E70D214739C23AF51CC2649218FE; IL2CPP_EXTERN_C String_t* _stringLiteralF38EA64458B7FBE78C409B9159F322E075AF0B50; IL2CPP_EXTERN_C String_t* _stringLiteralF39D6C50975466C0E53549F08B2F563B22FE1072; IL2CPP_EXTERN_C String_t* _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170; IL2CPP_EXTERN_C String_t* _stringLiteralF7F1997C6CD1AA051279675742272A956E7DB628; IL2CPP_EXTERN_C String_t* _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15; IL2CPP_EXTERN_C String_t* _stringLiteralFAE39DA7DB252B2371F75685351203E549E5C055; IL2CPP_EXTERN_C String_t* _stringLiteralFB157325FE225946421F77EC1F8BF9F7F98E81B9; IL2CPP_EXTERN_C String_t* _stringLiteralFB360F9C09AC8C5EDB2F18BE5DE4E80EA4C430D0; IL2CPP_EXTERN_C String_t* _stringLiteralFC288D7B83A87B0DDC24679D162D7350601C984D; IL2CPP_EXTERN_C String_t* _stringLiteralFC8E1F22C45AAC5385026D543B9E31E719C612D8; IL2CPP_EXTERN_C String_t* _stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B; IL2CPP_EXTERN_C String_t* _stringLiteralFEB6CEE0B6900775589FE0E64A68CFBDE2B0A3EE; IL2CPP_EXTERN_C String_t* _stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3; IL2CPP_EXTERN_C String_t* _stringLiteralFFAAC6B1A9A0C24D7EF00A22A84CC2405882AADF; IL2CPP_EXTERN_C String_t* _stringLiteralFFE688A5014306635CD935F7169187B7DB387CD5; IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetNames_m9ECDF3E80A7A31075D7D2B2B362DDCC6150BC15C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* EventIgnoreAttribute_tB6631ED83A9E76708A9D3B0E9B945A4B4953F67A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Exception_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TraceLoggingTypeInfo_1_tDB0DA2DB310802F94B0A0088822973F4FC8CE2EC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; IL2CPP_EXTERN_C const uint32_t Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem_get_BodyName_m12BF8EBE30C6F2F7A80610C46136A1923729D3ED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem_get_HeaderName_m824FBBF5E01F47605BC8C84D6CDF21C945640C6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem_get_WebName_mB509120CBD0AB217D8F390CBD54697B6657D3DB0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DuplicateWaitObjectException_get_DuplicateWaitObjectMessage_m8A9448044304CE39349EC6C7C6F09858CE302423_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetNames_m9ECDF3E80A7A31075D7D2B2B362DDCC6150BC15C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294mscorlib4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_com_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_pinvoke_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBmscorlib4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE_MetadataUsageId; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ; struct Exception_t;; struct Exception_t_marshaled_com; struct Exception_t_marshaled_com;; struct Exception_t_marshaled_pinvoke; struct Exception_t_marshaled_pinvoke;; struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;; struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB; struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC; struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31; struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // Mono.Globalization.Unicode.MSCompatUnicodeTable struct MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B : public RuntimeObject { public: public: }; struct MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields { public: // System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::MaxExpansionLength int32_t ___MaxExpansionLength_0; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::ignorableFlags uint8_t* ___ignorableFlags_1; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::categories uint8_t* ___categories_2; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level1 uint8_t* ___level1_3; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level2 uint8_t* ___level2_4; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level3 uint8_t* ___level3_5; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHScategory uint8_t* ___cjkCHScategory_6; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTcategory uint8_t* ___cjkCHTcategory_7; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAcategory uint8_t* ___cjkJAcategory_8; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOcategory uint8_t* ___cjkKOcategory_9; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHSlv1 uint8_t* ___cjkCHSlv1_10; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTlv1 uint8_t* ___cjkCHTlv1_11; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAlv1 uint8_t* ___cjkJAlv1_12; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv1 uint8_t* ___cjkKOlv1_13; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv2 uint8_t* ___cjkKOlv2_14; // System.Char[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringArr CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___tailoringArr_15; // Mono.Globalization.Unicode.TailoringInfo[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringInfos TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* ___tailoringInfos_16; // System.Object Mono.Globalization.Unicode.MSCompatUnicodeTable::forLock RuntimeObject * ___forLock_17; // System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::isReady bool ___isReady_18; public: inline static int32_t get_offset_of_MaxExpansionLength_0() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___MaxExpansionLength_0)); } inline int32_t get_MaxExpansionLength_0() const { return ___MaxExpansionLength_0; } inline int32_t* get_address_of_MaxExpansionLength_0() { return &___MaxExpansionLength_0; } inline void set_MaxExpansionLength_0(int32_t value) { ___MaxExpansionLength_0 = value; } inline static int32_t get_offset_of_ignorableFlags_1() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___ignorableFlags_1)); } inline uint8_t* get_ignorableFlags_1() const { return ___ignorableFlags_1; } inline uint8_t** get_address_of_ignorableFlags_1() { return &___ignorableFlags_1; } inline void set_ignorableFlags_1(uint8_t* value) { ___ignorableFlags_1 = value; } inline static int32_t get_offset_of_categories_2() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___categories_2)); } inline uint8_t* get_categories_2() const { return ___categories_2; } inline uint8_t** get_address_of_categories_2() { return &___categories_2; } inline void set_categories_2(uint8_t* value) { ___categories_2 = value; } inline static int32_t get_offset_of_level1_3() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level1_3)); } inline uint8_t* get_level1_3() const { return ___level1_3; } inline uint8_t** get_address_of_level1_3() { return &___level1_3; } inline void set_level1_3(uint8_t* value) { ___level1_3 = value; } inline static int32_t get_offset_of_level2_4() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level2_4)); } inline uint8_t* get_level2_4() const { return ___level2_4; } inline uint8_t** get_address_of_level2_4() { return &___level2_4; } inline void set_level2_4(uint8_t* value) { ___level2_4 = value; } inline static int32_t get_offset_of_level3_5() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level3_5)); } inline uint8_t* get_level3_5() const { return ___level3_5; } inline uint8_t** get_address_of_level3_5() { return &___level3_5; } inline void set_level3_5(uint8_t* value) { ___level3_5 = value; } inline static int32_t get_offset_of_cjkCHScategory_6() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHScategory_6)); } inline uint8_t* get_cjkCHScategory_6() const { return ___cjkCHScategory_6; } inline uint8_t** get_address_of_cjkCHScategory_6() { return &___cjkCHScategory_6; } inline void set_cjkCHScategory_6(uint8_t* value) { ___cjkCHScategory_6 = value; } inline static int32_t get_offset_of_cjkCHTcategory_7() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHTcategory_7)); } inline uint8_t* get_cjkCHTcategory_7() const { return ___cjkCHTcategory_7; } inline uint8_t** get_address_of_cjkCHTcategory_7() { return &___cjkCHTcategory_7; } inline void set_cjkCHTcategory_7(uint8_t* value) { ___cjkCHTcategory_7 = value; } inline static int32_t get_offset_of_cjkJAcategory_8() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkJAcategory_8)); } inline uint8_t* get_cjkJAcategory_8() const { return ___cjkJAcategory_8; } inline uint8_t** get_address_of_cjkJAcategory_8() { return &___cjkJAcategory_8; } inline void set_cjkJAcategory_8(uint8_t* value) { ___cjkJAcategory_8 = value; } inline static int32_t get_offset_of_cjkKOcategory_9() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOcategory_9)); } inline uint8_t* get_cjkKOcategory_9() const { return ___cjkKOcategory_9; } inline uint8_t** get_address_of_cjkKOcategory_9() { return &___cjkKOcategory_9; } inline void set_cjkKOcategory_9(uint8_t* value) { ___cjkKOcategory_9 = value; } inline static int32_t get_offset_of_cjkCHSlv1_10() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHSlv1_10)); } inline uint8_t* get_cjkCHSlv1_10() const { return ___cjkCHSlv1_10; } inline uint8_t** get_address_of_cjkCHSlv1_10() { return &___cjkCHSlv1_10; } inline void set_cjkCHSlv1_10(uint8_t* value) { ___cjkCHSlv1_10 = value; } inline static int32_t get_offset_of_cjkCHTlv1_11() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHTlv1_11)); } inline uint8_t* get_cjkCHTlv1_11() const { return ___cjkCHTlv1_11; } inline uint8_t** get_address_of_cjkCHTlv1_11() { return &___cjkCHTlv1_11; } inline void set_cjkCHTlv1_11(uint8_t* value) { ___cjkCHTlv1_11 = value; } inline static int32_t get_offset_of_cjkJAlv1_12() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkJAlv1_12)); } inline uint8_t* get_cjkJAlv1_12() const { return ___cjkJAlv1_12; } inline uint8_t** get_address_of_cjkJAlv1_12() { return &___cjkJAlv1_12; } inline void set_cjkJAlv1_12(uint8_t* value) { ___cjkJAlv1_12 = value; } inline static int32_t get_offset_of_cjkKOlv1_13() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOlv1_13)); } inline uint8_t* get_cjkKOlv1_13() const { return ___cjkKOlv1_13; } inline uint8_t** get_address_of_cjkKOlv1_13() { return &___cjkKOlv1_13; } inline void set_cjkKOlv1_13(uint8_t* value) { ___cjkKOlv1_13 = value; } inline static int32_t get_offset_of_cjkKOlv2_14() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOlv2_14)); } inline uint8_t* get_cjkKOlv2_14() const { return ___cjkKOlv2_14; } inline uint8_t** get_address_of_cjkKOlv2_14() { return &___cjkKOlv2_14; } inline void set_cjkKOlv2_14(uint8_t* value) { ___cjkKOlv2_14 = value; } inline static int32_t get_offset_of_tailoringArr_15() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___tailoringArr_15)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_tailoringArr_15() const { return ___tailoringArr_15; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_tailoringArr_15() { return &___tailoringArr_15; } inline void set_tailoringArr_15(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___tailoringArr_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___tailoringArr_15), (void*)value); } inline static int32_t get_offset_of_tailoringInfos_16() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___tailoringInfos_16)); } inline TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* get_tailoringInfos_16() const { return ___tailoringInfos_16; } inline TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573** get_address_of_tailoringInfos_16() { return &___tailoringInfos_16; } inline void set_tailoringInfos_16(TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* value) { ___tailoringInfos_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___tailoringInfos_16), (void*)value); } inline static int32_t get_offset_of_forLock_17() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___forLock_17)); } inline RuntimeObject * get_forLock_17() const { return ___forLock_17; } inline RuntimeObject ** get_address_of_forLock_17() { return &___forLock_17; } inline void set_forLock_17(RuntimeObject * value) { ___forLock_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___forLock_17), (void*)value); } inline static int32_t get_offset_of_isReady_18() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___isReady_18)); } inline bool get_isReady_18() const { return ___isReady_18; } inline bool* get_address_of_isReady_18() { return &___isReady_18; } inline void set_isReady_18(bool value) { ___isReady_18 = value; } }; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 : public RuntimeObject { public: // System.Globalization.TextInfo Mono.Globalization.Unicode.SimpleCollator::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_2; // Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkIndexer CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___cjkIndexer_3; // Mono.Globalization.Unicode.Contraction[] Mono.Globalization.Unicode.SimpleCollator::contractions ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* ___contractions_4; // Mono.Globalization.Unicode.Level2Map[] Mono.Globalization.Unicode.SimpleCollator::level2Maps Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* ___level2Maps_5; // System.Byte[] Mono.Globalization.Unicode.SimpleCollator::unsafeFlags ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___unsafeFlags_6; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkCatTable uint8_t* ___cjkCatTable_7; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv1Table uint8_t* ___cjkLv1Table_8; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv2Table uint8_t* ___cjkLv2Table_9; // Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkLv2Indexer CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___cjkLv2Indexer_10; // System.Int32 Mono.Globalization.Unicode.SimpleCollator::lcid int32_t ___lcid_11; // System.Boolean Mono.Globalization.Unicode.SimpleCollator::frenchSort bool ___frenchSort_12; public: inline static int32_t get_offset_of_textInfo_2() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___textInfo_2)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_2() const { return ___textInfo_2; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_2() { return &___textInfo_2; } inline void set_textInfo_2(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_2), (void*)value); } inline static int32_t get_offset_of_cjkIndexer_3() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkIndexer_3)); } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_cjkIndexer_3() const { return ___cjkIndexer_3; } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_cjkIndexer_3() { return &___cjkIndexer_3; } inline void set_cjkIndexer_3(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value) { ___cjkIndexer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___cjkIndexer_3), (void*)value); } inline static int32_t get_offset_of_contractions_4() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___contractions_4)); } inline ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* get_contractions_4() const { return ___contractions_4; } inline ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B** get_address_of_contractions_4() { return &___contractions_4; } inline void set_contractions_4(ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* value) { ___contractions_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___contractions_4), (void*)value); } inline static int32_t get_offset_of_level2Maps_5() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___level2Maps_5)); } inline Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* get_level2Maps_5() const { return ___level2Maps_5; } inline Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28** get_address_of_level2Maps_5() { return &___level2Maps_5; } inline void set_level2Maps_5(Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* value) { ___level2Maps_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___level2Maps_5), (void*)value); } inline static int32_t get_offset_of_unsafeFlags_6() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___unsafeFlags_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_unsafeFlags_6() const { return ___unsafeFlags_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_unsafeFlags_6() { return &___unsafeFlags_6; } inline void set_unsafeFlags_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___unsafeFlags_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___unsafeFlags_6), (void*)value); } inline static int32_t get_offset_of_cjkCatTable_7() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkCatTable_7)); } inline uint8_t* get_cjkCatTable_7() const { return ___cjkCatTable_7; } inline uint8_t** get_address_of_cjkCatTable_7() { return &___cjkCatTable_7; } inline void set_cjkCatTable_7(uint8_t* value) { ___cjkCatTable_7 = value; } inline static int32_t get_offset_of_cjkLv1Table_8() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv1Table_8)); } inline uint8_t* get_cjkLv1Table_8() const { return ___cjkLv1Table_8; } inline uint8_t** get_address_of_cjkLv1Table_8() { return &___cjkLv1Table_8; } inline void set_cjkLv1Table_8(uint8_t* value) { ___cjkLv1Table_8 = value; } inline static int32_t get_offset_of_cjkLv2Table_9() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv2Table_9)); } inline uint8_t* get_cjkLv2Table_9() const { return ___cjkLv2Table_9; } inline uint8_t** get_address_of_cjkLv2Table_9() { return &___cjkLv2Table_9; } inline void set_cjkLv2Table_9(uint8_t* value) { ___cjkLv2Table_9 = value; } inline static int32_t get_offset_of_cjkLv2Indexer_10() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv2Indexer_10)); } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_cjkLv2Indexer_10() const { return ___cjkLv2Indexer_10; } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_cjkLv2Indexer_10() { return &___cjkLv2Indexer_10; } inline void set_cjkLv2Indexer_10(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value) { ___cjkLv2Indexer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___cjkLv2Indexer_10), (void*)value); } inline static int32_t get_offset_of_lcid_11() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___lcid_11)); } inline int32_t get_lcid_11() const { return ___lcid_11; } inline int32_t* get_address_of_lcid_11() { return &___lcid_11; } inline void set_lcid_11(int32_t value) { ___lcid_11 = value; } inline static int32_t get_offset_of_frenchSort_12() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___frenchSort_12)); } inline bool get_frenchSort_12() const { return ___frenchSort_12; } inline bool* get_address_of_frenchSort_12() { return &___frenchSort_12; } inline void set_frenchSort_12(bool value) { ___frenchSort_12 = value; } }; struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields { public: // System.Boolean Mono.Globalization.Unicode.SimpleCollator::QuickCheckDisabled bool ___QuickCheckDisabled_0; // Mono.Globalization.Unicode.SimpleCollator Mono.Globalization.Unicode.SimpleCollator::invariant SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___invariant_1; public: inline static int32_t get_offset_of_QuickCheckDisabled_0() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields, ___QuickCheckDisabled_0)); } inline bool get_QuickCheckDisabled_0() const { return ___QuickCheckDisabled_0; } inline bool* get_address_of_QuickCheckDisabled_0() { return &___QuickCheckDisabled_0; } inline void set_QuickCheckDisabled_0(bool value) { ___QuickCheckDisabled_0 = value; } inline static int32_t get_offset_of_invariant_1() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields, ___invariant_1)); } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_invariant_1() const { return ___invariant_1; } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_invariant_1() { return &___invariant_1; } inline void set_invariant_1(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value) { ___invariant_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_1), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject { public: public: }; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.CaseInsensitiveComparer::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE, ___m_compareInfo_0)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 : public RuntimeObject { public: // System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___m_text_0; public: inline static int32_t get_offset_of_m_text_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34, ___m_text_0)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_m_text_0() const { return ___m_text_0; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_m_text_0() { return &___m_text_0; } inline void set_m_text_0(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___m_text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_text_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.String> struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 : public RuntimeObject { public: public: }; struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.UInt64> struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC : public RuntimeObject { public: public: }; struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Int32,System.String> struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F, ___dictionary_0)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9, ___dictionary_0)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.UInt64,System.String> struct KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D, ___dictionary_0)); } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.String,System.Type> struct ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC, ___dictionary_0)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___entries_1)); } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___keys_7)); } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___values_8)); } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * get_values_8() const { return ___values_8; } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___entries_1)); } inline EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___keys_7)); } inline KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___values_8)); } inline ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * get_values_8() const { return ___values_8; } inline ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>> struct Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___entries_1)); } inline EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___keys_7)); } inline KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___values_8)); } inline ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * get_values_8() const { return ___values_8; } inline ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___entries_1)); } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___keys_7)); } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___values_8)); } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * get_values_8() const { return ___values_8; } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.Type> struct Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___entries_1)); } inline EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___keys_7)); } inline KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___values_8)); } inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * get_values_8() const { return ___values_8; } inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt64,System.String> struct Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___entries_1)); } inline EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___keys_7)); } inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___values_8)); } inline ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * get_values_8() const { return ___values_8; } inline ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____items_1)); } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* get__items_1() const { return ____items_1; } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796** get_address_of__items_1() { return &____items_1; } inline void set__items_1(FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_StaticFields, ____emptyArray_5)); } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* get__emptyArray_5() const { return ____emptyArray_5; } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis> struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____items_1)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get__items_1() const { return ____items_1; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of__items_1() { return &____items_1; } inline void set__items_1(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_StaticFields, ____emptyArray_5)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get__emptyArray_5() const { return ____emptyArray_5; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Globalization.CultureInfo> struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____items_1)); } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* get__items_1() const { return ____items_1; } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31** get_address_of__items_1() { return &____items_1; } inline void set__items_1(CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_StaticFields, ____emptyArray_5)); } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* get__emptyArray_5() const { return ____emptyArray_5; } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Int32> struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____items_1)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__items_1() const { return ____items_1; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields, ____emptyArray_5)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__emptyArray_5() const { return ____emptyArray_5; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Type> struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____items_1)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__items_1() const { return ____items_1; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields, ____emptyArray_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__emptyArray_5() const { return ____emptyArray_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.UInt64> struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____items_1)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get__items_1() const { return ____items_1; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_StaticFields, ____emptyArray_5)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get__emptyArray_5() const { return ____emptyArray_5; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> struct ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value); } }; // System.CompatibilitySwitches struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject { public: public: }; struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields { public: // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4 bool ___IsAppEarlierThanSilverlight4_0; // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8 bool ___IsAppEarlierThanWindowsPhone8_1; public: inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); } inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; } inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; } inline void set_IsAppEarlierThanSilverlight4_0(bool value) { ___IsAppEarlierThanSilverlight4_0 = value; } inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); } inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; } inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; } inline void set_IsAppEarlierThanWindowsPhone8_1(bool value) { ___IsAppEarlierThanWindowsPhone8_1 = value; } }; // System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 : public RuntimeObject { public: // System.Int32 System.Diagnostics.StackFrame::ilOffset int32_t ___ilOffset_1; // System.Int32 System.Diagnostics.StackFrame::nativeOffset int32_t ___nativeOffset_2; // System.Int64 System.Diagnostics.StackFrame::methodAddress int64_t ___methodAddress_3; // System.UInt32 System.Diagnostics.StackFrame::methodIndex uint32_t ___methodIndex_4; // System.Reflection.MethodBase System.Diagnostics.StackFrame::methodBase MethodBase_t * ___methodBase_5; // System.String System.Diagnostics.StackFrame::fileName String_t* ___fileName_6; // System.Int32 System.Diagnostics.StackFrame::lineNumber int32_t ___lineNumber_7; // System.Int32 System.Diagnostics.StackFrame::columnNumber int32_t ___columnNumber_8; // System.String System.Diagnostics.StackFrame::internalMethodName String_t* ___internalMethodName_9; public: inline static int32_t get_offset_of_ilOffset_1() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___ilOffset_1)); } inline int32_t get_ilOffset_1() const { return ___ilOffset_1; } inline int32_t* get_address_of_ilOffset_1() { return &___ilOffset_1; } inline void set_ilOffset_1(int32_t value) { ___ilOffset_1 = value; } inline static int32_t get_offset_of_nativeOffset_2() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___nativeOffset_2)); } inline int32_t get_nativeOffset_2() const { return ___nativeOffset_2; } inline int32_t* get_address_of_nativeOffset_2() { return &___nativeOffset_2; } inline void set_nativeOffset_2(int32_t value) { ___nativeOffset_2 = value; } inline static int32_t get_offset_of_methodAddress_3() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodAddress_3)); } inline int64_t get_methodAddress_3() const { return ___methodAddress_3; } inline int64_t* get_address_of_methodAddress_3() { return &___methodAddress_3; } inline void set_methodAddress_3(int64_t value) { ___methodAddress_3 = value; } inline static int32_t get_offset_of_methodIndex_4() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodIndex_4)); } inline uint32_t get_methodIndex_4() const { return ___methodIndex_4; } inline uint32_t* get_address_of_methodIndex_4() { return &___methodIndex_4; } inline void set_methodIndex_4(uint32_t value) { ___methodIndex_4 = value; } inline static int32_t get_offset_of_methodBase_5() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodBase_5)); } inline MethodBase_t * get_methodBase_5() const { return ___methodBase_5; } inline MethodBase_t ** get_address_of_methodBase_5() { return &___methodBase_5; } inline void set_methodBase_5(MethodBase_t * value) { ___methodBase_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___methodBase_5), (void*)value); } inline static int32_t get_offset_of_fileName_6() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___fileName_6)); } inline String_t* get_fileName_6() const { return ___fileName_6; } inline String_t** get_address_of_fileName_6() { return &___fileName_6; } inline void set_fileName_6(String_t* value) { ___fileName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___fileName_6), (void*)value); } inline static int32_t get_offset_of_lineNumber_7() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___lineNumber_7)); } inline int32_t get_lineNumber_7() const { return ___lineNumber_7; } inline int32_t* get_address_of_lineNumber_7() { return &___lineNumber_7; } inline void set_lineNumber_7(int32_t value) { ___lineNumber_7 = value; } inline static int32_t get_offset_of_columnNumber_8() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___columnNumber_8)); } inline int32_t get_columnNumber_8() const { return ___columnNumber_8; } inline int32_t* get_address_of_columnNumber_8() { return &___columnNumber_8; } inline void set_columnNumber_8(int32_t value) { ___columnNumber_8 = value; } inline static int32_t get_offset_of_internalMethodName_9() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___internalMethodName_9)); } inline String_t* get_internalMethodName_9() const { return ___internalMethodName_9; } inline String_t** get_address_of_internalMethodName_9() { return &___internalMethodName_9; } inline void set_internalMethodName_9(String_t* value) { ___internalMethodName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalMethodName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00_marshaled_pinvoke { int32_t ___ilOffset_1; int32_t ___nativeOffset_2; int64_t ___methodAddress_3; uint32_t ___methodIndex_4; MethodBase_t * ___methodBase_5; char* ___fileName_6; int32_t ___lineNumber_7; int32_t ___columnNumber_8; char* ___internalMethodName_9; }; // Native definition for COM marshalling of System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00_marshaled_com { int32_t ___ilOffset_1; int32_t ___nativeOffset_2; int64_t ___methodAddress_3; uint32_t ___methodIndex_4; MethodBase_t * ___methodBase_5; Il2CppChar* ___fileName_6; int32_t ___lineNumber_7; int32_t ___columnNumber_8; Il2CppChar* ___internalMethodName_9; }; // System.Diagnostics.StackTrace struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 : public RuntimeObject { public: // System.Diagnostics.StackFrame[] System.Diagnostics.StackTrace::frames StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* ___frames_1; // System.Diagnostics.StackTrace[] System.Diagnostics.StackTrace::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_2; // System.Boolean System.Diagnostics.StackTrace::debug_info bool ___debug_info_3; public: inline static int32_t get_offset_of_frames_1() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___frames_1)); } inline StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* get_frames_1() const { return ___frames_1; } inline StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D** get_address_of_frames_1() { return &___frames_1; } inline void set_frames_1(StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* value) { ___frames_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___frames_1), (void*)value); } inline static int32_t get_offset_of_captured_traces_2() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___captured_traces_2)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_2() const { return ___captured_traces_2; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_2() { return &___captured_traces_2; } inline void set_captured_traces_2(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_2), (void*)value); } inline static int32_t get_offset_of_debug_info_3() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___debug_info_3)); } inline bool get_debug_info_3() const { return ___debug_info_3; } inline bool* get_address_of_debug_info_3() { return &___debug_info_3; } inline void set_debug_info_3(bool value) { ___debug_info_3 = value; } }; struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields { public: // System.Boolean System.Diagnostics.StackTrace::isAotidSet bool ___isAotidSet_4; // System.String System.Diagnostics.StackTrace::aotid String_t* ___aotid_5; public: inline static int32_t get_offset_of_isAotidSet_4() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields, ___isAotidSet_4)); } inline bool get_isAotidSet_4() const { return ___isAotidSet_4; } inline bool* get_address_of_isAotidSet_4() { return &___isAotidSet_4; } inline void set_isAotidSet_4(bool value) { ___isAotidSet_4 = value; } inline static int32_t get_offset_of_aotid_5() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields, ___aotid_5)); } inline String_t* get_aotid_5() const { return ___aotid_5; } inline String_t** get_address_of_aotid_5() { return &___aotid_5; } inline void set_aotid_5(String_t* value) { ___aotid_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___aotid_5), (void*)value); } }; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA : public RuntimeObject { public: public: }; // System.Diagnostics.Tracing.EventListener struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 : public RuntimeObject { public: // System.EventHandler`1<System.Diagnostics.Tracing.EventSourceCreatedEventArgs> System.Diagnostics.Tracing.EventListener::_EventSourceCreated EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * ____EventSourceCreated_1; // System.EventHandler`1<System.Diagnostics.Tracing.EventWrittenEventArgs> System.Diagnostics.Tracing.EventListener::EventWritten EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * ___EventWritten_2; // System.Diagnostics.Tracing.EventListener modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventListener::m_Next EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___m_Next_3; // System.Diagnostics.Tracing.ActivityFilter System.Diagnostics.Tracing.EventListener::m_activityFilter ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * ___m_activityFilter_4; public: inline static int32_t get_offset_of__EventSourceCreated_1() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ____EventSourceCreated_1)); } inline EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * get__EventSourceCreated_1() const { return ____EventSourceCreated_1; } inline EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE ** get_address_of__EventSourceCreated_1() { return &____EventSourceCreated_1; } inline void set__EventSourceCreated_1(EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * value) { ____EventSourceCreated_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____EventSourceCreated_1), (void*)value); } inline static int32_t get_offset_of_EventWritten_2() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___EventWritten_2)); } inline EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * get_EventWritten_2() const { return ___EventWritten_2; } inline EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 ** get_address_of_EventWritten_2() { return &___EventWritten_2; } inline void set_EventWritten_2(EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * value) { ___EventWritten_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___EventWritten_2), (void*)value); } inline static int32_t get_offset_of_m_Next_3() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___m_Next_3)); } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * get_m_Next_3() const { return ___m_Next_3; } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 ** get_address_of_m_Next_3() { return &___m_Next_3; } inline void set_m_Next_3(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * value) { ___m_Next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Next_3), (void*)value); } inline static int32_t get_offset_of_m_activityFilter_4() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___m_activityFilter_4)); } inline ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * get_m_activityFilter_4() const { return ___m_activityFilter_4; } inline ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 ** get_address_of_m_activityFilter_4() { return &___m_activityFilter_4; } inline void set_m_activityFilter_4(ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * value) { ___m_activityFilter_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_activityFilter_4), (void*)value); } }; struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields { public: // System.Object System.Diagnostics.Tracing.EventListener::s_EventSourceCreatedLock RuntimeObject * ___s_EventSourceCreatedLock_0; // System.Diagnostics.Tracing.EventListener System.Diagnostics.Tracing.EventListener::s_Listeners EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___s_Listeners_5; // System.Collections.Generic.List`1<System.WeakReference> System.Diagnostics.Tracing.EventListener::s_EventSources List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * ___s_EventSources_6; // System.Boolean System.Diagnostics.Tracing.EventListener::s_CreatingListener bool ___s_CreatingListener_7; // System.Boolean System.Diagnostics.Tracing.EventListener::s_EventSourceShutdownRegistered bool ___s_EventSourceShutdownRegistered_8; public: inline static int32_t get_offset_of_s_EventSourceCreatedLock_0() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSourceCreatedLock_0)); } inline RuntimeObject * get_s_EventSourceCreatedLock_0() const { return ___s_EventSourceCreatedLock_0; } inline RuntimeObject ** get_address_of_s_EventSourceCreatedLock_0() { return &___s_EventSourceCreatedLock_0; } inline void set_s_EventSourceCreatedLock_0(RuntimeObject * value) { ___s_EventSourceCreatedLock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EventSourceCreatedLock_0), (void*)value); } inline static int32_t get_offset_of_s_Listeners_5() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_Listeners_5)); } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * get_s_Listeners_5() const { return ___s_Listeners_5; } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 ** get_address_of_s_Listeners_5() { return &___s_Listeners_5; } inline void set_s_Listeners_5(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * value) { ___s_Listeners_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Listeners_5), (void*)value); } inline static int32_t get_offset_of_s_EventSources_6() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSources_6)); } inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * get_s_EventSources_6() const { return ___s_EventSources_6; } inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF ** get_address_of_s_EventSources_6() { return &___s_EventSources_6; } inline void set_s_EventSources_6(List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * value) { ___s_EventSources_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EventSources_6), (void*)value); } inline static int32_t get_offset_of_s_CreatingListener_7() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_CreatingListener_7)); } inline bool get_s_CreatingListener_7() const { return ___s_CreatingListener_7; } inline bool* get_address_of_s_CreatingListener_7() { return &___s_CreatingListener_7; } inline void set_s_CreatingListener_7(bool value) { ___s_CreatingListener_7 = value; } inline static int32_t get_offset_of_s_EventSourceShutdownRegistered_8() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSourceShutdownRegistered_8)); } inline bool get_s_EventSourceShutdownRegistered_8() const { return ___s_EventSourceShutdownRegistered_8; } inline bool* get_address_of_s_EventSourceShutdownRegistered_8() { return &___s_EventSourceShutdownRegistered_8; } inline void set_s_EventSourceShutdownRegistered_8(bool value) { ___s_EventSourceShutdownRegistered_8 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0 struct U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F : public RuntimeObject { public: // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::stringBuilder StringBuilder_t * ___stringBuilder_0; // System.String System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::eventMessage String_t* ___eventMessage_1; // System.Int32 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::writtenSoFar int32_t ___writtenSoFar_2; public: inline static int32_t get_offset_of_stringBuilder_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___stringBuilder_0)); } inline StringBuilder_t * get_stringBuilder_0() const { return ___stringBuilder_0; } inline StringBuilder_t ** get_address_of_stringBuilder_0() { return &___stringBuilder_0; } inline void set_stringBuilder_0(StringBuilder_t * value) { ___stringBuilder_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringBuilder_0), (void*)value); } inline static int32_t get_offset_of_eventMessage_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___eventMessage_1)); } inline String_t* get_eventMessage_1() const { return ___eventMessage_1; } inline String_t** get_address_of_eventMessage_1() { return &___eventMessage_1; } inline void set_eventMessage_1(String_t* value) { ___eventMessage_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventMessage_1), (void*)value); } inline static int32_t get_offset_of_writtenSoFar_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___writtenSoFar_2)); } inline int32_t get_writtenSoFar_2() const { return ___writtenSoFar_2; } inline int32_t* get_address_of_writtenSoFar_2() { return &___writtenSoFar_2; } inline void set_writtenSoFar_2(int32_t value) { ___writtenSoFar_2 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1 struct U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A : public RuntimeObject { public: // System.Int32 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::i int32_t ___i_0; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::CSU24<>8__locals1 U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_i_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A, ___i_0)); } inline int32_t get_i_0() const { return ___i_0; } inline int32_t* get_address_of_i_0() { return &___i_0; } inline void set_i_0(int32_t value) { ___i_0 = value; } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // System.Diagnostics.Tracing.PropertyAnalysis struct PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.PropertyAnalysis::name String_t* ___name_0; // System.Reflection.MethodInfo System.Diagnostics.Tracing.PropertyAnalysis::getterInfo MethodInfo_t * ___getterInfo_1; // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.PropertyAnalysis::typeInfo TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo_2; // System.Diagnostics.Tracing.EventFieldAttribute System.Diagnostics.Tracing.PropertyAnalysis::fieldAttribute EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute_3; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___getterInfo_1)); } inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; } inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; } inline void set_getterInfo_1(MethodInfo_t * value) { ___getterInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value); } inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___typeInfo_2)); } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * get_typeInfo_2() const { return ___typeInfo_2; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** get_address_of_typeInfo_2() { return &___typeInfo_2; } inline void set_typeInfo_2(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { ___typeInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value); } inline static int32_t get_offset_of_fieldAttribute_3() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___fieldAttribute_3)); } inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * get_fieldAttribute_3() const { return ___fieldAttribute_3; } inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C ** get_address_of_fieldAttribute_3() { return &___fieldAttribute_3; } inline void set_fieldAttribute_3(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * value) { ___fieldAttribute_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldAttribute_3), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingDataCollector struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA : public RuntimeObject { public: public: }; struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingDataCollector System.Diagnostics.Tracing.TraceLoggingDataCollector::Instance TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields, ___Instance_0)); } inline TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * get_Instance_0() const { return ___Instance_0; } inline TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA ** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl struct Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F : public RuntimeObject { public: // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::fields List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * ___fields_0; // System.Int16 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::scratchSize int16_t ___scratchSize_1; // System.SByte System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::dataCount int8_t ___dataCount_2; // System.SByte System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::pinCount int8_t ___pinCount_3; // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::bufferNesting int32_t ___bufferNesting_4; // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::scalar bool ___scalar_5; public: inline static int32_t get_offset_of_fields_0() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___fields_0)); } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * get_fields_0() const { return ___fields_0; } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A ** get_address_of_fields_0() { return &___fields_0; } inline void set_fields_0(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * value) { ___fields_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fields_0), (void*)value); } inline static int32_t get_offset_of_scratchSize_1() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___scratchSize_1)); } inline int16_t get_scratchSize_1() const { return ___scratchSize_1; } inline int16_t* get_address_of_scratchSize_1() { return &___scratchSize_1; } inline void set_scratchSize_1(int16_t value) { ___scratchSize_1 = value; } inline static int32_t get_offset_of_dataCount_2() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___dataCount_2)); } inline int8_t get_dataCount_2() const { return ___dataCount_2; } inline int8_t* get_address_of_dataCount_2() { return &___dataCount_2; } inline void set_dataCount_2(int8_t value) { ___dataCount_2 = value; } inline static int32_t get_offset_of_pinCount_3() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___pinCount_3)); } inline int8_t get_pinCount_3() const { return ___pinCount_3; } inline int8_t* get_address_of_pinCount_3() { return &___pinCount_3; } inline void set_pinCount_3(int8_t value) { ___pinCount_3 = value; } inline static int32_t get_offset_of_bufferNesting_4() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___bufferNesting_4)); } inline int32_t get_bufferNesting_4() const { return ___bufferNesting_4; } inline int32_t* get_address_of_bufferNesting_4() { return &___bufferNesting_4; } inline void set_bufferNesting_4(int32_t value) { ___bufferNesting_4 = value; } inline static int32_t get_offset_of_scalar_5() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___scalar_5)); } inline bool get_scalar_5() const { return ___scalar_5; } inline bool* get_address_of_scalar_5() { return &___scalar_5; } inline void set_scalar_5(bool value) { ___scalar_5 = value; } }; // System.Empty struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 : public RuntimeObject { public: public: }; struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields { public: // System.Empty System.Empty::Value Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields, ___Value_0)); } inline Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * get_Value_0() const { return ___Value_0; } inline Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Enum_ValuesAndNames struct ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 : public RuntimeObject { public: // System.UInt64[] System.Enum_ValuesAndNames::Values UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___Values_0; // System.String[] System.Enum_ValuesAndNames::Names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___Names_1; public: inline static int32_t get_offset_of_Values_0() { return static_cast<int32_t>(offsetof(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2, ___Values_0)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get_Values_0() const { return ___Values_0; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of_Values_0() { return &___Values_0; } inline void set_Values_0(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ___Values_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Values_0), (void*)value); } inline static int32_t get_offset_of_Names_1() { return static_cast<int32_t>(offsetof(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2, ___Names_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_Names_1() const { return ___Names_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_Names_1() { return &___Names_1; } inline void set_Names_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___Names_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Names_1), (void*)value); } }; // System.Environment struct Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806 : public RuntimeObject { public: public: }; struct Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields { public: // System.String System.Environment::nl String_t* ___nl_1; // System.OperatingSystem System.Environment::os OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * ___os_2; public: inline static int32_t get_offset_of_nl_1() { return static_cast<int32_t>(offsetof(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields, ___nl_1)); } inline String_t* get_nl_1() const { return ___nl_1; } inline String_t** get_address_of_nl_1() { return &___nl_1; } inline void set_nl_1(String_t* value) { ___nl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___nl_1), (void*)value); } inline static int32_t get_offset_of_os_2() { return static_cast<int32_t>(offsetof(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields, ___os_2)); } inline OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * get_os_2() const { return ___os_2; } inline OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 ** get_address_of_os_2() { return &___os_2; } inline void set_os_2(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * value) { ___os_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___os_2), (void*)value); } }; // 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((void**)(&___Empty_0), (void*)value); } }; // System.GC struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D : public RuntimeObject { public: public: }; struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields { public: // System.Object System.GC::EPHEMERON_TOMBSTONE RuntimeObject * ___EPHEMERON_TOMBSTONE_0; public: inline static int32_t get_offset_of_EPHEMERON_TOMBSTONE_0() { return static_cast<int32_t>(offsetof(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields, ___EPHEMERON_TOMBSTONE_0)); } inline RuntimeObject * get_EPHEMERON_TOMBSTONE_0() const { return ___EPHEMERON_TOMBSTONE_0; } inline RuntimeObject ** get_address_of_EPHEMERON_TOMBSTONE_0() { return &___EPHEMERON_TOMBSTONE_0; } inline void set_EPHEMERON_TOMBSTONE_0(RuntimeObject * value) { ___EPHEMERON_TOMBSTONE_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EPHEMERON_TOMBSTONE_0), (void*)value); } }; // System.Globalization.Bootstring struct Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 : public RuntimeObject { public: // System.Char System.Globalization.Bootstring::delimiter Il2CppChar ___delimiter_0; // System.Int32 System.Globalization.Bootstring::base_num int32_t ___base_num_1; // System.Int32 System.Globalization.Bootstring::tmin int32_t ___tmin_2; // System.Int32 System.Globalization.Bootstring::tmax int32_t ___tmax_3; // System.Int32 System.Globalization.Bootstring::skew int32_t ___skew_4; // System.Int32 System.Globalization.Bootstring::damp int32_t ___damp_5; // System.Int32 System.Globalization.Bootstring::initial_bias int32_t ___initial_bias_6; // System.Int32 System.Globalization.Bootstring::initial_n int32_t ___initial_n_7; public: inline static int32_t get_offset_of_delimiter_0() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___delimiter_0)); } inline Il2CppChar get_delimiter_0() const { return ___delimiter_0; } inline Il2CppChar* get_address_of_delimiter_0() { return &___delimiter_0; } inline void set_delimiter_0(Il2CppChar value) { ___delimiter_0 = value; } inline static int32_t get_offset_of_base_num_1() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___base_num_1)); } inline int32_t get_base_num_1() const { return ___base_num_1; } inline int32_t* get_address_of_base_num_1() { return &___base_num_1; } inline void set_base_num_1(int32_t value) { ___base_num_1 = value; } inline static int32_t get_offset_of_tmin_2() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___tmin_2)); } inline int32_t get_tmin_2() const { return ___tmin_2; } inline int32_t* get_address_of_tmin_2() { return &___tmin_2; } inline void set_tmin_2(int32_t value) { ___tmin_2 = value; } inline static int32_t get_offset_of_tmax_3() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___tmax_3)); } inline int32_t get_tmax_3() const { return ___tmax_3; } inline int32_t* get_address_of_tmax_3() { return &___tmax_3; } inline void set_tmax_3(int32_t value) { ___tmax_3 = value; } inline static int32_t get_offset_of_skew_4() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___skew_4)); } inline int32_t get_skew_4() const { return ___skew_4; } inline int32_t* get_address_of_skew_4() { return &___skew_4; } inline void set_skew_4(int32_t value) { ___skew_4 = value; } inline static int32_t get_offset_of_damp_5() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___damp_5)); } inline int32_t get_damp_5() const { return ___damp_5; } inline int32_t* get_address_of_damp_5() { return &___damp_5; } inline void set_damp_5(int32_t value) { ___damp_5 = value; } inline static int32_t get_offset_of_initial_bias_6() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___initial_bias_6)); } inline int32_t get_initial_bias_6() const { return ___initial_bias_6; } inline int32_t* get_address_of_initial_bias_6() { return &___initial_bias_6; } inline void set_initial_bias_6(int32_t value) { ___initial_bias_6 = value; } inline static int32_t get_offset_of_initial_n_7() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___initial_n_7)); } inline int32_t get_initial_n_7() const { return ___initial_n_7; } inline int32_t* get_address_of_initial_n_7() { return &___initial_n_7; } inline void set_initial_n_7(int32_t value) { ___initial_n_7 = value; } }; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 : public RuntimeObject { public: // System.Int32 System.Globalization.Calendar::m_currentEraValue int32_t ___m_currentEraValue_38; // System.Boolean System.Globalization.Calendar::m_isReadOnly bool ___m_isReadOnly_39; // System.Int32 System.Globalization.Calendar::twoDigitYearMax int32_t ___twoDigitYearMax_41; public: inline static int32_t get_offset_of_m_currentEraValue_38() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_currentEraValue_38)); } inline int32_t get_m_currentEraValue_38() const { return ___m_currentEraValue_38; } inline int32_t* get_address_of_m_currentEraValue_38() { return &___m_currentEraValue_38; } inline void set_m_currentEraValue_38(int32_t value) { ___m_currentEraValue_38 = value; } inline static int32_t get_offset_of_m_isReadOnly_39() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_isReadOnly_39)); } inline bool get_m_isReadOnly_39() const { return ___m_isReadOnly_39; } inline bool* get_address_of_m_isReadOnly_39() { return &___m_isReadOnly_39; } inline void set_m_isReadOnly_39(bool value) { ___m_isReadOnly_39 = value; } inline static int32_t get_offset_of_twoDigitYearMax_41() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___twoDigitYearMax_41)); } inline int32_t get_twoDigitYearMax_41() const { return ___twoDigitYearMax_41; } inline int32_t* get_address_of_twoDigitYearMax_41() { return &___twoDigitYearMax_41; } inline void set_twoDigitYearMax_41(int32_t value) { ___twoDigitYearMax_41 = value; } }; // System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E : public RuntimeObject { public: // System.String System.Globalization.CalendarData::sNativeName String_t* ___sNativeName_1; // System.String[] System.Globalization.CalendarData::saShortDates StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saShortDates_2; // System.String[] System.Globalization.CalendarData::saYearMonths StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saYearMonths_3; // System.String[] System.Globalization.CalendarData::saLongDates StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLongDates_4; // System.String System.Globalization.CalendarData::sMonthDay String_t* ___sMonthDay_5; // System.String[] System.Globalization.CalendarData::saEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saEraNames_6; // System.String[] System.Globalization.CalendarData::saAbbrevEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevEraNames_7; // System.String[] System.Globalization.CalendarData::saAbbrevEnglishEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevEnglishEraNames_8; // System.String[] System.Globalization.CalendarData::saDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saDayNames_9; // System.String[] System.Globalization.CalendarData::saAbbrevDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevDayNames_10; // System.String[] System.Globalization.CalendarData::saSuperShortDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saSuperShortDayNames_11; // System.String[] System.Globalization.CalendarData::saMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saMonthNames_12; // System.String[] System.Globalization.CalendarData::saAbbrevMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevMonthNames_13; // System.String[] System.Globalization.CalendarData::saMonthGenitiveNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saMonthGenitiveNames_14; // System.String[] System.Globalization.CalendarData::saAbbrevMonthGenitiveNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevMonthGenitiveNames_15; // System.String[] System.Globalization.CalendarData::saLeapYearMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLeapYearMonthNames_16; // System.Int32 System.Globalization.CalendarData::iTwoDigitYearMax int32_t ___iTwoDigitYearMax_17; // System.Int32 System.Globalization.CalendarData::iCurrentEra int32_t ___iCurrentEra_18; // System.Boolean System.Globalization.CalendarData::bUseUserOverrides bool ___bUseUserOverrides_19; public: inline static int32_t get_offset_of_sNativeName_1() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___sNativeName_1)); } inline String_t* get_sNativeName_1() const { return ___sNativeName_1; } inline String_t** get_address_of_sNativeName_1() { return &___sNativeName_1; } inline void set_sNativeName_1(String_t* value) { ___sNativeName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sNativeName_1), (void*)value); } inline static int32_t get_offset_of_saShortDates_2() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saShortDates_2)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saShortDates_2() const { return ___saShortDates_2; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saShortDates_2() { return &___saShortDates_2; } inline void set_saShortDates_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saShortDates_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___saShortDates_2), (void*)value); } inline static int32_t get_offset_of_saYearMonths_3() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saYearMonths_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saYearMonths_3() const { return ___saYearMonths_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saYearMonths_3() { return &___saYearMonths_3; } inline void set_saYearMonths_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saYearMonths_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___saYearMonths_3), (void*)value); } inline static int32_t get_offset_of_saLongDates_4() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saLongDates_4)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLongDates_4() const { return ___saLongDates_4; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLongDates_4() { return &___saLongDates_4; } inline void set_saLongDates_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLongDates_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLongDates_4), (void*)value); } inline static int32_t get_offset_of_sMonthDay_5() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___sMonthDay_5)); } inline String_t* get_sMonthDay_5() const { return ___sMonthDay_5; } inline String_t** get_address_of_sMonthDay_5() { return &___sMonthDay_5; } inline void set_sMonthDay_5(String_t* value) { ___sMonthDay_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___sMonthDay_5), (void*)value); } inline static int32_t get_offset_of_saEraNames_6() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saEraNames_6)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saEraNames_6() const { return ___saEraNames_6; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saEraNames_6() { return &___saEraNames_6; } inline void set_saEraNames_6(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saEraNames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___saEraNames_6), (void*)value); } inline static int32_t get_offset_of_saAbbrevEraNames_7() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevEraNames_7)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevEraNames_7() const { return ___saAbbrevEraNames_7; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevEraNames_7() { return &___saAbbrevEraNames_7; } inline void set_saAbbrevEraNames_7(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevEraNames_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEraNames_7), (void*)value); } inline static int32_t get_offset_of_saAbbrevEnglishEraNames_8() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevEnglishEraNames_8)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevEnglishEraNames_8() const { return ___saAbbrevEnglishEraNames_8; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevEnglishEraNames_8() { return &___saAbbrevEnglishEraNames_8; } inline void set_saAbbrevEnglishEraNames_8(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevEnglishEraNames_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEnglishEraNames_8), (void*)value); } inline static int32_t get_offset_of_saDayNames_9() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saDayNames_9)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saDayNames_9() const { return ___saDayNames_9; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saDayNames_9() { return &___saDayNames_9; } inline void set_saDayNames_9(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saDayNames_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___saDayNames_9), (void*)value); } inline static int32_t get_offset_of_saAbbrevDayNames_10() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevDayNames_10)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevDayNames_10() const { return ___saAbbrevDayNames_10; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevDayNames_10() { return &___saAbbrevDayNames_10; } inline void set_saAbbrevDayNames_10(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevDayNames_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevDayNames_10), (void*)value); } inline static int32_t get_offset_of_saSuperShortDayNames_11() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saSuperShortDayNames_11)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saSuperShortDayNames_11() const { return ___saSuperShortDayNames_11; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saSuperShortDayNames_11() { return &___saSuperShortDayNames_11; } inline void set_saSuperShortDayNames_11(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saSuperShortDayNames_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___saSuperShortDayNames_11), (void*)value); } inline static int32_t get_offset_of_saMonthNames_12() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saMonthNames_12)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saMonthNames_12() const { return ___saMonthNames_12; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saMonthNames_12() { return &___saMonthNames_12; } inline void set_saMonthNames_12(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saMonthNames_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___saMonthNames_12), (void*)value); } inline static int32_t get_offset_of_saAbbrevMonthNames_13() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevMonthNames_13)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevMonthNames_13() const { return ___saAbbrevMonthNames_13; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevMonthNames_13() { return &___saAbbrevMonthNames_13; } inline void set_saAbbrevMonthNames_13(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevMonthNames_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthNames_13), (void*)value); } inline static int32_t get_offset_of_saMonthGenitiveNames_14() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saMonthGenitiveNames_14)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saMonthGenitiveNames_14() const { return ___saMonthGenitiveNames_14; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saMonthGenitiveNames_14() { return &___saMonthGenitiveNames_14; } inline void set_saMonthGenitiveNames_14(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saMonthGenitiveNames_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___saMonthGenitiveNames_14), (void*)value); } inline static int32_t get_offset_of_saAbbrevMonthGenitiveNames_15() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevMonthGenitiveNames_15)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevMonthGenitiveNames_15() const { return ___saAbbrevMonthGenitiveNames_15; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevMonthGenitiveNames_15() { return &___saAbbrevMonthGenitiveNames_15; } inline void set_saAbbrevMonthGenitiveNames_15(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevMonthGenitiveNames_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthGenitiveNames_15), (void*)value); } inline static int32_t get_offset_of_saLeapYearMonthNames_16() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saLeapYearMonthNames_16)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLeapYearMonthNames_16() const { return ___saLeapYearMonthNames_16; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLeapYearMonthNames_16() { return &___saLeapYearMonthNames_16; } inline void set_saLeapYearMonthNames_16(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLeapYearMonthNames_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLeapYearMonthNames_16), (void*)value); } inline static int32_t get_offset_of_iTwoDigitYearMax_17() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___iTwoDigitYearMax_17)); } inline int32_t get_iTwoDigitYearMax_17() const { return ___iTwoDigitYearMax_17; } inline int32_t* get_address_of_iTwoDigitYearMax_17() { return &___iTwoDigitYearMax_17; } inline void set_iTwoDigitYearMax_17(int32_t value) { ___iTwoDigitYearMax_17 = value; } inline static int32_t get_offset_of_iCurrentEra_18() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___iCurrentEra_18)); } inline int32_t get_iCurrentEra_18() const { return ___iCurrentEra_18; } inline int32_t* get_address_of_iCurrentEra_18() { return &___iCurrentEra_18; } inline void set_iCurrentEra_18(int32_t value) { ___iCurrentEra_18 = value; } inline static int32_t get_offset_of_bUseUserOverrides_19() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___bUseUserOverrides_19)); } inline bool get_bUseUserOverrides_19() const { return ___bUseUserOverrides_19; } inline bool* get_address_of_bUseUserOverrides_19() { return &___bUseUserOverrides_19; } inline void set_bUseUserOverrides_19(bool value) { ___bUseUserOverrides_19 = value; } }; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields { public: // System.Globalization.CalendarData System.Globalization.CalendarData::Invariant CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___Invariant_20; public: inline static int32_t get_offset_of_Invariant_20() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields, ___Invariant_20)); } inline CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * get_Invariant_20() const { return ___Invariant_20; } inline CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E ** get_address_of_Invariant_20() { return &___Invariant_20; } inline void set_Invariant_20(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * value) { ___Invariant_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___Invariant_20), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke { char* ___sNativeName_1; char** ___saShortDates_2; char** ___saYearMonths_3; char** ___saLongDates_4; char* ___sMonthDay_5; char** ___saEraNames_6; char** ___saAbbrevEraNames_7; char** ___saAbbrevEnglishEraNames_8; char** ___saDayNames_9; char** ___saAbbrevDayNames_10; char** ___saSuperShortDayNames_11; char** ___saMonthNames_12; char** ___saAbbrevMonthNames_13; char** ___saMonthGenitiveNames_14; char** ___saAbbrevMonthGenitiveNames_15; char** ___saLeapYearMonthNames_16; int32_t ___iTwoDigitYearMax_17; int32_t ___iCurrentEra_18; int32_t ___bUseUserOverrides_19; }; // Native definition for COM marshalling of System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com { Il2CppChar* ___sNativeName_1; Il2CppChar** ___saShortDates_2; Il2CppChar** ___saYearMonths_3; Il2CppChar** ___saLongDates_4; Il2CppChar* ___sMonthDay_5; Il2CppChar** ___saEraNames_6; Il2CppChar** ___saAbbrevEraNames_7; Il2CppChar** ___saAbbrevEnglishEraNames_8; Il2CppChar** ___saDayNames_9; Il2CppChar** ___saAbbrevDayNames_10; Il2CppChar** ___saSuperShortDayNames_11; Il2CppChar** ___saMonthNames_12; Il2CppChar** ___saAbbrevMonthNames_13; Il2CppChar** ___saMonthGenitiveNames_14; Il2CppChar** ___saAbbrevMonthGenitiveNames_15; Il2CppChar** ___saLeapYearMonthNames_16; int32_t ___iTwoDigitYearMax_17; int32_t ___iCurrentEra_18; int32_t ___bUseUserOverrides_19; }; // System.Globalization.CharUnicodeInfo struct CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F : public RuntimeObject { public: public: }; struct CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields { public: // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pCategoryLevel1Index UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pCategoryLevel1Index_0; // System.Byte[] System.Globalization.CharUnicodeInfo::s_pCategoriesValue ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_pCategoriesValue_1; // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pNumericLevel1Index UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pNumericLevel1Index_2; // System.Byte[] System.Globalization.CharUnicodeInfo::s_pNumericValues ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_pNumericValues_3; // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pDigitValues UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pDigitValues_4; public: inline static int32_t get_offset_of_s_pCategoryLevel1Index_0() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pCategoryLevel1Index_0)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pCategoryLevel1Index_0() const { return ___s_pCategoryLevel1Index_0; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pCategoryLevel1Index_0() { return &___s_pCategoryLevel1Index_0; } inline void set_s_pCategoryLevel1Index_0(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pCategoryLevel1Index_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoryLevel1Index_0), (void*)value); } inline static int32_t get_offset_of_s_pCategoriesValue_1() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pCategoriesValue_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_pCategoriesValue_1() const { return ___s_pCategoriesValue_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_pCategoriesValue_1() { return &___s_pCategoriesValue_1; } inline void set_s_pCategoriesValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___s_pCategoriesValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoriesValue_1), (void*)value); } inline static int32_t get_offset_of_s_pNumericLevel1Index_2() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pNumericLevel1Index_2)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pNumericLevel1Index_2() const { return ___s_pNumericLevel1Index_2; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pNumericLevel1Index_2() { return &___s_pNumericLevel1Index_2; } inline void set_s_pNumericLevel1Index_2(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pNumericLevel1Index_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericLevel1Index_2), (void*)value); } inline static int32_t get_offset_of_s_pNumericValues_3() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pNumericValues_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_pNumericValues_3() const { return ___s_pNumericValues_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_pNumericValues_3() { return &___s_pNumericValues_3; } inline void set_s_pNumericValues_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___s_pNumericValues_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericValues_3), (void*)value); } inline static int32_t get_offset_of_s_pDigitValues_4() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pDigitValues_4)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pDigitValues_4() const { return ___s_pDigitValues_4; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pDigitValues_4() { return &___s_pDigitValues_4; } inline void set_s_pDigitValues_4(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pDigitValues_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pDigitValues_4), (void*)value); } }; // System.Globalization.CharUnicodeInfo_Debug struct Debug_tDC29095ECA525AF90EC7761505C859A0A14E79DC : public RuntimeObject { public: public: }; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB : public RuntimeObject { public: // System.Int32 System.Globalization.CodePageDataItem::m_dataIndex int32_t ___m_dataIndex_0; // System.Int32 System.Globalization.CodePageDataItem::m_uiFamilyCodePage int32_t ___m_uiFamilyCodePage_1; // System.String System.Globalization.CodePageDataItem::m_webName String_t* ___m_webName_2; // System.String System.Globalization.CodePageDataItem::m_headerName String_t* ___m_headerName_3; // System.String System.Globalization.CodePageDataItem::m_bodyName String_t* ___m_bodyName_4; // System.UInt32 System.Globalization.CodePageDataItem::m_flags uint32_t ___m_flags_5; public: inline static int32_t get_offset_of_m_dataIndex_0() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_dataIndex_0)); } inline int32_t get_m_dataIndex_0() const { return ___m_dataIndex_0; } inline int32_t* get_address_of_m_dataIndex_0() { return &___m_dataIndex_0; } inline void set_m_dataIndex_0(int32_t value) { ___m_dataIndex_0 = value; } inline static int32_t get_offset_of_m_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_uiFamilyCodePage_1)); } inline int32_t get_m_uiFamilyCodePage_1() const { return ___m_uiFamilyCodePage_1; } inline int32_t* get_address_of_m_uiFamilyCodePage_1() { return &___m_uiFamilyCodePage_1; } inline void set_m_uiFamilyCodePage_1(int32_t value) { ___m_uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_m_webName_2() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_webName_2)); } inline String_t* get_m_webName_2() const { return ___m_webName_2; } inline String_t** get_address_of_m_webName_2() { return &___m_webName_2; } inline void set_m_webName_2(String_t* value) { ___m_webName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_webName_2), (void*)value); } inline static int32_t get_offset_of_m_headerName_3() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_headerName_3)); } inline String_t* get_m_headerName_3() const { return ___m_headerName_3; } inline String_t** get_address_of_m_headerName_3() { return &___m_headerName_3; } inline void set_m_headerName_3(String_t* value) { ___m_headerName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_headerName_3), (void*)value); } inline static int32_t get_offset_of_m_bodyName_4() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_bodyName_4)); } inline String_t* get_m_bodyName_4() const { return ___m_bodyName_4; } inline String_t** get_address_of_m_bodyName_4() { return &___m_bodyName_4; } inline void set_m_bodyName_4(String_t* value) { ___m_bodyName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_bodyName_4), (void*)value); } inline static int32_t get_offset_of_m_flags_5() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_flags_5)); } inline uint32_t get_m_flags_5() const { return ___m_flags_5; } inline uint32_t* get_address_of_m_flags_5() { return &___m_flags_5; } inline void set_m_flags_5(uint32_t value) { ___m_flags_5 = value; } }; struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields { public: // System.Char[] System.Globalization.CodePageDataItem::sep CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___sep_6; public: inline static int32_t get_offset_of_sep_6() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields, ___sep_6)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_sep_6() const { return ___sep_6; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_sep_6() { return &___sep_6; } inline void set_sep_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___sep_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___sep_6), (void*)value); } }; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD : public RuntimeObject { public: // System.String System.Globalization.CultureData::sAM1159 String_t* ___sAM1159_0; // System.String System.Globalization.CultureData::sPM2359 String_t* ___sPM2359_1; // System.String System.Globalization.CultureData::sTimeSeparator String_t* ___sTimeSeparator_2; // System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saLongTimes StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLongTimes_3; // System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saShortTimes StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saShortTimes_4; // System.Int32 System.Globalization.CultureData::iFirstDayOfWeek int32_t ___iFirstDayOfWeek_5; // System.Int32 System.Globalization.CultureData::iFirstWeekOfYear int32_t ___iFirstWeekOfYear_6; // System.Int32[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::waCalendars Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___waCalendars_7; // System.Globalization.CalendarData[] System.Globalization.CultureData::calendars CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* ___calendars_8; // System.String System.Globalization.CultureData::sISO639Language String_t* ___sISO639Language_9; // System.String System.Globalization.CultureData::sRealName String_t* ___sRealName_10; // System.Boolean System.Globalization.CultureData::bUseOverrides bool ___bUseOverrides_11; // System.Int32 System.Globalization.CultureData::calendarId int32_t ___calendarId_12; // System.Int32 System.Globalization.CultureData::numberIndex int32_t ___numberIndex_13; // System.Int32 System.Globalization.CultureData::iDefaultAnsiCodePage int32_t ___iDefaultAnsiCodePage_14; // System.Int32 System.Globalization.CultureData::iDefaultOemCodePage int32_t ___iDefaultOemCodePage_15; // System.Int32 System.Globalization.CultureData::iDefaultMacCodePage int32_t ___iDefaultMacCodePage_16; // System.Int32 System.Globalization.CultureData::iDefaultEbcdicCodePage int32_t ___iDefaultEbcdicCodePage_17; // System.Boolean System.Globalization.CultureData::isRightToLeft bool ___isRightToLeft_18; // System.String System.Globalization.CultureData::sListSeparator String_t* ___sListSeparator_19; public: inline static int32_t get_offset_of_sAM1159_0() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sAM1159_0)); } inline String_t* get_sAM1159_0() const { return ___sAM1159_0; } inline String_t** get_address_of_sAM1159_0() { return &___sAM1159_0; } inline void set_sAM1159_0(String_t* value) { ___sAM1159_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___sAM1159_0), (void*)value); } inline static int32_t get_offset_of_sPM2359_1() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sPM2359_1)); } inline String_t* get_sPM2359_1() const { return ___sPM2359_1; } inline String_t** get_address_of_sPM2359_1() { return &___sPM2359_1; } inline void set_sPM2359_1(String_t* value) { ___sPM2359_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sPM2359_1), (void*)value); } inline static int32_t get_offset_of_sTimeSeparator_2() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sTimeSeparator_2)); } inline String_t* get_sTimeSeparator_2() const { return ___sTimeSeparator_2; } inline String_t** get_address_of_sTimeSeparator_2() { return &___sTimeSeparator_2; } inline void set_sTimeSeparator_2(String_t* value) { ___sTimeSeparator_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sTimeSeparator_2), (void*)value); } inline static int32_t get_offset_of_saLongTimes_3() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___saLongTimes_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLongTimes_3() const { return ___saLongTimes_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLongTimes_3() { return &___saLongTimes_3; } inline void set_saLongTimes_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLongTimes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLongTimes_3), (void*)value); } inline static int32_t get_offset_of_saShortTimes_4() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___saShortTimes_4)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saShortTimes_4() const { return ___saShortTimes_4; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saShortTimes_4() { return &___saShortTimes_4; } inline void set_saShortTimes_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saShortTimes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saShortTimes_4), (void*)value); } inline static int32_t get_offset_of_iFirstDayOfWeek_5() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iFirstDayOfWeek_5)); } inline int32_t get_iFirstDayOfWeek_5() const { return ___iFirstDayOfWeek_5; } inline int32_t* get_address_of_iFirstDayOfWeek_5() { return &___iFirstDayOfWeek_5; } inline void set_iFirstDayOfWeek_5(int32_t value) { ___iFirstDayOfWeek_5 = value; } inline static int32_t get_offset_of_iFirstWeekOfYear_6() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iFirstWeekOfYear_6)); } inline int32_t get_iFirstWeekOfYear_6() const { return ___iFirstWeekOfYear_6; } inline int32_t* get_address_of_iFirstWeekOfYear_6() { return &___iFirstWeekOfYear_6; } inline void set_iFirstWeekOfYear_6(int32_t value) { ___iFirstWeekOfYear_6 = value; } inline static int32_t get_offset_of_waCalendars_7() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___waCalendars_7)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_waCalendars_7() const { return ___waCalendars_7; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_waCalendars_7() { return &___waCalendars_7; } inline void set_waCalendars_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___waCalendars_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___waCalendars_7), (void*)value); } inline static int32_t get_offset_of_calendars_8() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___calendars_8)); } inline CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* get_calendars_8() const { return ___calendars_8; } inline CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD** get_address_of_calendars_8() { return &___calendars_8; } inline void set_calendars_8(CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* value) { ___calendars_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendars_8), (void*)value); } inline static int32_t get_offset_of_sISO639Language_9() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sISO639Language_9)); } inline String_t* get_sISO639Language_9() const { return ___sISO639Language_9; } inline String_t** get_address_of_sISO639Language_9() { return &___sISO639Language_9; } inline void set_sISO639Language_9(String_t* value) { ___sISO639Language_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___sISO639Language_9), (void*)value); } inline static int32_t get_offset_of_sRealName_10() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sRealName_10)); } inline String_t* get_sRealName_10() const { return ___sRealName_10; } inline String_t** get_address_of_sRealName_10() { return &___sRealName_10; } inline void set_sRealName_10(String_t* value) { ___sRealName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___sRealName_10), (void*)value); } inline static int32_t get_offset_of_bUseOverrides_11() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___bUseOverrides_11)); } inline bool get_bUseOverrides_11() const { return ___bUseOverrides_11; } inline bool* get_address_of_bUseOverrides_11() { return &___bUseOverrides_11; } inline void set_bUseOverrides_11(bool value) { ___bUseOverrides_11 = value; } inline static int32_t get_offset_of_calendarId_12() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___calendarId_12)); } inline int32_t get_calendarId_12() const { return ___calendarId_12; } inline int32_t* get_address_of_calendarId_12() { return &___calendarId_12; } inline void set_calendarId_12(int32_t value) { ___calendarId_12 = value; } inline static int32_t get_offset_of_numberIndex_13() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___numberIndex_13)); } inline int32_t get_numberIndex_13() const { return ___numberIndex_13; } inline int32_t* get_address_of_numberIndex_13() { return &___numberIndex_13; } inline void set_numberIndex_13(int32_t value) { ___numberIndex_13 = value; } inline static int32_t get_offset_of_iDefaultAnsiCodePage_14() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultAnsiCodePage_14)); } inline int32_t get_iDefaultAnsiCodePage_14() const { return ___iDefaultAnsiCodePage_14; } inline int32_t* get_address_of_iDefaultAnsiCodePage_14() { return &___iDefaultAnsiCodePage_14; } inline void set_iDefaultAnsiCodePage_14(int32_t value) { ___iDefaultAnsiCodePage_14 = value; } inline static int32_t get_offset_of_iDefaultOemCodePage_15() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultOemCodePage_15)); } inline int32_t get_iDefaultOemCodePage_15() const { return ___iDefaultOemCodePage_15; } inline int32_t* get_address_of_iDefaultOemCodePage_15() { return &___iDefaultOemCodePage_15; } inline void set_iDefaultOemCodePage_15(int32_t value) { ___iDefaultOemCodePage_15 = value; } inline static int32_t get_offset_of_iDefaultMacCodePage_16() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultMacCodePage_16)); } inline int32_t get_iDefaultMacCodePage_16() const { return ___iDefaultMacCodePage_16; } inline int32_t* get_address_of_iDefaultMacCodePage_16() { return &___iDefaultMacCodePage_16; } inline void set_iDefaultMacCodePage_16(int32_t value) { ___iDefaultMacCodePage_16 = value; } inline static int32_t get_offset_of_iDefaultEbcdicCodePage_17() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultEbcdicCodePage_17)); } inline int32_t get_iDefaultEbcdicCodePage_17() const { return ___iDefaultEbcdicCodePage_17; } inline int32_t* get_address_of_iDefaultEbcdicCodePage_17() { return &___iDefaultEbcdicCodePage_17; } inline void set_iDefaultEbcdicCodePage_17(int32_t value) { ___iDefaultEbcdicCodePage_17 = value; } inline static int32_t get_offset_of_isRightToLeft_18() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___isRightToLeft_18)); } inline bool get_isRightToLeft_18() const { return ___isRightToLeft_18; } inline bool* get_address_of_isRightToLeft_18() { return &___isRightToLeft_18; } inline void set_isRightToLeft_18(bool value) { ___isRightToLeft_18 = value; } inline static int32_t get_offset_of_sListSeparator_19() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sListSeparator_19)); } inline String_t* get_sListSeparator_19() const { return ___sListSeparator_19; } inline String_t** get_address_of_sListSeparator_19() { return &___sListSeparator_19; } inline void set_sListSeparator_19(String_t* value) { ___sListSeparator_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___sListSeparator_19), (void*)value); } }; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_StaticFields { public: // System.Globalization.CultureData System.Globalization.CultureData::s_Invariant CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___s_Invariant_20; public: inline static int32_t get_offset_of_s_Invariant_20() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_StaticFields, ___s_Invariant_20)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_s_Invariant_20() const { return ___s_Invariant_20; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_s_Invariant_20() { return &___s_Invariant_20; } inline void set_s_Invariant_20(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___s_Invariant_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_20), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke { char* ___sAM1159_0; char* ___sPM2359_1; char* ___sTimeSeparator_2; char** ___saLongTimes_3; char** ___saShortTimes_4; int32_t ___iFirstDayOfWeek_5; int32_t ___iFirstWeekOfYear_6; Il2CppSafeArray/*NONE*/* ___waCalendars_7; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke** ___calendars_8; char* ___sISO639Language_9; char* ___sRealName_10; int32_t ___bUseOverrides_11; int32_t ___calendarId_12; int32_t ___numberIndex_13; int32_t ___iDefaultAnsiCodePage_14; int32_t ___iDefaultOemCodePage_15; int32_t ___iDefaultMacCodePage_16; int32_t ___iDefaultEbcdicCodePage_17; int32_t ___isRightToLeft_18; char* ___sListSeparator_19; }; // Native definition for COM marshalling of System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com { Il2CppChar* ___sAM1159_0; Il2CppChar* ___sPM2359_1; Il2CppChar* ___sTimeSeparator_2; Il2CppChar** ___saLongTimes_3; Il2CppChar** ___saShortTimes_4; int32_t ___iFirstDayOfWeek_5; int32_t ___iFirstWeekOfYear_6; Il2CppSafeArray/*NONE*/* ___waCalendars_7; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com** ___calendars_8; Il2CppChar* ___sISO639Language_9; Il2CppChar* ___sRealName_10; int32_t ___bUseOverrides_11; int32_t ___calendarId_12; int32_t ___numberIndex_13; int32_t ___iDefaultAnsiCodePage_14; int32_t ___iDefaultOemCodePage_15; int32_t ___iDefaultMacCodePage_16; int32_t ___iDefaultEbcdicCodePage_17; int32_t ___isRightToLeft_18; Il2CppChar* ___sListSeparator_19; }; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Globalization.EncodingTable struct EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D : public RuntimeObject { public: public: }; struct EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields { public: // System.Globalization.InternalEncodingDataItem[] System.Globalization.EncodingTable::encodingDataPtr InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* ___encodingDataPtr_0; // System.Globalization.InternalCodePageDataItem[] System.Globalization.EncodingTable::codePageDataPtr InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* ___codePageDataPtr_1; // System.Int32 System.Globalization.EncodingTable::lastEncodingItem int32_t ___lastEncodingItem_2; // System.Collections.Hashtable System.Globalization.EncodingTable::hashByName Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashByName_3; // System.Collections.Hashtable System.Globalization.EncodingTable::hashByCodePage Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashByCodePage_4; public: inline static int32_t get_offset_of_encodingDataPtr_0() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___encodingDataPtr_0)); } inline InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* get_encodingDataPtr_0() const { return ___encodingDataPtr_0; } inline InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68** get_address_of_encodingDataPtr_0() { return &___encodingDataPtr_0; } inline void set_encodingDataPtr_0(InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* value) { ___encodingDataPtr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodingDataPtr_0), (void*)value); } inline static int32_t get_offset_of_codePageDataPtr_1() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___codePageDataPtr_1)); } inline InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* get_codePageDataPtr_1() const { return ___codePageDataPtr_1; } inline InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834** get_address_of_codePageDataPtr_1() { return &___codePageDataPtr_1; } inline void set_codePageDataPtr_1(InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* value) { ___codePageDataPtr_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codePageDataPtr_1), (void*)value); } inline static int32_t get_offset_of_lastEncodingItem_2() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___lastEncodingItem_2)); } inline int32_t get_lastEncodingItem_2() const { return ___lastEncodingItem_2; } inline int32_t* get_address_of_lastEncodingItem_2() { return &___lastEncodingItem_2; } inline void set_lastEncodingItem_2(int32_t value) { ___lastEncodingItem_2 = value; } inline static int32_t get_offset_of_hashByName_3() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___hashByName_3)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashByName_3() const { return ___hashByName_3; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashByName_3() { return &___hashByName_3; } inline void set_hashByName_3(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___hashByName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashByName_3), (void*)value); } inline static int32_t get_offset_of_hashByCodePage_4() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___hashByCodePage_4)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashByCodePage_4() const { return ___hashByCodePage_4; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashByCodePage_4() { return &___hashByCodePage_4; } inline void set_hashByCodePage_4(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___hashByCodePage_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashByCodePage_4), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Resources.ResourceSet struct ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE : public RuntimeObject { public: // System.Resources.IResourceReader System.Resources.ResourceSet::Reader RuntimeObject* ___Reader_0; // System.Collections.Hashtable System.Resources.ResourceSet::Table Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___Table_1; // System.Collections.Hashtable System.Resources.ResourceSet::_caseInsensitiveTable Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____caseInsensitiveTable_2; public: inline static int32_t get_offset_of_Reader_0() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ___Reader_0)); } inline RuntimeObject* get_Reader_0() const { return ___Reader_0; } inline RuntimeObject** get_address_of_Reader_0() { return &___Reader_0; } inline void set_Reader_0(RuntimeObject* value) { ___Reader_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Reader_0), (void*)value); } inline static int32_t get_offset_of_Table_1() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ___Table_1)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_Table_1() const { return ___Table_1; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_Table_1() { return &___Table_1; } inline void set_Table_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___Table_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Table_1), (void*)value); } inline static int32_t get_offset_of__caseInsensitiveTable_2() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ____caseInsensitiveTable_2)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__caseInsensitiveTable_2() const { return ____caseInsensitiveTable_2; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__caseInsensitiveTable_2() { return &____caseInsensitiveTable_2; } inline void set__caseInsensitiveTable_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ____caseInsensitiveTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____caseInsensitiveTable_2), (void*)value); } }; // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject { public: public: }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : public RuntimeObject { public: // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t * ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject * ___m_stackTrace_1; public: inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_Exception_0)); } inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; } inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; } inline void set_m_Exception_0(Exception_t * value) { ___m_Exception_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Exception_0), (void*)value); } inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_stackTrace_1)); } inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; } inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; } inline void set_m_stackTrace_1(RuntimeObject * value) { ___m_stackTrace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stackTrace_1), (void*)value); } }; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 : public RuntimeObject { public: // System.Collections.Generic.IList`1<System.Object> System.Runtime.Serialization.SafeSerializationManager::m_serializedStates RuntimeObject* ___m_serializedStates_0; // System.Runtime.Serialization.SerializationInfo System.Runtime.Serialization.SafeSerializationManager::m_savedSerializationInfo SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___m_savedSerializationInfo_1; // System.Object System.Runtime.Serialization.SafeSerializationManager::m_realObject RuntimeObject * ___m_realObject_2; // System.RuntimeType System.Runtime.Serialization.SafeSerializationManager::m_realType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___m_realType_3; // System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs> System.Runtime.Serialization.SafeSerializationManager::SerializeObjectState EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * ___SerializeObjectState_4; public: inline static int32_t get_offset_of_m_serializedStates_0() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_serializedStates_0)); } inline RuntimeObject* get_m_serializedStates_0() const { return ___m_serializedStates_0; } inline RuntimeObject** get_address_of_m_serializedStates_0() { return &___m_serializedStates_0; } inline void set_m_serializedStates_0(RuntimeObject* value) { ___m_serializedStates_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializedStates_0), (void*)value); } inline static int32_t get_offset_of_m_savedSerializationInfo_1() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_savedSerializationInfo_1)); } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get_m_savedSerializationInfo_1() const { return ___m_savedSerializationInfo_1; } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of_m_savedSerializationInfo_1() { return &___m_savedSerializationInfo_1; } inline void set_m_savedSerializationInfo_1(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value) { ___m_savedSerializationInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_savedSerializationInfo_1), (void*)value); } inline static int32_t get_offset_of_m_realObject_2() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_realObject_2)); } inline RuntimeObject * get_m_realObject_2() const { return ___m_realObject_2; } inline RuntimeObject ** get_address_of_m_realObject_2() { return &___m_realObject_2; } inline void set_m_realObject_2(RuntimeObject * value) { ___m_realObject_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_realObject_2), (void*)value); } inline static int32_t get_offset_of_m_realType_3() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_realType_3)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_m_realType_3() const { return ___m_realType_3; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_m_realType_3() { return &___m_realType_3; } inline void set_m_realType_3(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___m_realType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_realType_3), (void*)value); } inline static int32_t get_offset_of_SerializeObjectState_4() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___SerializeObjectState_4)); } inline EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * get_SerializeObjectState_4() const { return ___SerializeObjectState_4; } inline EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 ** get_address_of_SerializeObjectState_4() { return &___SerializeObjectState_4; } inline void set_SerializeObjectState_4(EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * value) { ___SerializeObjectState_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializeObjectState_4), (void*)value); } }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value); } inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value); } inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value); } inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject { public: public: }; struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value); } }; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD : public RuntimeObject { public: // System.Int32 System.Version::_Major int32_t ____Major_0; // System.Int32 System.Version::_Minor int32_t ____Minor_1; // System.Int32 System.Version::_Build int32_t ____Build_2; // System.Int32 System.Version::_Revision int32_t ____Revision_3; public: inline static int32_t get_offset_of__Major_0() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Major_0)); } inline int32_t get__Major_0() const { return ____Major_0; } inline int32_t* get_address_of__Major_0() { return &____Major_0; } inline void set__Major_0(int32_t value) { ____Major_0 = value; } inline static int32_t get_offset_of__Minor_1() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Minor_1)); } inline int32_t get__Minor_1() const { return ____Minor_1; } inline int32_t* get_address_of__Minor_1() { return &____Minor_1; } inline void set__Minor_1(int32_t value) { ____Minor_1 = value; } inline static int32_t get_offset_of__Build_2() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Build_2)); } inline int32_t get__Build_2() const { return ____Build_2; } inline int32_t* get_address_of__Build_2() { return &____Build_2; } inline void set__Build_2(int32_t value) { ____Build_2 = value; } inline static int32_t get_offset_of__Revision_3() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Revision_3)); } inline int32_t get__Revision_3() const { return ____Revision_3; } inline int32_t* get_address_of__Revision_3() { return &____Revision_3; } inline void set__Revision_3(int32_t value) { ____Revision_3 = value; } }; struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields { public: // System.Char[] System.Version::SeparatorsArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___SeparatorsArray_4; public: inline static int32_t get_offset_of_SeparatorsArray_4() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields, ___SeparatorsArray_4)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_SeparatorsArray_4() const { return ___SeparatorsArray_4; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_SeparatorsArray_4() { return &___SeparatorsArray_4; } inline void set_SeparatorsArray_4(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___SeparatorsArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeparatorsArray_4), (void*)value); } }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998]; }; public: }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object> struct Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___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(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___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_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.String,System.Type> struct Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue Type_t * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___dictionary_0)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___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(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___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_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___currentValue_3)); } inline Type_t * get_currentValue_3() const { return ___currentValue_3; } inline Type_t ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Type_t * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Diagnostics.Tracing.FieldMetadata> struct Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___list_0)); } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * get_list_0() const { return ___list_0; } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___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(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___current_3)); } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * get_current_3() const { return ___current_3; } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Globalization.CultureInfo> struct Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___list_0)); } inline List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * get_list_0() const { return ___list_0; } inline List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___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(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___current_3)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_current_3() const { return ___current_3; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Int32> struct Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___list_0)); } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_list_0() const { return ___list_0; } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___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(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<System.Object> struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___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(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.UInt64> struct Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current uint64_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___list_0)); } inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * get_list_0() const { return ___list_0; } inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___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(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___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_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___current_3)); } inline uint64_t get_current_3() const { return ___current_3; } inline uint64_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint64_t value) { ___current_3 = value; } }; // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object> struct ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA { public: // ItemType[] System.Diagnostics.Tracing.ConcurrentSet`2::items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_0; public: inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA, ___items_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_items_0() const { return ___items_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_items_0() { return &___items_0; } inline void set_items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } }; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 { public: // ItemType[] System.Diagnostics.Tracing.ConcurrentSet`2::items NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* ___items_0; public: inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95, ___items_0)); } inline NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* get_items_0() const { return ___items_0; } inline NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7** get_address_of_items_0() { return &___items_0; } inline void set_items_0(NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } }; // System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 { public: // System.Byte* System.Diagnostics.Tracing.DataCollector::scratchEnd uint8_t* ___scratchEnd_1; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datasEnd EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; // System.Runtime.InteropServices.GCHandle* System.Diagnostics.Tracing.DataCollector::pinsEnd GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datasStart EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; // System.Byte* System.Diagnostics.Tracing.DataCollector::scratch uint8_t* ___scratch_5; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datas EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; // System.Runtime.InteropServices.GCHandle* System.Diagnostics.Tracing.DataCollector::pins GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; // System.Byte[] System.Diagnostics.Tracing.DataCollector::buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_8; // System.Int32 System.Diagnostics.Tracing.DataCollector::bufferPos int32_t ___bufferPos_9; // System.Int32 System.Diagnostics.Tracing.DataCollector::bufferNesting int32_t ___bufferNesting_10; // System.Boolean System.Diagnostics.Tracing.DataCollector::writingScalars bool ___writingScalars_11; public: inline static int32_t get_offset_of_scratchEnd_1() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___scratchEnd_1)); } inline uint8_t* get_scratchEnd_1() const { return ___scratchEnd_1; } inline uint8_t** get_address_of_scratchEnd_1() { return &___scratchEnd_1; } inline void set_scratchEnd_1(uint8_t* value) { ___scratchEnd_1 = value; } inline static int32_t get_offset_of_datasEnd_2() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datasEnd_2)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datasEnd_2() const { return ___datasEnd_2; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datasEnd_2() { return &___datasEnd_2; } inline void set_datasEnd_2(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datasEnd_2 = value; } inline static int32_t get_offset_of_pinsEnd_3() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___pinsEnd_3)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_pinsEnd_3() const { return ___pinsEnd_3; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ** get_address_of_pinsEnd_3() { return &___pinsEnd_3; } inline void set_pinsEnd_3(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * value) { ___pinsEnd_3 = value; } inline static int32_t get_offset_of_datasStart_4() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datasStart_4)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datasStart_4() const { return ___datasStart_4; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datasStart_4() { return &___datasStart_4; } inline void set_datasStart_4(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datasStart_4 = value; } inline static int32_t get_offset_of_scratch_5() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___scratch_5)); } inline uint8_t* get_scratch_5() const { return ___scratch_5; } inline uint8_t** get_address_of_scratch_5() { return &___scratch_5; } inline void set_scratch_5(uint8_t* value) { ___scratch_5 = value; } inline static int32_t get_offset_of_datas_6() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datas_6)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datas_6() const { return ___datas_6; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datas_6() { return &___datas_6; } inline void set_datas_6(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datas_6 = value; } inline static int32_t get_offset_of_pins_7() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___pins_7)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_pins_7() const { return ___pins_7; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ** get_address_of_pins_7() { return &___pins_7; } inline void set_pins_7(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * value) { ___pins_7 = value; } inline static int32_t get_offset_of_buffer_8() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___buffer_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_8() const { return ___buffer_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_8() { return &___buffer_8; } inline void set_buffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buffer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_8), (void*)value); } inline static int32_t get_offset_of_bufferPos_9() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___bufferPos_9)); } inline int32_t get_bufferPos_9() const { return ___bufferPos_9; } inline int32_t* get_address_of_bufferPos_9() { return &___bufferPos_9; } inline void set_bufferPos_9(int32_t value) { ___bufferPos_9 = value; } inline static int32_t get_offset_of_bufferNesting_10() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___bufferNesting_10)); } inline int32_t get_bufferNesting_10() const { return ___bufferNesting_10; } inline int32_t* get_address_of_bufferNesting_10() { return &___bufferNesting_10; } inline void set_bufferNesting_10(int32_t value) { ___bufferNesting_10 = value; } inline static int32_t get_offset_of_writingScalars_11() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___writingScalars_11)); } inline bool get_writingScalars_11() const { return ___writingScalars_11; } inline bool* get_address_of_writingScalars_11() { return &___writingScalars_11; } inline void set_writingScalars_11(bool value) { ___writingScalars_11 = value; } }; struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields { public: // System.Diagnostics.Tracing.DataCollector System.Diagnostics.Tracing.DataCollector::ThreadInstance DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 ___ThreadInstance_0; public: inline static int32_t get_offset_of_ThreadInstance_0() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields, ___ThreadInstance_0)); } inline DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 get_ThreadInstance_0() const { return ___ThreadInstance_0; } inline DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * get_address_of_ThreadInstance_0() { return &___ThreadInstance_0; } inline void set_ThreadInstance_0(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 value) { ___ThreadInstance_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___ThreadInstance_0))->___buffer_8), (void*)NULL); } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_marshaled_pinvoke { uint8_t* ___scratchEnd_1; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; uint8_t* ___scratch_5; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; Il2CppSafeArray/*NONE*/* ___buffer_8; int32_t ___bufferPos_9; int32_t ___bufferNesting_10; int32_t ___writingScalars_11; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_marshaled_com { uint8_t* ___scratchEnd_1; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; uint8_t* ___scratch_5; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; Il2CppSafeArray/*NONE*/* ___buffer_8; int32_t ___bufferPos_9; int32_t ___bufferNesting_10; int32_t ___writingScalars_11; }; // System.Diagnostics.Tracing.EventDescriptor struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId int32_t ___m_traceloggingId_0; }; #pragma pack(pop, tp) struct { int32_t ___m_traceloggingId_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id uint16_t ___m_id_1; }; #pragma pack(pop, tp) struct { uint16_t ___m_id_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_version_2_OffsetPadding[2]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version uint8_t ___m_version_2; }; #pragma pack(pop, tp) struct { char ___m_version_2_OffsetPadding_forAlignmentOnly[2]; uint8_t ___m_version_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_channel_3_OffsetPadding[3]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel uint8_t ___m_channel_3; }; #pragma pack(pop, tp) struct { char ___m_channel_3_OffsetPadding_forAlignmentOnly[3]; uint8_t ___m_channel_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_level_4_OffsetPadding[4]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level uint8_t ___m_level_4; }; #pragma pack(pop, tp) struct { char ___m_level_4_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_level_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_opcode_5_OffsetPadding[5]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode uint8_t ___m_opcode_5; }; #pragma pack(pop, tp) struct { char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5]; uint8_t ___m_opcode_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_task_6_OffsetPadding[6]; // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task uint16_t ___m_task_6; }; #pragma pack(pop, tp) struct { char ___m_task_6_OffsetPadding_forAlignmentOnly[6]; uint16_t ___m_task_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_keywords_7_OffsetPadding[8]; // System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords int64_t ___m_keywords_7; }; #pragma pack(pop, tp) struct { char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8]; int64_t ___m_keywords_7_forAlignmentOnly; }; }; }; uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16]; }; public: inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); } inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; } inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; } inline void set_m_traceloggingId_0(int32_t value) { ___m_traceloggingId_0 = value; } inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); } inline uint16_t get_m_id_1() const { return ___m_id_1; } inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; } inline void set_m_id_1(uint16_t value) { ___m_id_1 = value; } inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); } inline uint8_t get_m_version_2() const { return ___m_version_2; } inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; } inline void set_m_version_2(uint8_t value) { ___m_version_2 = value; } inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); } inline uint8_t get_m_channel_3() const { return ___m_channel_3; } inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; } inline void set_m_channel_3(uint8_t value) { ___m_channel_3 = value; } inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); } inline uint8_t get_m_level_4() const { return ___m_level_4; } inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; } inline void set_m_level_4(uint8_t value) { ___m_level_4 = value; } inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); } inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; } inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; } inline void set_m_opcode_5(uint8_t value) { ___m_opcode_5 = value; } inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); } inline uint16_t get_m_task_6() const { return ___m_task_6; } inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; } inline void set_m_task_6(uint16_t value) { ___m_task_6 = value; } inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); } inline int64_t get_m_keywords_7() const { return ___m_keywords_7; } inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; } inline void set_m_keywords_7(int64_t value) { ___m_keywords_7 = value; } }; // System.Diagnostics.Tracing.EventSource_EventData struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 { public: // System.Int64 System.Diagnostics.Tracing.EventSource_EventData::m_Ptr int64_t ___m_Ptr_0; // System.Int32 System.Diagnostics.Tracing.EventSource_EventData::m_Size int32_t ___m_Size_1; // System.Int32 System.Diagnostics.Tracing.EventSource_EventData::m_Reserved int32_t ___m_Reserved_2; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Ptr_0)); } inline int64_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline int64_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(int64_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_Size_1() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Size_1)); } inline int32_t get_m_Size_1() const { return ___m_Size_1; } inline int32_t* get_address_of_m_Size_1() { return &___m_Size_1; } inline void set_m_Size_1(int32_t value) { ___m_Size_1 = value; } inline static int32_t get_offset_of_m_Reserved_2() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Reserved_2)); } inline int32_t get_m_Reserved_2() const { return ___m_Reserved_2; } inline int32_t* get_address_of_m_Reserved_2() { return &___m_Reserved_2; } inline void set_m_Reserved_2(int32_t value) { ___m_Reserved_2 = value; } }; // System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 { public: // System.Int64 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::length int64_t ___length_0; // System.UInt32[] System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::w UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___w_1; // System.Int32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::pos int32_t ___pos_2; public: inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___length_0)); } inline int64_t get_length_0() const { return ___length_0; } inline int64_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int64_t value) { ___length_0 = value; } inline static int32_t get_offset_of_w_1() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___w_1)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_w_1() const { return ___w_1; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_w_1() { return &___w_1; } inline void set_w_1(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___w_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___w_1), (void*)value); } inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___pos_2)); } inline int32_t get_pos_2() const { return ___pos_2; } inline int32_t* get_address_of_pos_2() { return &___pos_2; } inline void set_pos_2(int32_t value) { ___pos_2 = value; } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke { int64_t ___length_0; Il2CppSafeArray/*NONE*/* ___w_1; int32_t ___pos_2; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com { int64_t ___length_0; Il2CppSafeArray/*NONE*/* ___w_1; int32_t ___pos_2; }; // System.Diagnostics.Tracing.EventSourceAttribute struct EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.String System.Diagnostics.Tracing.EventSourceAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_0; // System.String System.Diagnostics.Tracing.EventSourceAttribute::<Guid>k__BackingField String_t* ___U3CGuidU3Ek__BackingField_1; // System.String System.Diagnostics.Tracing.EventSourceAttribute::<LocalizationResources>k__BackingField String_t* ___U3CLocalizationResourcesU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CNameU3Ek__BackingField_0)); } inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; } inline void set_U3CNameU3Ek__BackingField_0(String_t* value) { ___U3CNameU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CGuidU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CGuidU3Ek__BackingField_1)); } inline String_t* get_U3CGuidU3Ek__BackingField_1() const { return ___U3CGuidU3Ek__BackingField_1; } inline String_t** get_address_of_U3CGuidU3Ek__BackingField_1() { return &___U3CGuidU3Ek__BackingField_1; } inline void set_U3CGuidU3Ek__BackingField_1(String_t* value) { ___U3CGuidU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CGuidU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CLocalizationResourcesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CLocalizationResourcesU3Ek__BackingField_2)); } inline String_t* get_U3CLocalizationResourcesU3Ek__BackingField_2() const { return ___U3CLocalizationResourcesU3Ek__BackingField_2; } inline String_t** get_address_of_U3CLocalizationResourcesU3Ek__BackingField_2() { return &___U3CLocalizationResourcesU3Ek__BackingField_2; } inline void set_U3CLocalizationResourcesU3Ek__BackingField_2(String_t* value) { ___U3CLocalizationResourcesU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLocalizationResourcesU3Ek__BackingField_2), (void*)value); } }; // System.Diagnostics.Tracing.EventSourceCreatedEventArgs struct EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventSourceCreatedEventArgs::<EventSource>k__BackingField EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___U3CEventSourceU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CEventSourceU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863, ___U3CEventSourceU3Ek__BackingField_1)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_U3CEventSourceU3Ek__BackingField_1() const { return ___U3CEventSourceU3Ek__BackingField_1; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_U3CEventSourceU3Ek__BackingField_1() { return &___U3CEventSourceU3Ek__BackingField_1; } inline void set_U3CEventSourceU3Ek__BackingField_1(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___U3CEventSourceU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEventSourceU3Ek__BackingField_1), (void*)value); } }; // System.Diagnostics.Tracing.NonEventAttribute struct NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: public: }; // System.Diagnostics.Tracing.SessionMask struct SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE { public: // System.UInt32 System.Diagnostics.Tracing.SessionMask::m_mask uint32_t ___m_mask_0; public: inline static int32_t get_offset_of_m_mask_0() { return static_cast<int32_t>(offsetof(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE, ___m_mask_0)); } inline uint32_t get_m_mask_0() const { return ___m_mask_0; } inline uint32_t* get_address_of_m_mask_0() { return &___m_mask_0; } inline void set_m_mask_0(uint32_t value) { ___m_mask_0 = value; } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.FlagsAttribute struct FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: public: }; // System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 { public: // System.UInt16 System.Globalization.InternalCodePageDataItem::codePage uint16_t ___codePage_0; // System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage uint16_t ___uiFamilyCodePage_1; // System.UInt32 System.Globalization.InternalCodePageDataItem::flags uint32_t ___flags_2; // System.String System.Globalization.InternalCodePageDataItem::Names String_t* ___Names_3; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); } inline uint16_t get_codePage_0() const { return ___codePage_0; } inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(uint16_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); } inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; } inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; } inline void set_uiFamilyCodePage_1(uint16_t value) { ___uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); } inline uint32_t get_flags_2() const { return ___flags_2; } inline uint32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(uint32_t value) { ___flags_2 = value; } inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); } inline String_t* get_Names_3() const { return ___Names_3; } inline String_t** get_address_of_Names_3() { return &___Names_3; } inline void set_Names_3(String_t* value) { ___Names_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; char* ___Names_3; }; // Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; Il2CppChar* ___Names_3; }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value); } }; // System.IO.TextReader struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: public: }; struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields { public: // System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1; // System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value); } inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA { public: // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject * ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 { public: // System.Threading.InternalThread System.Threading.Thread::internal_thread InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___internal_thread_6; // System.Object System.Threading.Thread::m_ThreadStartArg RuntimeObject * ___m_ThreadStartArg_7; // System.Object System.Threading.Thread::pending_exception RuntimeObject * ___pending_exception_8; // System.Security.Principal.IPrincipal System.Threading.Thread::principal RuntimeObject* ___principal_9; // System.Int32 System.Threading.Thread::principal_version int32_t ___principal_version_10; // System.MulticastDelegate System.Threading.Thread::m_Delegate MulticastDelegate_t * ___m_Delegate_12; // System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ExecutionContext_13; // System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope bool ___m_ExecutionContextBelongsToOuterScope_14; public: inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___internal_thread_6)); } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * get_internal_thread_6() const { return ___internal_thread_6; } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 ** get_address_of_internal_thread_6() { return &___internal_thread_6; } inline void set_internal_thread_6(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * value) { ___internal_thread_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___internal_thread_6), (void*)value); } inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ThreadStartArg_7)); } inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; } inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; } inline void set_m_ThreadStartArg_7(RuntimeObject * value) { ___m_ThreadStartArg_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ThreadStartArg_7), (void*)value); } inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___pending_exception_8)); } inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; } inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; } inline void set_pending_exception_8(RuntimeObject * value) { ___pending_exception_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___pending_exception_8), (void*)value); } inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_9)); } inline RuntimeObject* get_principal_9() const { return ___principal_9; } inline RuntimeObject** get_address_of_principal_9() { return &___principal_9; } inline void set_principal_9(RuntimeObject* value) { ___principal_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___principal_9), (void*)value); } inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_version_10)); } inline int32_t get_principal_version_10() const { return ___principal_version_10; } inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; } inline void set_principal_version_10(int32_t value) { ___principal_version_10 = value; } inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_Delegate_12)); } inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; } inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; } inline void set_m_Delegate_12(MulticastDelegate_t * value) { ___m_Delegate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Delegate_12), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContext_13)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; } inline void set_m_ExecutionContext_13(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_ExecutionContext_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ExecutionContext_13), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContextBelongsToOuterScope_14)); } inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; } inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; } inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value) { ___m_ExecutionContextBelongsToOuterScope_14 = value; } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields { public: // System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___s_LocalDataStoreMgr_0; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentCulture_4; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentUICulture_5; public: inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_LocalDataStoreMgr_0)); } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; } inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value) { ___s_LocalDataStoreMgr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStoreMgr_0), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentCulture_4)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; } inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentCulture_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentCulture_4), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentUICulture_5)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; } inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentUICulture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentUICulture_5), (void*)value); } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields { public: // System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ___s_LocalDataStore_1; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentCulture_2; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentUICulture_3; // System.Threading.Thread System.Threading.Thread::current_thread Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current_thread_11; public: inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___s_LocalDataStore_1)); } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; } inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value) { ___s_LocalDataStore_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStore_1), (void*)value); } inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentCulture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; } inline void set_m_CurrentCulture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentCulture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentCulture_2), (void*)value); } inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentUICulture_3)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; } inline void set_m_CurrentUICulture_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentUICulture_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentUICulture_3), (void*)value); } inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___current_thread_11)); } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_current_thread_11() const { return ___current_thread_11; } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_current_thread_11() { return &___current_thread_11; } inline void set_current_thread_11(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value) { ___current_thread_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_thread_11), (void*)value); } }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields { public: // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22 __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_2; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40 __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604 __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3 __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5 __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_16; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851 __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444 __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_28; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3 __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_48; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_49; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_54; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154 __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_61; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_62; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396 __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; // System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_64; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_65; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83 __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_69; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45 __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8 __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401 __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; // System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865 int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_80; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_81; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006 __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_90; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_91; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520 __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429 __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; public: inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value; } inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value) { ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value; } inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value) { ___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value; } inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value; } inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value; } inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value; } inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value) { ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value; } inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value) { ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value; } inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value; } inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value; } inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value; } inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value; } inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value; } inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value; } inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value) { ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value; } inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value) { ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value; } inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value) { ___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value; } inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value; } inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value; } inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value) { ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value; } inline static int32_t get_offset_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() const { return ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return &___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline void set_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20 = value; } inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21 = value; } inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22 = value; } inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23)); } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value) { ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23 = value; } inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24 = value; } inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25 = value; } inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26 = value; } inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27 = value; } inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_28)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_28() const { return ___536422B321459B242ADED7240B7447E904E083E3_28; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return &___536422B321459B242ADED7240B7447E904E083E3_28; } inline void set_U3536422B321459B242ADED7240B7447E904E083E3_28(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___536422B321459B242ADED7240B7447E904E083E3_28 = value; } inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29)); } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value) { ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29 = value; } inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_30)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_30(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___57218C316B6921E2CD61027A2387EDC31A2D9471_30 = value; } inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31 = value; } inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32 = value; } inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33 = value; } inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34)); } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value) { ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34 = value; } inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35 = value; } inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36)); } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value) { ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36 = value; } inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37 = value; } inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38 = value; } inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39 = value; } inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40 = value; } inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41 = value; } inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_42)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_42(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___6FC754859E4EC74E447048364B216D825C6F8FE7_42 = value; } inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_43)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___704939CD172085D1295FCE3F1D92431D685D7AA2_43 = value; } inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44 = value; } inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45 = value; } inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46 = value; } inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47)); } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value) { ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47 = value; } inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_48)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_48() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_48(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___81917F1E21F3C22B9F916994547A614FB03E968E_48 = value; } inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_49)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_49(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___823566DA642D6EA356E15585921F2A4CA23D6760_49 = value; } inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50 = value; } inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51 = value; } inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52 = value; } inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_53)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_53(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___89A040451C8CC5C8FB268BE44BDD74964C104155_53 = value; } inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_54)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_54() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return &___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_54(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8CAA092E783257106251246FF5C97F88D28517A6_54 = value; } inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55)); } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value) { ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55 = value; } inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56 = value; } inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_57)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_57(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___93A63E90605400F34B49F0EB3361D23C89164BDA_57 = value; } inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58 = value; } inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_59)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_59(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___95264589E48F94B7857CFF398FB72A537E13EEE2_59 = value; } inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60 = value; } inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_61)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_61() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return &___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_61(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___973417296623D8DC6961B09664E54039E44CA5D8_61 = value; } inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_62)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_62() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___A0074C15377C0C870B055927403EA9FA7A349D12_62 = value; } inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63)); } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_63(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value) { ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63 = value; } inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_64)); } inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_64() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_64(int64_t value) { ___A13AA52274D951A18029131A8DDECF76B569A15D_64 = value; } inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_65)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_65() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return &___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline void set_A5444763673307F6828C748D4B9708CFC02B0959_65(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___A5444763673307F6828C748D4B9708CFC02B0959_65 = value; } inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66 = value; } inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_67(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67 = value; } inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68)); } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_68(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value) { ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68 = value; } inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_69)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_69() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_69(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___AC791C4F39504D1184B73478943D0636258DA7B1_69 = value; } inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_70(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70 = value; } inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71 = value; } inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72 = value; } inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73)); } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value) { ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73 = value; } inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74)); } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value) { ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74 = value; } inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75)); } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_75(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value) { ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75 = value; } inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76 = value; } inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77 = value; } inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78 = value; } inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_79(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79 = value; } inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_80)); } inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_80() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_80(int64_t value) { ___C1A1100642BA9685B30A84D97348484E14AA1865_80 = value; } inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_81)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_81() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_81(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___C6F364A0AD934EFED8909446C215752E565D77C1_81 = value; } inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_82(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82 = value; } inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_83)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_83() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_83(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___CE93C35B755802BC4B3D180716B048FC61701EF7_83 = value; } inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84)); } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value) { ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84 = value; } inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85 = value; } inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_86(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86 = value; } inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87 = value; } inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_88)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_88() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_88(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___E1827270A5FE1C85F5352A66FD87BA747213D006_88 = value; } inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89 = value; } inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_90)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_90() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_90(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___E92B39D8233061927D9ACDE54665E68E7535635A_90 = value; } inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_91)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_91() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return &___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline void set_EA9506959484C55CFE0C139C624DF6060E285866_91(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___EA9506959484C55CFE0C139C624DF6060E285866_91 = value; } inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92)); } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value) { ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92 = value; } inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_93(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93 = value; } inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94 = value; } inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95 = value; } inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_96)); } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_96() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_96(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value) { ___F073AA332018FDA0D572E99448FFF1D6422BD520_96 = value; } inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_97(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97 = value; } inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98 = value; } inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99)); } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_99(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value) { ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99 = value; } inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100 = value; } inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101)); } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value) { ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101 = value; } }; // Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F { public: // System.String Mono.SafeStringMarshal::str String_t* ___str_0; // System.IntPtr Mono.SafeStringMarshal::marshaled_string intptr_t ___marshaled_string_1; public: inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_marshaled_string_1() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___marshaled_string_1)); } inline intptr_t get_marshaled_string_1() const { return ___marshaled_string_1; } inline intptr_t* get_address_of_marshaled_string_1() { return &___marshaled_string_1; } inline void set_marshaled_string_1(intptr_t value) { ___marshaled_string_1 = value; } }; // Native definition for P/Invoke marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_pinvoke { char* ___str_0; intptr_t ___marshaled_string_1; }; // Native definition for COM marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_com { Il2CppChar* ___str_0; intptr_t ___marshaled_string_1; }; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject { public: // System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_10; // System.Int32 System.Collections.Hashtable::count int32_t ___count_11; // System.Int32 System.Collections.Hashtable::occupancy int32_t ___occupancy_12; // System.Int32 System.Collections.Hashtable::loadsize int32_t ___loadsize_13; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version int32_t ___version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress bool ___isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::keys RuntimeObject* ___keys_17; // System.Collections.ICollection System.Collections.Hashtable::values RuntimeObject* ___values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject * ____syncRoot_20; public: inline static int32_t get_offset_of_buckets_10() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_10)); } inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_10() const { return ___buckets_10; } inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_10() { return &___buckets_10; } inline void set_buckets_10(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value) { ___buckets_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value); } inline static int32_t get_offset_of_count_11() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_11)); } inline int32_t get_count_11() const { return ___count_11; } inline int32_t* get_address_of_count_11() { return &___count_11; } inline void set_count_11(int32_t value) { ___count_11 = value; } inline static int32_t get_offset_of_occupancy_12() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_12)); } inline int32_t get_occupancy_12() const { return ___occupancy_12; } inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; } inline void set_occupancy_12(int32_t value) { ___occupancy_12 = value; } inline static int32_t get_offset_of_loadsize_13() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_13)); } inline int32_t get_loadsize_13() const { return ___loadsize_13; } inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; } inline void set_loadsize_13(int32_t value) { ___loadsize_13 = value; } inline static int32_t get_offset_of_loadFactor_14() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_14)); } inline float get_loadFactor_14() const { return ___loadFactor_14; } inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; } inline void set_loadFactor_14(float value) { ___loadFactor_14 = value; } inline static int32_t get_offset_of_version_15() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_15)); } inline int32_t get_version_15() const { return ___version_15; } inline int32_t* get_address_of_version_15() { return &___version_15; } inline void set_version_15(int32_t value) { ___version_15 = value; } inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_16)); } inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; } inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; } inline void set_isWriterInProgress_16(bool value) { ___isWriterInProgress_16 = value; } inline static int32_t get_offset_of_keys_17() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_17)); } inline RuntimeObject* get_keys_17() const { return ___keys_17; } inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; } inline void set_keys_17(RuntimeObject* value) { ___keys_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value); } inline static int32_t get_offset_of_values_18() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___values_18)); } inline RuntimeObject* get_values_18() const { return ___values_18; } inline RuntimeObject** get_address_of_values_18() { return &___values_18; } inline void set_values_18(RuntimeObject* value) { ___values_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value); } inline static int32_t get_offset_of__keycomparer_19() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_19)); } inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; } inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; } inline void set__keycomparer_19(RuntimeObject* value) { ____keycomparer_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value); } inline static int32_t get_offset_of__syncRoot_20() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____syncRoot_20)); } inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; } inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; } inline void set__syncRoot_20(RuntimeObject * value) { ____syncRoot_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value); } }; // System.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; } }; // 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; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Diagnostics.StackTrace_TraceFormat struct TraceFormat_t0B4115A5EC115A575F04DFA04F4510C20AF83617 { public: // System.Int32 System.Diagnostics.StackTrace_TraceFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceFormat_t0B4115A5EC115A575F04DFA04F4510C20AF83617, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.ControllerCommand struct ControllerCommand_t4153272266B77F0CC30FFC224F238B4358B36A53 { public: // System.Int32 System.Diagnostics.Tracing.ControllerCommand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ControllerCommand_t4153272266B77F0CC30FFC224F238B4358B36A53, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventActivityOptions struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168 { public: // System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventCommand struct EventCommand_tF27BD5E5E008A8CC5F0434590C486EBD37867550 { public: // System.Int32 System.Diagnostics.Tracing.EventCommand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventCommand_tF27BD5E5E008A8CC5F0434590C486EBD37867550, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventFieldFormat struct EventFieldFormat_t41B223711875BE8417E9C3D48E7A03D21CB71538 { public: // System.Int32 System.Diagnostics.Tracing.EventFieldFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventFieldFormat_t41B223711875BE8417E9C3D48E7A03D21CB71538, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventFieldTags struct EventFieldTags_t88BE34A8AA9B64F6E37F7E372E6318C4EFB8FE40 { public: // System.Int32 System.Diagnostics.Tracing.EventFieldTags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventFieldTags_t88BE34A8AA9B64F6E37F7E372E6318C4EFB8FE40, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventKeywords struct EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942 { public: // System.Int64 System.Diagnostics.Tracing.EventKeywords::value__ int64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942, ___value___2)); } inline int64_t get_value___2() const { return ___value___2; } inline int64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int64_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventLevel struct EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E { public: // System.Int32 System.Diagnostics.Tracing.EventLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventManifestOptions struct EventManifestOptions_tE60966636485328AC4D00850C1FCB9B8E25190DF { public: // System.Int32 System.Diagnostics.Tracing.EventManifestOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventManifestOptions_tE60966636485328AC4D00850C1FCB9B8E25190DF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventOpcode struct EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44 { public: // System.Int32 System.Diagnostics.Tracing.EventOpcode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventProvider_WriteEventErrorCode struct WriteEventErrorCode_t2985FE5E3CE913815E6F506873798D31C6DD347F { public: // System.Int32 System.Diagnostics.Tracing.EventProvider_WriteEventErrorCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WriteEventErrorCode_t2985FE5E3CE913815E6F506873798D31C6DD347F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventSourceSettings struct EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB { public: // System.Int32 System.Diagnostics.Tracing.EventSourceSettings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventTags struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712 { public: // System.Int32 System.Diagnostics.Tracing.EventTags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventTask struct EventTask_tBEC61529FD6426C4863B30C6BDD3CC5E4201E8C9 { public: // System.Int32 System.Diagnostics.Tracing.EventTask::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTask_tBEC61529FD6426C4863B30C6BDD3CC5E4201E8C9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventWrittenEventArgs struct EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.Int32 System.Diagnostics.Tracing.EventWrittenEventArgs::<EventId>k__BackingField int32_t ___U3CEventIdU3Ek__BackingField_1; // System.Guid System.Diagnostics.Tracing.EventWrittenEventArgs::<RelatedActivityId>k__BackingField Guid_t ___U3CRelatedActivityIdU3Ek__BackingField_2; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> System.Diagnostics.Tracing.EventWrittenEventArgs::<Payload>k__BackingField ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * ___U3CPayloadU3Ek__BackingField_3; // System.String System.Diagnostics.Tracing.EventWrittenEventArgs::m_message String_t* ___m_message_4; // System.String System.Diagnostics.Tracing.EventWrittenEventArgs::m_eventName String_t* ___m_eventName_5; // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventWrittenEventArgs::m_eventSource EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___m_eventSource_6; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> System.Diagnostics.Tracing.EventWrittenEventArgs::m_payloadNames ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * ___m_payloadNames_7; public: inline static int32_t get_offset_of_U3CEventIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CEventIdU3Ek__BackingField_1)); } inline int32_t get_U3CEventIdU3Ek__BackingField_1() const { return ___U3CEventIdU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CEventIdU3Ek__BackingField_1() { return &___U3CEventIdU3Ek__BackingField_1; } inline void set_U3CEventIdU3Ek__BackingField_1(int32_t value) { ___U3CEventIdU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CRelatedActivityIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CRelatedActivityIdU3Ek__BackingField_2)); } inline Guid_t get_U3CRelatedActivityIdU3Ek__BackingField_2() const { return ___U3CRelatedActivityIdU3Ek__BackingField_2; } inline Guid_t * get_address_of_U3CRelatedActivityIdU3Ek__BackingField_2() { return &___U3CRelatedActivityIdU3Ek__BackingField_2; } inline void set_U3CRelatedActivityIdU3Ek__BackingField_2(Guid_t value) { ___U3CRelatedActivityIdU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CPayloadU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CPayloadU3Ek__BackingField_3)); } inline ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * get_U3CPayloadU3Ek__BackingField_3() const { return ___U3CPayloadU3Ek__BackingField_3; } inline ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 ** get_address_of_U3CPayloadU3Ek__BackingField_3() { return &___U3CPayloadU3Ek__BackingField_3; } inline void set_U3CPayloadU3Ek__BackingField_3(ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * value) { ___U3CPayloadU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPayloadU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_m_message_4() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_message_4)); } inline String_t* get_m_message_4() const { return ___m_message_4; } inline String_t** get_address_of_m_message_4() { return &___m_message_4; } inline void set_m_message_4(String_t* value) { ___m_message_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_message_4), (void*)value); } inline static int32_t get_offset_of_m_eventName_5() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_eventName_5)); } inline String_t* get_m_eventName_5() const { return ___m_eventName_5; } inline String_t** get_address_of_m_eventName_5() { return &___m_eventName_5; } inline void set_m_eventName_5(String_t* value) { ___m_eventName_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventName_5), (void*)value); } inline static int32_t get_offset_of_m_eventSource_6() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_eventSource_6)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_m_eventSource_6() const { return ___m_eventSource_6; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_m_eventSource_6() { return &___m_eventSource_6; } inline void set_m_eventSource_6(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___m_eventSource_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventSource_6), (void*)value); } inline static int32_t get_offset_of_m_payloadNames_7() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_payloadNames_7)); } inline ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * get_m_payloadNames_7() const { return ___m_payloadNames_7; } inline ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 ** get_address_of_m_payloadNames_7() { return &___m_payloadNames_7; } inline void set_m_payloadNames_7(ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * value) { ___m_payloadNames_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_payloadNames_7), (void*)value); } }; // System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats struct ManifestFormats_t463B40ED85683557A1610A3FD7C1D61953F3112B { public: // System.Byte System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ManifestFormats_t463B40ED85683557A1610A3FD7C1D61953F3112B, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.TraceLoggingDataType struct TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE { public: // System.Int32 System.Diagnostics.Tracing.TraceLoggingDataType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Enum_ParseFailureKind struct ParseFailureKind_tEA92535264CBB0B0838EDDDA2B7203384426BF80 { public: // System.Int32 System.Enum_ParseFailureKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParseFailureKind_tEA92535264CBB0B0838EDDDA2B7203384426BF80, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Environment_SpecialFolder struct SpecialFolder_t5A2C2AE97BD6C2DF95061C8904B2225228AC9BA0 { public: // System.Int32 System.Environment_SpecialFolder::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpecialFolder_t5A2C2AE97BD6C2DF95061C8904B2225228AC9BA0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Environment_SpecialFolderOption struct SpecialFolderOption_tAF2DB60F447738C1E46C3D5660A0CBB0F4480470 { public: // System.Int32 System.Environment_SpecialFolderOption::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpecialFolderOption_tAF2DB60F447738C1E46C3D5660A0CBB0F4480470, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Exception_ExceptionMessageKind struct ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7 { public: // System.Int32 System.Exception_ExceptionMessageKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ExceptionArgument struct ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14 { public: // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ExceptionResource struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.CalendarId struct CalendarId_t6BEB24607D1F90A7EA377D0C97FB4167B5A7B364 { public: // System.UInt16 System.Globalization.CalendarId::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CalendarId_t6BEB24607D1F90A7EA377D0C97FB4167B5A7B364, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; // System.Globalization.CompareOptions struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939 { public: // System.Int32 System.Globalization.CompareOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.CultureTypes struct CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD { public: // System.Int32 System.Globalization.CultureTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.NumberStyles struct NumberStyles_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; } }; // System.Globalization.UnicodeCategory struct UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788 { public: // System.Int32 System.Globalization.UnicodeCategory::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A { public: // System.IO.Stream System.IO.StreamReader::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; // System.Text.Encoding System.IO.StreamReader::encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6; // System.Text.Decoder System.IO.StreamReader::decoder Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7; // System.Byte[] System.IO.StreamReader::byteBuffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8; // System.Char[] System.IO.StreamReader::charBuffer CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9; // System.Byte[] System.IO.StreamReader::_preamble ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10; // System.Int32 System.IO.StreamReader::charPos int32_t ___charPos_11; // System.Int32 System.IO.StreamReader::charLen int32_t ___charLen_12; // System.Int32 System.IO.StreamReader::byteLen int32_t ___byteLen_13; // System.Int32 System.IO.StreamReader::bytePos int32_t ___bytePos_14; // System.Int32 System.IO.StreamReader::_maxCharsPerBuffer int32_t ____maxCharsPerBuffer_15; // System.Boolean System.IO.StreamReader::_detectEncoding bool ____detectEncoding_16; // System.Boolean System.IO.StreamReader::_checkPreamble bool ____checkPreamble_17; // System.Boolean System.IO.StreamReader::_isBlocked bool ____isBlocked_18; // System.Boolean System.IO.StreamReader::_closable bool ____closable_19; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20; public: inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value); } inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; } inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___encoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value); } inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; } inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value) { ___decoder_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value); } inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; } inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___byteBuffer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value); } inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; } inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___charBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value); } inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; } inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____preamble_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value); } inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); } inline int32_t get_charPos_11() const { return ___charPos_11; } inline int32_t* get_address_of_charPos_11() { return &___charPos_11; } inline void set_charPos_11(int32_t value) { ___charPos_11 = value; } inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); } inline int32_t get_charLen_12() const { return ___charLen_12; } inline int32_t* get_address_of_charLen_12() { return &___charLen_12; } inline void set_charLen_12(int32_t value) { ___charLen_12 = value; } inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); } inline int32_t get_byteLen_13() const { return ___byteLen_13; } inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; } inline void set_byteLen_13(int32_t value) { ___byteLen_13 = value; } inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); } inline int32_t get_bytePos_14() const { return ___bytePos_14; } inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; } inline void set_bytePos_14(int32_t value) { ___bytePos_14 = value; } inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); } inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; } inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; } inline void set__maxCharsPerBuffer_15(int32_t value) { ____maxCharsPerBuffer_15 = value; } inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); } inline bool get__detectEncoding_16() const { return ____detectEncoding_16; } inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; } inline void set__detectEncoding_16(bool value) { ____detectEncoding_16 = value; } inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); } inline bool get__checkPreamble_17() const { return ____checkPreamble_17; } inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; } inline void set__checkPreamble_17(bool value) { ____checkPreamble_17 = value; } inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); } inline bool get__isBlocked_18() const { return ____isBlocked_18; } inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; } inline void set__isBlocked_18(bool value) { ____isBlocked_18 = value; } inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); } inline bool get__closable_19() const { return ____closable_19; } inline bool* get_address_of__closable_19() { return &____closable_19; } inline void set__closable_19(bool value) { ____closable_19 = value; } inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; } inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ____asyncReadTask_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value); } }; struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields { public: // System.IO.StreamReader System.IO.StreamReader::Null StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4; public: inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; } inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value) { ___Null_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value); } }; // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.PlatformID struct PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776 { public: // System.Int32 System.PlatformID::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; // System.Reflection.AssemblyContentType struct AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401 { public: // System.Int32 System.Reflection.AssemblyContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.AssemblyNameFlags struct AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256 { public: // System.Int32 System.Reflection.AssemblyNameFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Reflection.ParameterAttributes struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ProcessorArchitecture struct ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7 { public: // System.Int32 System.Reflection.ProcessorArchitecture::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Resources.UltimateResourceFallbackLocation struct UltimateResourceFallbackLocation_t9E7495B2ADC328EB99FD80EDE68A2E5781D2882E { public: // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_t9E7495B2ADC328EB99FD80EDE68A2E5781D2882E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.StringSplitOptions struct StringSplitOptions_t2FA287E15325CC78BF3CA5CDAAA3520BFBD58487 { public: // System.Int32 System.StringSplitOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringSplitOptions_t2FA287E15325CC78BF3CA5CDAAA3520BFBD58487, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.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; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum> struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags> struct KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Diagnostics.Tracing.EventAttribute struct EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Int32 System.Diagnostics.Tracing.EventAttribute::<EventId>k__BackingField int32_t ___U3CEventIdU3Ek__BackingField_0; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventAttribute::<Level>k__BackingField int32_t ___U3CLevelU3Ek__BackingField_1; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventAttribute::<Keywords>k__BackingField int64_t ___U3CKeywordsU3Ek__BackingField_2; // System.Diagnostics.Tracing.EventTask System.Diagnostics.Tracing.EventAttribute::<Task>k__BackingField int32_t ___U3CTaskU3Ek__BackingField_3; // System.Byte System.Diagnostics.Tracing.EventAttribute::<Version>k__BackingField uint8_t ___U3CVersionU3Ek__BackingField_4; // System.String System.Diagnostics.Tracing.EventAttribute::<Message>k__BackingField String_t* ___U3CMessageU3Ek__BackingField_5; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_6; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventAttribute::<ActivityOptions>k__BackingField int32_t ___U3CActivityOptionsU3Ek__BackingField_7; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventAttribute::m_opcode int32_t ___m_opcode_8; // System.Boolean System.Diagnostics.Tracing.EventAttribute::m_opcodeSet bool ___m_opcodeSet_9; public: inline static int32_t get_offset_of_U3CEventIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CEventIdU3Ek__BackingField_0)); } inline int32_t get_U3CEventIdU3Ek__BackingField_0() const { return ___U3CEventIdU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CEventIdU3Ek__BackingField_0() { return &___U3CEventIdU3Ek__BackingField_0; } inline void set_U3CEventIdU3Ek__BackingField_0(int32_t value) { ___U3CEventIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CLevelU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CLevelU3Ek__BackingField_1)); } inline int32_t get_U3CLevelU3Ek__BackingField_1() const { return ___U3CLevelU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CLevelU3Ek__BackingField_1() { return &___U3CLevelU3Ek__BackingField_1; } inline void set_U3CLevelU3Ek__BackingField_1(int32_t value) { ___U3CLevelU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CKeywordsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CKeywordsU3Ek__BackingField_2)); } inline int64_t get_U3CKeywordsU3Ek__BackingField_2() const { return ___U3CKeywordsU3Ek__BackingField_2; } inline int64_t* get_address_of_U3CKeywordsU3Ek__BackingField_2() { return &___U3CKeywordsU3Ek__BackingField_2; } inline void set_U3CKeywordsU3Ek__BackingField_2(int64_t value) { ___U3CKeywordsU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CTaskU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CTaskU3Ek__BackingField_3)); } inline int32_t get_U3CTaskU3Ek__BackingField_3() const { return ___U3CTaskU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CTaskU3Ek__BackingField_3() { return &___U3CTaskU3Ek__BackingField_3; } inline void set_U3CTaskU3Ek__BackingField_3(int32_t value) { ___U3CTaskU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CVersionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CVersionU3Ek__BackingField_4)); } inline uint8_t get_U3CVersionU3Ek__BackingField_4() const { return ___U3CVersionU3Ek__BackingField_4; } inline uint8_t* get_address_of_U3CVersionU3Ek__BackingField_4() { return &___U3CVersionU3Ek__BackingField_4; } inline void set_U3CVersionU3Ek__BackingField_4(uint8_t value) { ___U3CVersionU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CMessageU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CMessageU3Ek__BackingField_5)); } inline String_t* get_U3CMessageU3Ek__BackingField_5() const { return ___U3CMessageU3Ek__BackingField_5; } inline String_t** get_address_of_U3CMessageU3Ek__BackingField_5() { return &___U3CMessageU3Ek__BackingField_5; } inline void set_U3CMessageU3Ek__BackingField_5(String_t* value) { ___U3CMessageU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMessageU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CTagsU3Ek__BackingField_6)); } inline int32_t get_U3CTagsU3Ek__BackingField_6() const { return ___U3CTagsU3Ek__BackingField_6; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_6() { return &___U3CTagsU3Ek__BackingField_6; } inline void set_U3CTagsU3Ek__BackingField_6(int32_t value) { ___U3CTagsU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CActivityOptionsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CActivityOptionsU3Ek__BackingField_7)); } inline int32_t get_U3CActivityOptionsU3Ek__BackingField_7() const { return ___U3CActivityOptionsU3Ek__BackingField_7; } inline int32_t* get_address_of_U3CActivityOptionsU3Ek__BackingField_7() { return &___U3CActivityOptionsU3Ek__BackingField_7; } inline void set_U3CActivityOptionsU3Ek__BackingField_7(int32_t value) { ___U3CActivityOptionsU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_m_opcode_8() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___m_opcode_8)); } inline int32_t get_m_opcode_8() const { return ___m_opcode_8; } inline int32_t* get_address_of_m_opcode_8() { return &___m_opcode_8; } inline void set_m_opcode_8(int32_t value) { ___m_opcode_8 = value; } inline static int32_t get_offset_of_m_opcodeSet_9() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___m_opcodeSet_9)); } inline bool get_m_opcodeSet_9() const { return ___m_opcodeSet_9; } inline bool* get_address_of_m_opcodeSet_9() { return &___m_opcodeSet_9; } inline void set_m_opcodeSet_9(bool value) { ___m_opcodeSet_9 = value; } }; // System.Diagnostics.Tracing.EventDataAttribute struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventDataAttribute::level int32_t ___level_0; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventDataAttribute::opcode int32_t ___opcode_1; // System.String System.Diagnostics.Tracing.EventDataAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_2; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventDataAttribute::<Keywords>k__BackingField int64_t ___U3CKeywordsU3Ek__BackingField_3; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventDataAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_4; public: inline static int32_t get_offset_of_level_0() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___level_0)); } inline int32_t get_level_0() const { return ___level_0; } inline int32_t* get_address_of_level_0() { return &___level_0; } inline void set_level_0(int32_t value) { ___level_0 = value; } inline static int32_t get_offset_of_opcode_1() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___opcode_1)); } inline int32_t get_opcode_1() const { return ___opcode_1; } inline int32_t* get_address_of_opcode_1() { return &___opcode_1; } inline void set_opcode_1(int32_t value) { ___opcode_1 = value; } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CNameU3Ek__BackingField_2)); } inline String_t* get_U3CNameU3Ek__BackingField_2() const { return ___U3CNameU3Ek__BackingField_2; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_2() { return &___U3CNameU3Ek__BackingField_2; } inline void set_U3CNameU3Ek__BackingField_2(String_t* value) { ___U3CNameU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CKeywordsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CKeywordsU3Ek__BackingField_3)); } inline int64_t get_U3CKeywordsU3Ek__BackingField_3() const { return ___U3CKeywordsU3Ek__BackingField_3; } inline int64_t* get_address_of_U3CKeywordsU3Ek__BackingField_3() { return &___U3CKeywordsU3Ek__BackingField_3; } inline void set_U3CKeywordsU3Ek__BackingField_3(int64_t value) { ___U3CKeywordsU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CTagsU3Ek__BackingField_4)); } inline int32_t get_U3CTagsU3Ek__BackingField_4() const { return ___U3CTagsU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_4() { return &___U3CTagsU3Ek__BackingField_4; } inline void set_U3CTagsU3Ek__BackingField_4(int32_t value) { ___U3CTagsU3Ek__BackingField_4 = value; } }; // System.Diagnostics.Tracing.EventFieldAttribute struct EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.EventFieldAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_0; // System.String System.Diagnostics.Tracing.EventFieldAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_1; // System.Diagnostics.Tracing.EventFieldFormat System.Diagnostics.Tracing.EventFieldAttribute::<Format>k__BackingField int32_t ___U3CFormatU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CTagsU3Ek__BackingField_0)); } inline int32_t get_U3CTagsU3Ek__BackingField_0() const { return ___U3CTagsU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_0() { return &___U3CTagsU3Ek__BackingField_0; } inline void set_U3CTagsU3Ek__BackingField_0(int32_t value) { ___U3CTagsU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CNameU3Ek__BackingField_1)); } inline String_t* get_U3CNameU3Ek__BackingField_1() const { return ___U3CNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_1() { return &___U3CNameU3Ek__BackingField_1; } inline void set_U3CNameU3Ek__BackingField_1(String_t* value) { ___U3CNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CFormatU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CFormatU3Ek__BackingField_2)); } inline int32_t get_U3CFormatU3Ek__BackingField_2() const { return ___U3CFormatU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CFormatU3Ek__BackingField_2() { return &___U3CFormatU3Ek__BackingField_2; } inline void set_U3CFormatU3Ek__BackingField_2(int32_t value) { ___U3CFormatU3Ek__BackingField_2 = value; } }; // System.Diagnostics.Tracing.EventProvider struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 : public RuntimeObject { public: // Microsoft.Win32.UnsafeNativeMethods_ManifestEtw_EtwEnableCallback System.Diagnostics.Tracing.EventProvider::m_etwCallback EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * ___m_etwCallback_1; // System.Runtime.InteropServices.GCHandle System.Diagnostics.Tracing.EventProvider::m_thisGCHandle GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___m_thisGCHandle_2; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_regHandle int64_t ___m_regHandle_3; // System.Byte System.Diagnostics.Tracing.EventProvider::m_level uint8_t ___m_level_4; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_anyKeywordMask int64_t ___m_anyKeywordMask_5; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_allKeywordMask int64_t ___m_allKeywordMask_6; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EventProvider_SessionInfo> System.Diagnostics.Tracing.EventProvider::m_liveSessions List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * ___m_liveSessions_7; // System.Boolean System.Diagnostics.Tracing.EventProvider::m_enabled bool ___m_enabled_8; // System.Guid System.Diagnostics.Tracing.EventProvider::m_providerId Guid_t ___m_providerId_9; // System.Boolean System.Diagnostics.Tracing.EventProvider::m_disposed bool ___m_disposed_10; public: inline static int32_t get_offset_of_m_etwCallback_1() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_etwCallback_1)); } inline EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * get_m_etwCallback_1() const { return ___m_etwCallback_1; } inline EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A ** get_address_of_m_etwCallback_1() { return &___m_etwCallback_1; } inline void set_m_etwCallback_1(EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * value) { ___m_etwCallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_etwCallback_1), (void*)value); } inline static int32_t get_offset_of_m_thisGCHandle_2() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_thisGCHandle_2)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_m_thisGCHandle_2() const { return ___m_thisGCHandle_2; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_m_thisGCHandle_2() { return &___m_thisGCHandle_2; } inline void set_m_thisGCHandle_2(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value) { ___m_thisGCHandle_2 = value; } inline static int32_t get_offset_of_m_regHandle_3() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_regHandle_3)); } inline int64_t get_m_regHandle_3() const { return ___m_regHandle_3; } inline int64_t* get_address_of_m_regHandle_3() { return &___m_regHandle_3; } inline void set_m_regHandle_3(int64_t value) { ___m_regHandle_3 = value; } inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_level_4)); } inline uint8_t get_m_level_4() const { return ___m_level_4; } inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; } inline void set_m_level_4(uint8_t value) { ___m_level_4 = value; } inline static int32_t get_offset_of_m_anyKeywordMask_5() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_anyKeywordMask_5)); } inline int64_t get_m_anyKeywordMask_5() const { return ___m_anyKeywordMask_5; } inline int64_t* get_address_of_m_anyKeywordMask_5() { return &___m_anyKeywordMask_5; } inline void set_m_anyKeywordMask_5(int64_t value) { ___m_anyKeywordMask_5 = value; } inline static int32_t get_offset_of_m_allKeywordMask_6() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_allKeywordMask_6)); } inline int64_t get_m_allKeywordMask_6() const { return ___m_allKeywordMask_6; } inline int64_t* get_address_of_m_allKeywordMask_6() { return &___m_allKeywordMask_6; } inline void set_m_allKeywordMask_6(int64_t value) { ___m_allKeywordMask_6 = value; } inline static int32_t get_offset_of_m_liveSessions_7() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_liveSessions_7)); } inline List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * get_m_liveSessions_7() const { return ___m_liveSessions_7; } inline List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 ** get_address_of_m_liveSessions_7() { return &___m_liveSessions_7; } inline void set_m_liveSessions_7(List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * value) { ___m_liveSessions_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_liveSessions_7), (void*)value); } inline static int32_t get_offset_of_m_enabled_8() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_enabled_8)); } inline bool get_m_enabled_8() const { return ___m_enabled_8; } inline bool* get_address_of_m_enabled_8() { return &___m_enabled_8; } inline void set_m_enabled_8(bool value) { ___m_enabled_8 = value; } inline static int32_t get_offset_of_m_providerId_9() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_providerId_9)); } inline Guid_t get_m_providerId_9() const { return ___m_providerId_9; } inline Guid_t * get_address_of_m_providerId_9() { return &___m_providerId_9; } inline void set_m_providerId_9(Guid_t value) { ___m_providerId_9 = value; } inline static int32_t get_offset_of_m_disposed_10() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_disposed_10)); } inline bool get_m_disposed_10() const { return ___m_disposed_10; } inline bool* get_address_of_m_disposed_10() { return &___m_disposed_10; } inline void set_m_disposed_10(bool value) { ___m_disposed_10 = value; } }; struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields { public: // System.Boolean System.Diagnostics.Tracing.EventProvider::m_setInformationMissing bool ___m_setInformationMissing_0; // System.Int32[] System.Diagnostics.Tracing.EventProvider::nibblebits Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___nibblebits_12; public: inline static int32_t get_offset_of_m_setInformationMissing_0() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields, ___m_setInformationMissing_0)); } inline bool get_m_setInformationMissing_0() const { return ___m_setInformationMissing_0; } inline bool* get_address_of_m_setInformationMissing_0() { return &___m_setInformationMissing_0; } inline void set_m_setInformationMissing_0(bool value) { ___m_setInformationMissing_0 = value; } inline static int32_t get_offset_of_nibblebits_12() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields, ___nibblebits_12)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_nibblebits_12() const { return ___nibblebits_12; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_nibblebits_12() { return &___nibblebits_12; } inline void set_nibblebits_12(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___nibblebits_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nibblebits_12), (void*)value); } }; struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_ThreadStaticFields { public: // System.Diagnostics.Tracing.EventProvider_WriteEventErrorCode System.Diagnostics.Tracing.EventProvider::s_returnCode int32_t ___s_returnCode_11; public: inline static int32_t get_offset_of_s_returnCode_11() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_ThreadStaticFields, ___s_returnCode_11)); } inline int32_t get_s_returnCode_11() const { return ___s_returnCode_11; } inline int32_t* get_address_of_s_returnCode_11() { return &___s_returnCode_11; } inline void set_s_returnCode_11(int32_t value) { ___s_returnCode_11 = value; } }; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB : public RuntimeObject { public: // System.Byte[] System.Diagnostics.Tracing.EventSource::providerMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___providerMetadata_0; // System.String System.Diagnostics.Tracing.EventSource::m_name String_t* ___m_name_1; // System.Int32 System.Diagnostics.Tracing.EventSource::m_id int32_t ___m_id_2; // System.Guid System.Diagnostics.Tracing.EventSource::m_guid Guid_t ___m_guid_3; // System.Diagnostics.Tracing.EventSource_EventMetadata[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_eventData EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* ___m_eventData_4; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_rawManifest ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_rawManifest_5; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> System.Diagnostics.Tracing.EventSource::m_eventCommandExecuted EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * ___m_eventCommandExecuted_6; // System.Diagnostics.Tracing.EventSourceSettings System.Diagnostics.Tracing.EventSource::m_config int32_t ___m_config_7; // System.Boolean System.Diagnostics.Tracing.EventSource::m_eventSourceEnabled bool ___m_eventSourceEnabled_8; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventSource::m_level int32_t ___m_level_9; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventSource::m_matchAnyKeyword int64_t ___m_matchAnyKeyword_10; // System.Diagnostics.Tracing.EventDispatcher modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_Dispatchers EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * ___m_Dispatchers_11; // System.Diagnostics.Tracing.EventSource_OverideEventProvider modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_provider OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * ___m_provider_12; // System.Boolean System.Diagnostics.Tracing.EventSource::m_completelyInited bool ___m_completelyInited_13; // System.Exception System.Diagnostics.Tracing.EventSource::m_constructionException Exception_t * ___m_constructionException_14; // System.Byte System.Diagnostics.Tracing.EventSource::m_outOfBandMessageCount uint8_t ___m_outOfBandMessageCount_15; // System.Diagnostics.Tracing.EventCommandEventArgs System.Diagnostics.Tracing.EventSource::m_deferredCommands EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * ___m_deferredCommands_16; // System.String[] System.Diagnostics.Tracing.EventSource::m_traits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_traits_17; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_curLiveSessions SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_curLiveSessions_20; // System.Diagnostics.Tracing.EtwSession[] System.Diagnostics.Tracing.EventSource::m_etwSessionIdMap EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* ___m_etwSessionIdMap_21; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> System.Diagnostics.Tracing.EventSource::m_legacySessions List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * ___m_legacySessions_22; // System.Int64 System.Diagnostics.Tracing.EventSource::m_keywordTriggers int64_t ___m_keywordTriggers_23; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_activityFilteringForETWEnabled SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_activityFilteringForETWEnabled_24; // System.Diagnostics.Tracing.ActivityTracker System.Diagnostics.Tracing.EventSource::m_activityTracker ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * ___m_activityTracker_26; public: inline static int32_t get_offset_of_providerMetadata_0() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___providerMetadata_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_providerMetadata_0() const { return ___providerMetadata_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_providerMetadata_0() { return &___providerMetadata_0; } inline void set_providerMetadata_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___providerMetadata_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___providerMetadata_0), (void*)value); } inline static int32_t get_offset_of_m_name_1() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_name_1)); } inline String_t* get_m_name_1() const { return ___m_name_1; } inline String_t** get_address_of_m_name_1() { return &___m_name_1; } inline void set_m_name_1(String_t* value) { ___m_name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_1), (void*)value); } inline static int32_t get_offset_of_m_id_2() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_id_2)); } inline int32_t get_m_id_2() const { return ___m_id_2; } inline int32_t* get_address_of_m_id_2() { return &___m_id_2; } inline void set_m_id_2(int32_t value) { ___m_id_2 = value; } inline static int32_t get_offset_of_m_guid_3() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_guid_3)); } inline Guid_t get_m_guid_3() const { return ___m_guid_3; } inline Guid_t * get_address_of_m_guid_3() { return &___m_guid_3; } inline void set_m_guid_3(Guid_t value) { ___m_guid_3 = value; } inline static int32_t get_offset_of_m_eventData_4() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventData_4)); } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* get_m_eventData_4() const { return ___m_eventData_4; } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94** get_address_of_m_eventData_4() { return &___m_eventData_4; } inline void set_m_eventData_4(EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* value) { ___m_eventData_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventData_4), (void*)value); } inline static int32_t get_offset_of_m_rawManifest_5() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_rawManifest_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_rawManifest_5() const { return ___m_rawManifest_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_rawManifest_5() { return &___m_rawManifest_5; } inline void set_m_rawManifest_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___m_rawManifest_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_rawManifest_5), (void*)value); } inline static int32_t get_offset_of_m_eventCommandExecuted_6() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventCommandExecuted_6)); } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * get_m_eventCommandExecuted_6() const { return ___m_eventCommandExecuted_6; } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C ** get_address_of_m_eventCommandExecuted_6() { return &___m_eventCommandExecuted_6; } inline void set_m_eventCommandExecuted_6(EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * value) { ___m_eventCommandExecuted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventCommandExecuted_6), (void*)value); } inline static int32_t get_offset_of_m_config_7() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_config_7)); } inline int32_t get_m_config_7() const { return ___m_config_7; } inline int32_t* get_address_of_m_config_7() { return &___m_config_7; } inline void set_m_config_7(int32_t value) { ___m_config_7 = value; } inline static int32_t get_offset_of_m_eventSourceEnabled_8() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventSourceEnabled_8)); } inline bool get_m_eventSourceEnabled_8() const { return ___m_eventSourceEnabled_8; } inline bool* get_address_of_m_eventSourceEnabled_8() { return &___m_eventSourceEnabled_8; } inline void set_m_eventSourceEnabled_8(bool value) { ___m_eventSourceEnabled_8 = value; } inline static int32_t get_offset_of_m_level_9() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_level_9)); } inline int32_t get_m_level_9() const { return ___m_level_9; } inline int32_t* get_address_of_m_level_9() { return &___m_level_9; } inline void set_m_level_9(int32_t value) { ___m_level_9 = value; } inline static int32_t get_offset_of_m_matchAnyKeyword_10() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_matchAnyKeyword_10)); } inline int64_t get_m_matchAnyKeyword_10() const { return ___m_matchAnyKeyword_10; } inline int64_t* get_address_of_m_matchAnyKeyword_10() { return &___m_matchAnyKeyword_10; } inline void set_m_matchAnyKeyword_10(int64_t value) { ___m_matchAnyKeyword_10 = value; } inline static int32_t get_offset_of_m_Dispatchers_11() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_Dispatchers_11)); } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * get_m_Dispatchers_11() const { return ___m_Dispatchers_11; } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF ** get_address_of_m_Dispatchers_11() { return &___m_Dispatchers_11; } inline void set_m_Dispatchers_11(EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * value) { ___m_Dispatchers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Dispatchers_11), (void*)value); } inline static int32_t get_offset_of_m_provider_12() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_provider_12)); } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * get_m_provider_12() const { return ___m_provider_12; } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B ** get_address_of_m_provider_12() { return &___m_provider_12; } inline void set_m_provider_12(OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * value) { ___m_provider_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_provider_12), (void*)value); } inline static int32_t get_offset_of_m_completelyInited_13() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_completelyInited_13)); } inline bool get_m_completelyInited_13() const { return ___m_completelyInited_13; } inline bool* get_address_of_m_completelyInited_13() { return &___m_completelyInited_13; } inline void set_m_completelyInited_13(bool value) { ___m_completelyInited_13 = value; } inline static int32_t get_offset_of_m_constructionException_14() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_constructionException_14)); } inline Exception_t * get_m_constructionException_14() const { return ___m_constructionException_14; } inline Exception_t ** get_address_of_m_constructionException_14() { return &___m_constructionException_14; } inline void set_m_constructionException_14(Exception_t * value) { ___m_constructionException_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_constructionException_14), (void*)value); } inline static int32_t get_offset_of_m_outOfBandMessageCount_15() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_outOfBandMessageCount_15)); } inline uint8_t get_m_outOfBandMessageCount_15() const { return ___m_outOfBandMessageCount_15; } inline uint8_t* get_address_of_m_outOfBandMessageCount_15() { return &___m_outOfBandMessageCount_15; } inline void set_m_outOfBandMessageCount_15(uint8_t value) { ___m_outOfBandMessageCount_15 = value; } inline static int32_t get_offset_of_m_deferredCommands_16() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_deferredCommands_16)); } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * get_m_deferredCommands_16() const { return ___m_deferredCommands_16; } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 ** get_address_of_m_deferredCommands_16() { return &___m_deferredCommands_16; } inline void set_m_deferredCommands_16(EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * value) { ___m_deferredCommands_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_deferredCommands_16), (void*)value); } inline static int32_t get_offset_of_m_traits_17() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_traits_17)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_traits_17() const { return ___m_traits_17; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_traits_17() { return &___m_traits_17; } inline void set_m_traits_17(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_traits_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_traits_17), (void*)value); } inline static int32_t get_offset_of_m_curLiveSessions_20() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_curLiveSessions_20)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_curLiveSessions_20() const { return ___m_curLiveSessions_20; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_curLiveSessions_20() { return &___m_curLiveSessions_20; } inline void set_m_curLiveSessions_20(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_curLiveSessions_20 = value; } inline static int32_t get_offset_of_m_etwSessionIdMap_21() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_etwSessionIdMap_21)); } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* get_m_etwSessionIdMap_21() const { return ___m_etwSessionIdMap_21; } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA** get_address_of_m_etwSessionIdMap_21() { return &___m_etwSessionIdMap_21; } inline void set_m_etwSessionIdMap_21(EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* value) { ___m_etwSessionIdMap_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_etwSessionIdMap_21), (void*)value); } inline static int32_t get_offset_of_m_legacySessions_22() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_legacySessions_22)); } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * get_m_legacySessions_22() const { return ___m_legacySessions_22; } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 ** get_address_of_m_legacySessions_22() { return &___m_legacySessions_22; } inline void set_m_legacySessions_22(List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * value) { ___m_legacySessions_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_legacySessions_22), (void*)value); } inline static int32_t get_offset_of_m_keywordTriggers_23() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_keywordTriggers_23)); } inline int64_t get_m_keywordTriggers_23() const { return ___m_keywordTriggers_23; } inline int64_t* get_address_of_m_keywordTriggers_23() { return &___m_keywordTriggers_23; } inline void set_m_keywordTriggers_23(int64_t value) { ___m_keywordTriggers_23 = value; } inline static int32_t get_offset_of_m_activityFilteringForETWEnabled_24() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityFilteringForETWEnabled_24)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_activityFilteringForETWEnabled_24() const { return ___m_activityFilteringForETWEnabled_24; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_activityFilteringForETWEnabled_24() { return &___m_activityFilteringForETWEnabled_24; } inline void set_m_activityFilteringForETWEnabled_24(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_activityFilteringForETWEnabled_24 = value; } inline static int32_t get_offset_of_m_activityTracker_26() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityTracker_26)); } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * get_m_activityTracker_26() const { return ___m_activityTracker_26; } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 ** get_address_of_m_activityTracker_26() { return &___m_activityTracker_26; } inline void set_m_activityTracker_26(ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * value) { ___m_activityTracker_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_activityTracker_26), (void*)value); } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields { public: // System.UInt32 System.Diagnostics.Tracing.EventSource::s_currentPid uint32_t ___s_currentPid_18; // System.Action`1<System.Guid> System.Diagnostics.Tracing.EventSource::s_activityDying Action_1_t914484DED737548EE8FABFA959036371C8235942 * ___s_activityDying_25; // System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___namespaceBytes_27; // System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid Guid_t ___AspNetEventSourceGuid_28; public: inline static int32_t get_offset_of_s_currentPid_18() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_currentPid_18)); } inline uint32_t get_s_currentPid_18() const { return ___s_currentPid_18; } inline uint32_t* get_address_of_s_currentPid_18() { return &___s_currentPid_18; } inline void set_s_currentPid_18(uint32_t value) { ___s_currentPid_18 = value; } inline static int32_t get_offset_of_s_activityDying_25() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_activityDying_25)); } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 * get_s_activityDying_25() const { return ___s_activityDying_25; } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 ** get_address_of_s_activityDying_25() { return &___s_activityDying_25; } inline void set_s_activityDying_25(Action_1_t914484DED737548EE8FABFA959036371C8235942 * value) { ___s_activityDying_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activityDying_25), (void*)value); } inline static int32_t get_offset_of_namespaceBytes_27() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___namespaceBytes_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_namespaceBytes_27() const { return ___namespaceBytes_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_namespaceBytes_27() { return &___namespaceBytes_27; } inline void set_namespaceBytes_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___namespaceBytes_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_27), (void*)value); } inline static int32_t get_offset_of_AspNetEventSourceGuid_28() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___AspNetEventSourceGuid_28)); } inline Guid_t get_AspNetEventSourceGuid_28() const { return ___AspNetEventSourceGuid_28; } inline Guid_t * get_address_of_AspNetEventSourceGuid_28() { return &___AspNetEventSourceGuid_28; } inline void set_AspNetEventSourceGuid_28(Guid_t value) { ___AspNetEventSourceGuid_28 = value; } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields { public: // System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount uint8_t ___m_EventSourceExceptionRecurenceCount_19; public: inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_19() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_19)); } inline uint8_t get_m_EventSourceExceptionRecurenceCount_19() const { return ___m_EventSourceExceptionRecurenceCount_19; } inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_19() { return &___m_EventSourceExceptionRecurenceCount_19; } inline void set_m_EventSourceExceptionRecurenceCount_19(uint8_t value) { ___m_EventSourceExceptionRecurenceCount_19 = value; } }; // System.Diagnostics.Tracing.EventSource_EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B { public: // System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags int32_t ___Tags_1; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener bool ___EnabledForAnyListener_2; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW bool ___EnabledForETW_3; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID bool ___HasRelatedActivityID_4; // System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking uint8_t ___TriggersActivityTracking_5; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name String_t* ___Name_6; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message String_t* ___Message_7; // System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8; // System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions int32_t ___ActivityOptions_10; public: inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; } inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value) { ___Descriptor_0 = value; } inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); } inline int32_t get_Tags_1() const { return ___Tags_1; } inline int32_t* get_address_of_Tags_1() { return &___Tags_1; } inline void set_Tags_1(int32_t value) { ___Tags_1 = value; } inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); } inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; } inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; } inline void set_EnabledForAnyListener_2(bool value) { ___EnabledForAnyListener_2 = value; } inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); } inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; } inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; } inline void set_EnabledForETW_3(bool value) { ___EnabledForETW_3 = value; } inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); } inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; } inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; } inline void set_HasRelatedActivityID_4(bool value) { ___HasRelatedActivityID_4 = value; } inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); } inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; } inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; } inline void set_TriggersActivityTracking_5(uint8_t value) { ___TriggersActivityTracking_5 = value; } inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); } inline String_t* get_Name_6() const { return ___Name_6; } inline String_t** get_address_of_Name_6() { return &___Name_6; } inline void set_Name_6(String_t* value) { ___Name_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value); } inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); } inline String_t* get_Message_7() const { return ___Message_7; } inline String_t** get_address_of_Message_7() { return &___Message_7; } inline void set_Message_7(String_t* value) { ___Message_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value); } inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; } inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value) { ___Parameters_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value); } inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; } inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value) { ___TraceLoggingEventTypes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value); } inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); } inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; } inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; } inline void set_ActivityOptions_10(int32_t value) { ___ActivityOptions_10 = value; } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; char* ___Name_6; char* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; Il2CppChar* ___Name_6; Il2CppChar* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; // System.Diagnostics.Tracing.EventSourceException struct EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 : public Exception_t { public: public: }; // System.Diagnostics.Tracing.EventSourceOptions struct EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C { public: // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventSourceOptions::keywords int64_t ___keywords_0; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSourceOptions::tags int32_t ___tags_1; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSourceOptions::activityOptions int32_t ___activityOptions_2; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::level uint8_t ___level_3; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::opcode uint8_t ___opcode_4; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::valuesSet uint8_t ___valuesSet_5; public: inline static int32_t get_offset_of_keywords_0() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___keywords_0)); } inline int64_t get_keywords_0() const { return ___keywords_0; } inline int64_t* get_address_of_keywords_0() { return &___keywords_0; } inline void set_keywords_0(int64_t value) { ___keywords_0 = value; } inline static int32_t get_offset_of_tags_1() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___tags_1)); } inline int32_t get_tags_1() const { return ___tags_1; } inline int32_t* get_address_of_tags_1() { return &___tags_1; } inline void set_tags_1(int32_t value) { ___tags_1 = value; } inline static int32_t get_offset_of_activityOptions_2() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___activityOptions_2)); } inline int32_t get_activityOptions_2() const { return ___activityOptions_2; } inline int32_t* get_address_of_activityOptions_2() { return &___activityOptions_2; } inline void set_activityOptions_2(int32_t value) { ___activityOptions_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___level_3)); } inline uint8_t get_level_3() const { return ___level_3; } inline uint8_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(uint8_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___opcode_4)); } inline uint8_t get_opcode_4() const { return ___opcode_4; } inline uint8_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(uint8_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_valuesSet_5() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___valuesSet_5)); } inline uint8_t get_valuesSet_5() const { return ___valuesSet_5; } inline uint8_t* get_address_of_valuesSet_5() { return &___valuesSet_5; } inline void set_valuesSet_5(uint8_t value) { ___valuesSet_5 = value; } }; // System.Diagnostics.Tracing.FieldMetadata struct FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.FieldMetadata::name String_t* ___name_0; // System.Int32 System.Diagnostics.Tracing.FieldMetadata::nameSize int32_t ___nameSize_1; // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.FieldMetadata::tags int32_t ___tags_2; // System.Byte[] System.Diagnostics.Tracing.FieldMetadata::custom ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom_3; // System.UInt16 System.Diagnostics.Tracing.FieldMetadata::fixedCount uint16_t ___fixedCount_4; // System.Byte System.Diagnostics.Tracing.FieldMetadata::inType uint8_t ___inType_5; // System.Byte System.Diagnostics.Tracing.FieldMetadata::outType uint8_t ___outType_6; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_nameSize_1() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___nameSize_1)); } inline int32_t get_nameSize_1() const { return ___nameSize_1; } inline int32_t* get_address_of_nameSize_1() { return &___nameSize_1; } inline void set_nameSize_1(int32_t value) { ___nameSize_1 = value; } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_custom_3() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___custom_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_custom_3() const { return ___custom_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_custom_3() { return &___custom_3; } inline void set_custom_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___custom_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___custom_3), (void*)value); } inline static int32_t get_offset_of_fixedCount_4() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___fixedCount_4)); } inline uint16_t get_fixedCount_4() const { return ___fixedCount_4; } inline uint16_t* get_address_of_fixedCount_4() { return &___fixedCount_4; } inline void set_fixedCount_4(uint16_t value) { ___fixedCount_4 = value; } inline static int32_t get_offset_of_inType_5() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___inType_5)); } inline uint8_t get_inType_5() const { return ___inType_5; } inline uint8_t* get_address_of_inType_5() { return &___inType_5; } inline void set_inType_5(uint8_t value) { ___inType_5 = value; } inline static int32_t get_offset_of_outType_6() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___outType_6)); } inline uint8_t get_outType_6() const { return ___outType_6; } inline uint8_t* get_address_of_outType_6() { return &___outType_6; } inline void set_outType_6(uint8_t value) { ___outType_6 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder struct ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.Diagnostics.Tracing.ManifestBuilder::opcodeTab Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___opcodeTab_0; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.Diagnostics.Tracing.ManifestBuilder::taskTab Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___taskTab_1; // System.Collections.Generic.Dictionary`2<System.UInt64,System.String> System.Diagnostics.Tracing.ManifestBuilder::keywordTab Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * ___keywordTab_2; // System.Collections.Generic.Dictionary`2<System.String,System.Type> System.Diagnostics.Tracing.ManifestBuilder::mapsTab Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___mapsTab_3; // System.Collections.Generic.Dictionary`2<System.String,System.String> System.Diagnostics.Tracing.ManifestBuilder::stringTab Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___stringTab_4; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::sb StringBuilder_t * ___sb_5; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::events StringBuilder_t * ___events_6; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::templates StringBuilder_t * ___templates_7; // System.Resources.ResourceManager System.Diagnostics.Tracing.ManifestBuilder::resources ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources_8; // System.Diagnostics.Tracing.EventManifestOptions System.Diagnostics.Tracing.ManifestBuilder::flags int32_t ___flags_9; // System.Collections.Generic.IList`1<System.String> System.Diagnostics.Tracing.ManifestBuilder::errors RuntimeObject* ___errors_10; // System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>> System.Diagnostics.Tracing.ManifestBuilder::perEventByteArrayArgIndices Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * ___perEventByteArrayArgIndices_11; // System.String System.Diagnostics.Tracing.ManifestBuilder::eventName String_t* ___eventName_12; // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::numParams int32_t ___numParams_13; // System.Collections.Generic.List`1<System.Int32> System.Diagnostics.Tracing.ManifestBuilder::byteArrArgIndices List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___byteArrArgIndices_14; public: inline static int32_t get_offset_of_opcodeTab_0() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___opcodeTab_0)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_opcodeTab_0() const { return ___opcodeTab_0; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_opcodeTab_0() { return &___opcodeTab_0; } inline void set_opcodeTab_0(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___opcodeTab_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___opcodeTab_0), (void*)value); } inline static int32_t get_offset_of_taskTab_1() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___taskTab_1)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_taskTab_1() const { return ___taskTab_1; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_taskTab_1() { return &___taskTab_1; } inline void set_taskTab_1(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___taskTab_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___taskTab_1), (void*)value); } inline static int32_t get_offset_of_keywordTab_2() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___keywordTab_2)); } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * get_keywordTab_2() const { return ___keywordTab_2; } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 ** get_address_of_keywordTab_2() { return &___keywordTab_2; } inline void set_keywordTab_2(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * value) { ___keywordTab_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keywordTab_2), (void*)value); } inline static int32_t get_offset_of_mapsTab_3() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___mapsTab_3)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_mapsTab_3() const { return ___mapsTab_3; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_mapsTab_3() { return &___mapsTab_3; } inline void set_mapsTab_3(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___mapsTab_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mapsTab_3), (void*)value); } inline static int32_t get_offset_of_stringTab_4() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___stringTab_4)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_stringTab_4() const { return ___stringTab_4; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_stringTab_4() { return &___stringTab_4; } inline void set_stringTab_4(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___stringTab_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringTab_4), (void*)value); } inline static int32_t get_offset_of_sb_5() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___sb_5)); } inline StringBuilder_t * get_sb_5() const { return ___sb_5; } inline StringBuilder_t ** get_address_of_sb_5() { return &___sb_5; } inline void set_sb_5(StringBuilder_t * value) { ___sb_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___sb_5), (void*)value); } inline static int32_t get_offset_of_events_6() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___events_6)); } inline StringBuilder_t * get_events_6() const { return ___events_6; } inline StringBuilder_t ** get_address_of_events_6() { return &___events_6; } inline void set_events_6(StringBuilder_t * value) { ___events_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___events_6), (void*)value); } inline static int32_t get_offset_of_templates_7() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___templates_7)); } inline StringBuilder_t * get_templates_7() const { return ___templates_7; } inline StringBuilder_t ** get_address_of_templates_7() { return &___templates_7; } inline void set_templates_7(StringBuilder_t * value) { ___templates_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___templates_7), (void*)value); } inline static int32_t get_offset_of_resources_8() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___resources_8)); } inline ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * get_resources_8() const { return ___resources_8; } inline ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF ** get_address_of_resources_8() { return &___resources_8; } inline void set_resources_8(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * value) { ___resources_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___resources_8), (void*)value); } inline static int32_t get_offset_of_flags_9() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___flags_9)); } inline int32_t get_flags_9() const { return ___flags_9; } inline int32_t* get_address_of_flags_9() { return &___flags_9; } inline void set_flags_9(int32_t value) { ___flags_9 = value; } inline static int32_t get_offset_of_errors_10() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___errors_10)); } inline RuntimeObject* get_errors_10() const { return ___errors_10; } inline RuntimeObject** get_address_of_errors_10() { return &___errors_10; } inline void set_errors_10(RuntimeObject* value) { ___errors_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___errors_10), (void*)value); } inline static int32_t get_offset_of_perEventByteArrayArgIndices_11() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___perEventByteArrayArgIndices_11)); } inline Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * get_perEventByteArrayArgIndices_11() const { return ___perEventByteArrayArgIndices_11; } inline Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 ** get_address_of_perEventByteArrayArgIndices_11() { return &___perEventByteArrayArgIndices_11; } inline void set_perEventByteArrayArgIndices_11(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * value) { ___perEventByteArrayArgIndices_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___perEventByteArrayArgIndices_11), (void*)value); } inline static int32_t get_offset_of_eventName_12() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___eventName_12)); } inline String_t* get_eventName_12() const { return ___eventName_12; } inline String_t** get_address_of_eventName_12() { return &___eventName_12; } inline void set_eventName_12(String_t* value) { ___eventName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventName_12), (void*)value); } inline static int32_t get_offset_of_numParams_13() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___numParams_13)); } inline int32_t get_numParams_13() const { return ___numParams_13; } inline int32_t* get_address_of_numParams_13() { return &___numParams_13; } inline void set_numParams_13(int32_t value) { ___numParams_13 = value; } inline static int32_t get_offset_of_byteArrArgIndices_14() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___byteArrArgIndices_14)); } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_byteArrArgIndices_14() const { return ___byteArrArgIndices_14; } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_byteArrArgIndices_14() { return &___byteArrArgIndices_14; } inline void set_byteArrArgIndices_14(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value) { ___byteArrArgIndices_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteArrArgIndices_14), (void*)value); } }; // System.Diagnostics.Tracing.ManifestEnvelope struct ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34 { public: // System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats System.Diagnostics.Tracing.ManifestEnvelope::Format uint8_t ___Format_0; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::MajorVersion uint8_t ___MajorVersion_1; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::MinorVersion uint8_t ___MinorVersion_2; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::Magic uint8_t ___Magic_3; // System.UInt16 System.Diagnostics.Tracing.ManifestEnvelope::TotalChunks uint16_t ___TotalChunks_4; // System.UInt16 System.Diagnostics.Tracing.ManifestEnvelope::ChunkNumber uint16_t ___ChunkNumber_5; public: inline static int32_t get_offset_of_Format_0() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___Format_0)); } inline uint8_t get_Format_0() const { return ___Format_0; } inline uint8_t* get_address_of_Format_0() { return &___Format_0; } inline void set_Format_0(uint8_t value) { ___Format_0 = value; } inline static int32_t get_offset_of_MajorVersion_1() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___MajorVersion_1)); } inline uint8_t get_MajorVersion_1() const { return ___MajorVersion_1; } inline uint8_t* get_address_of_MajorVersion_1() { return &___MajorVersion_1; } inline void set_MajorVersion_1(uint8_t value) { ___MajorVersion_1 = value; } inline static int32_t get_offset_of_MinorVersion_2() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___MinorVersion_2)); } inline uint8_t get_MinorVersion_2() const { return ___MinorVersion_2; } inline uint8_t* get_address_of_MinorVersion_2() { return &___MinorVersion_2; } inline void set_MinorVersion_2(uint8_t value) { ___MinorVersion_2 = value; } inline static int32_t get_offset_of_Magic_3() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___Magic_3)); } inline uint8_t get_Magic_3() const { return ___Magic_3; } inline uint8_t* get_address_of_Magic_3() { return &___Magic_3; } inline void set_Magic_3(uint8_t value) { ___Magic_3 = value; } inline static int32_t get_offset_of_TotalChunks_4() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___TotalChunks_4)); } inline uint16_t get_TotalChunks_4() const { return ___TotalChunks_4; } inline uint16_t* get_address_of_TotalChunks_4() { return &___TotalChunks_4; } inline void set_TotalChunks_4(uint16_t value) { ___TotalChunks_4 = value; } inline static int32_t get_offset_of_ChunkNumber_5() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___ChunkNumber_5)); } inline uint16_t get_ChunkNumber_5() const { return ___ChunkNumber_5; } inline uint16_t* get_address_of_ChunkNumber_5() { return &___ChunkNumber_5; } inline void set_ChunkNumber_5(uint16_t value) { ___ChunkNumber_5 = value; } }; // System.Diagnostics.Tracing.NameInfo struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C : public ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA { public: // System.String System.Diagnostics.Tracing.NameInfo::name String_t* ___name_1; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.NameInfo::tags int32_t ___tags_2; // System.Int32 System.Diagnostics.Tracing.NameInfo::identity int32_t ___identity_3; // System.Byte[] System.Diagnostics.Tracing.NameInfo::nameMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___nameMetadata_4; public: inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_identity_3() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___identity_3)); } inline int32_t get_identity_3() const { return ___identity_3; } inline int32_t* get_address_of_identity_3() { return &___identity_3; } inline void set_identity_3(int32_t value) { ___identity_3 = value; } inline static int32_t get_offset_of_nameMetadata_4() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___nameMetadata_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_nameMetadata_4() const { return ___nameMetadata_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_nameMetadata_4() { return &___nameMetadata_4; } inline void set_nameMetadata_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___nameMetadata_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameMetadata_4), (void*)value); } }; struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields { public: // System.Int32 System.Diagnostics.Tracing.NameInfo::lastIdentity int32_t ___lastIdentity_0; public: inline static int32_t get_offset_of_lastIdentity_0() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields, ___lastIdentity_0)); } inline int32_t get_lastIdentity_0() const { return ___lastIdentity_0; } inline int32_t* get_address_of_lastIdentity_0() { return &___lastIdentity_0; } inline void set_lastIdentity_0(int32_t value) { ___lastIdentity_0 = value; } }; // System.Diagnostics.Tracing.Statics struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95 : public RuntimeObject { public: public: }; struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::IntPtrType int32_t ___IntPtrType_0; // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::UIntPtrType int32_t ___UIntPtrType_1; // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::HexIntPtrType int32_t ___HexIntPtrType_2; public: inline static int32_t get_offset_of_IntPtrType_0() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___IntPtrType_0)); } inline int32_t get_IntPtrType_0() const { return ___IntPtrType_0; } inline int32_t* get_address_of_IntPtrType_0() { return &___IntPtrType_0; } inline void set_IntPtrType_0(int32_t value) { ___IntPtrType_0 = value; } inline static int32_t get_offset_of_UIntPtrType_1() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___UIntPtrType_1)); } inline int32_t get_UIntPtrType_1() const { return ___UIntPtrType_1; } inline int32_t* get_address_of_UIntPtrType_1() { return &___UIntPtrType_1; } inline void set_UIntPtrType_1(int32_t value) { ___UIntPtrType_1 = value; } inline static int32_t get_offset_of_HexIntPtrType_2() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___HexIntPtrType_2)); } inline int32_t get_HexIntPtrType_2() const { return ___HexIntPtrType_2; } inline int32_t* get_address_of_HexIntPtrType_2() { return &___HexIntPtrType_2; } inline void set_HexIntPtrType_2(int32_t value) { ___HexIntPtrType_2 = value; } }; // System.Diagnostics.Tracing.TplEtwProvider_Keywords struct Keywords_t5171937FE26BD6E78DA288FCE99671E055EF3CCC : public RuntimeObject { public: public: }; // System.Diagnostics.Tracing.TraceLoggingEventTypes struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 : public RuntimeObject { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::typeInfos TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos_0; // System.String System.Diagnostics.Tracing.TraceLoggingEventTypes::name String_t* ___name_1; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingEventTypes::tags int32_t ___tags_2; // System.Byte System.Diagnostics.Tracing.TraceLoggingEventTypes::level uint8_t ___level_3; // System.Byte System.Diagnostics.Tracing.TraceLoggingEventTypes::opcode uint8_t ___opcode_4; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingEventTypes::keywords int64_t ___keywords_5; // System.Byte[] System.Diagnostics.Tracing.TraceLoggingEventTypes::typeMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___typeMetadata_6; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::scratchSize int32_t ___scratchSize_7; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::dataCount int32_t ___dataCount_8; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::pinCount int32_t ___pinCount_9; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> System.Diagnostics.Tracing.TraceLoggingEventTypes::nameInfos ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 ___nameInfos_10; public: inline static int32_t get_offset_of_typeInfos_0() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___typeInfos_0)); } inline TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* get_typeInfos_0() const { return ___typeInfos_0; } inline TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC** get_address_of_typeInfos_0() { return &___typeInfos_0; } inline void set_typeInfos_0(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* value) { ___typeInfos_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeInfos_0), (void*)value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___level_3)); } inline uint8_t get_level_3() const { return ___level_3; } inline uint8_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(uint8_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___opcode_4)); } inline uint8_t get_opcode_4() const { return ___opcode_4; } inline uint8_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(uint8_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_keywords_5() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___keywords_5)); } inline int64_t get_keywords_5() const { return ___keywords_5; } inline int64_t* get_address_of_keywords_5() { return &___keywords_5; } inline void set_keywords_5(int64_t value) { ___keywords_5 = value; } inline static int32_t get_offset_of_typeMetadata_6() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___typeMetadata_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_typeMetadata_6() const { return ___typeMetadata_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_typeMetadata_6() { return &___typeMetadata_6; } inline void set_typeMetadata_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___typeMetadata_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeMetadata_6), (void*)value); } inline static int32_t get_offset_of_scratchSize_7() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___scratchSize_7)); } inline int32_t get_scratchSize_7() const { return ___scratchSize_7; } inline int32_t* get_address_of_scratchSize_7() { return &___scratchSize_7; } inline void set_scratchSize_7(int32_t value) { ___scratchSize_7 = value; } inline static int32_t get_offset_of_dataCount_8() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___dataCount_8)); } inline int32_t get_dataCount_8() const { return ___dataCount_8; } inline int32_t* get_address_of_dataCount_8() { return &___dataCount_8; } inline void set_dataCount_8(int32_t value) { ___dataCount_8 = value; } inline static int32_t get_offset_of_pinCount_9() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___pinCount_9)); } inline int32_t get_pinCount_9() const { return ___pinCount_9; } inline int32_t* get_address_of_pinCount_9() { return &___pinCount_9; } inline void set_pinCount_9(int32_t value) { ___pinCount_9 = value; } inline static int32_t get_offset_of_nameInfos_10() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___nameInfos_10)); } inline ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 get_nameInfos_10() const { return ___nameInfos_10; } inline ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * get_address_of_nameInfos_10() { return &___nameInfos_10; } inline void set_nameInfos_10(ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 value) { ___nameInfos_10 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___nameInfos_10))->___items_0), (void*)NULL); } }; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector struct TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E : public RuntimeObject { public: // System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl System.Diagnostics.Tracing.TraceLoggingMetadataCollector::impl Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * ___impl_0; // System.Diagnostics.Tracing.FieldMetadata System.Diagnostics.Tracing.TraceLoggingMetadataCollector::currentGroup FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___currentGroup_1; // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::bufferedArrayFieldCount int32_t ___bufferedArrayFieldCount_2; // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_3; public: inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___impl_0)); } inline Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * get_impl_0() const { return ___impl_0; } inline Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F ** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } inline static int32_t get_offset_of_currentGroup_1() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___currentGroup_1)); } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * get_currentGroup_1() const { return ___currentGroup_1; } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC ** get_address_of_currentGroup_1() { return &___currentGroup_1; } inline void set_currentGroup_1(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * value) { ___currentGroup_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentGroup_1), (void*)value); } inline static int32_t get_offset_of_bufferedArrayFieldCount_2() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___bufferedArrayFieldCount_2)); } inline int32_t get_bufferedArrayFieldCount_2() const { return ___bufferedArrayFieldCount_2; } inline int32_t* get_address_of_bufferedArrayFieldCount_2() { return &___bufferedArrayFieldCount_2; } inline void set_bufferedArrayFieldCount_2(int32_t value) { ___bufferedArrayFieldCount_2 = value; } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___U3CTagsU3Ek__BackingField_3)); } inline int32_t get_U3CTagsU3Ek__BackingField_3() const { return ___U3CTagsU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_3() { return &___U3CTagsU3Ek__BackingField_3; } inline void set_U3CTagsU3Ek__BackingField_3(int32_t value) { ___U3CTagsU3Ek__BackingField_3 = value; } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::name String_t* ___name_0; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::keywords int64_t ___keywords_1; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::level int32_t ___level_2; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::opcode int32_t ___opcode_3; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::tags int32_t ___tags_4; // System.Type System.Diagnostics.Tracing.TraceLoggingTypeInfo::dataType Type_t * ___dataType_5; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_keywords_1() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___keywords_1)); } inline int64_t get_keywords_1() const { return ___keywords_1; } inline int64_t* get_address_of_keywords_1() { return &___keywords_1; } inline void set_keywords_1(int64_t value) { ___keywords_1 = value; } inline static int32_t get_offset_of_level_2() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___level_2)); } inline int32_t get_level_2() const { return ___level_2; } inline int32_t* get_address_of_level_2() { return &___level_2; } inline void set_level_2(int32_t value) { ___level_2 = value; } inline static int32_t get_offset_of_opcode_3() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___opcode_3)); } inline int32_t get_opcode_3() const { return ___opcode_3; } inline int32_t* get_address_of_opcode_3() { return &___opcode_3; } inline void set_opcode_3(int32_t value) { ___opcode_3 = value; } inline static int32_t get_offset_of_tags_4() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___tags_4)); } inline int32_t get_tags_4() const { return ___tags_4; } inline int32_t* get_address_of_tags_4() { return &___tags_4; } inline void set_tags_4(int32_t value) { ___tags_4 = value; } inline static int32_t get_offset_of_dataType_5() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___dataType_5)); } inline Type_t * get_dataType_5() const { return ___dataType_5; } inline Type_t ** get_address_of_dataType_5() { return &___dataType_5; } inline void set_dataType_5(Type_t * value) { ___dataType_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataType_5), (void*)value); } }; // System.Diagnostics.Tracing.TypeAnalysis struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD : public RuntimeObject { public: // System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.TypeAnalysis::properties PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_0; // System.String System.Diagnostics.Tracing.TypeAnalysis::name String_t* ___name_1; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TypeAnalysis::keywords int64_t ___keywords_2; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TypeAnalysis::level int32_t ___level_3; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TypeAnalysis::opcode int32_t ___opcode_4; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TypeAnalysis::tags int32_t ___tags_5; public: inline static int32_t get_offset_of_properties_0() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___properties_0)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_0() const { return ___properties_0; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_0() { return &___properties_0; } inline void set_properties_0(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ___properties_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___properties_0), (void*)value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_keywords_2() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___keywords_2)); } inline int64_t get_keywords_2() const { return ___keywords_2; } inline int64_t* get_address_of_keywords_2() { return &___keywords_2; } inline void set_keywords_2(int64_t value) { ___keywords_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___level_3)); } inline int32_t get_level_3() const { return ___level_3; } inline int32_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(int32_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___opcode_4)); } inline int32_t get_opcode_4() const { return ___opcode_4; } inline int32_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(int32_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_tags_5() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___tags_5)); } inline int32_t get_tags_5() const { return ___tags_5; } inline int32_t* get_address_of_tags_5() { return &___tags_5; } inline void set_tags_5(int32_t value) { ___tags_5 = value; } }; // System.Enum_EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C { public: // System.Object System.Enum_EnumResult::parsedEnum RuntimeObject * ___parsedEnum_0; // System.Boolean System.Enum_EnumResult::canThrow bool ___canThrow_1; // System.Enum_ParseFailureKind System.Enum_EnumResult::m_failure int32_t ___m_failure_2; // System.String System.Enum_EnumResult::m_failureMessageID String_t* ___m_failureMessageID_3; // System.String System.Enum_EnumResult::m_failureParameter String_t* ___m_failureParameter_4; // System.Object System.Enum_EnumResult::m_failureMessageFormatArgument RuntimeObject * ___m_failureMessageFormatArgument_5; // System.Exception System.Enum_EnumResult::m_innerException Exception_t * ___m_innerException_6; public: inline static int32_t get_offset_of_parsedEnum_0() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___parsedEnum_0)); } inline RuntimeObject * get_parsedEnum_0() const { return ___parsedEnum_0; } inline RuntimeObject ** get_address_of_parsedEnum_0() { return &___parsedEnum_0; } inline void set_parsedEnum_0(RuntimeObject * value) { ___parsedEnum_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parsedEnum_0), (void*)value); } inline static int32_t get_offset_of_canThrow_1() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___canThrow_1)); } inline bool get_canThrow_1() const { return ___canThrow_1; } inline bool* get_address_of_canThrow_1() { return &___canThrow_1; } inline void set_canThrow_1(bool value) { ___canThrow_1 = value; } inline static int32_t get_offset_of_m_failure_2() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failure_2)); } inline int32_t get_m_failure_2() const { return ___m_failure_2; } inline int32_t* get_address_of_m_failure_2() { return &___m_failure_2; } inline void set_m_failure_2(int32_t value) { ___m_failure_2 = value; } inline static int32_t get_offset_of_m_failureMessageID_3() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureMessageID_3)); } inline String_t* get_m_failureMessageID_3() const { return ___m_failureMessageID_3; } inline String_t** get_address_of_m_failureMessageID_3() { return &___m_failureMessageID_3; } inline void set_m_failureMessageID_3(String_t* value) { ___m_failureMessageID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureMessageID_3), (void*)value); } inline static int32_t get_offset_of_m_failureParameter_4() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureParameter_4)); } inline String_t* get_m_failureParameter_4() const { return ___m_failureParameter_4; } inline String_t** get_address_of_m_failureParameter_4() { return &___m_failureParameter_4; } inline void set_m_failureParameter_4(String_t* value) { ___m_failureParameter_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureParameter_4), (void*)value); } inline static int32_t get_offset_of_m_failureMessageFormatArgument_5() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureMessageFormatArgument_5)); } inline RuntimeObject * get_m_failureMessageFormatArgument_5() const { return ___m_failureMessageFormatArgument_5; } inline RuntimeObject ** get_address_of_m_failureMessageFormatArgument_5() { return &___m_failureMessageFormatArgument_5; } inline void set_m_failureMessageFormatArgument_5(RuntimeObject * value) { ___m_failureMessageFormatArgument_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureMessageFormatArgument_5), (void*)value); } inline static int32_t get_offset_of_m_innerException_6() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_innerException_6)); } inline Exception_t * get_m_innerException_6() const { return ___m_innerException_6; } inline Exception_t ** get_address_of_m_innerException_6() { return &___m_innerException_6; } inline void set_m_innerException_6(Exception_t * value) { ___m_innerException_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerException_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum/EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke { Il2CppIUnknown* ___parsedEnum_0; int32_t ___canThrow_1; int32_t ___m_failure_2; char* ___m_failureMessageID_3; char* ___m_failureParameter_4; Il2CppIUnknown* ___m_failureMessageFormatArgument_5; Exception_t_marshaled_pinvoke* ___m_innerException_6; }; // Native definition for COM marshalling of System.Enum/EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com { Il2CppIUnknown* ___parsedEnum_0; int32_t ___canThrow_1; int32_t ___m_failure_2; Il2CppChar* ___m_failureMessageID_3; Il2CppChar* ___m_failureParameter_4; Il2CppIUnknown* ___m_failureMessageFormatArgument_5; Exception_t_marshaled_com* ___m_innerException_6; }; // 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((void**)(&___m_name_3), (void*)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((void**)(&___m_sortName_4), (void*)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((void**)(&___m_SortVersion_20), (void*)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((void**)(&___collator_21), (void*)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((void**)(&___collators_22), (void*)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; } }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject { public: // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; public: inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; } inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___numberGroupSizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value); } inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; } inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___currencyGroupSizes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value); } inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; } inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___percentGroupSizes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value); } inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); } inline String_t* get_positiveSign_4() const { return ___positiveSign_4; } inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; } inline void set_positiveSign_4(String_t* value) { ___positiveSign_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value); } inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); } inline String_t* get_negativeSign_5() const { return ___negativeSign_5; } inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; } inline void set_negativeSign_5(String_t* value) { ___negativeSign_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value); } inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); } inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; } inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; } inline void set_numberDecimalSeparator_6(String_t* value) { ___numberDecimalSeparator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value); } inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); } inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; } inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; } inline void set_numberGroupSeparator_7(String_t* value) { ___numberGroupSeparator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value); } inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); } inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; } inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; } inline void set_currencyDecimalSeparator_9(String_t* value) { ___currencyDecimalSeparator_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value); } inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); } inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; } inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; } inline void set_currencySymbol_10(String_t* value) { ___currencySymbol_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value); } inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); } inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; } inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; } inline void set_ansiCurrencySymbol_11(String_t* value) { ___ansiCurrencySymbol_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value); } inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); } inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; } inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; } inline void set_nanSymbol_12(String_t* value) { ___nanSymbol_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value); } inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); } inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; } inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; } inline void set_positiveInfinitySymbol_13(String_t* value) { ___positiveInfinitySymbol_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value); } inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); } inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; } inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; } inline void set_percentDecimalSeparator_15(String_t* value) { ___percentDecimalSeparator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value); } inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); } inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; } inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; } inline void set_percentGroupSeparator_16(String_t* value) { ___percentGroupSeparator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value); } inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); } inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; } inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; } inline void set_percentSymbol_17(String_t* value) { ___percentSymbol_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value); } inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); } inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; } inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; } inline void set_perMilleSymbol_18(String_t* value) { ___perMilleSymbol_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value); } inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; } inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___nativeDigits_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value); } inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); } inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; } inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; } inline void set_m_dataItem_20(int32_t value) { ___m_dataItem_20 = value; } inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); } inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; } inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; } inline void set_numberDecimalDigits_21(int32_t value) { ___numberDecimalDigits_21 = value; } inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); } inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; } inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; } inline void set_currencyDecimalDigits_22(int32_t value) { ___currencyDecimalDigits_22 = value; } inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); } inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; } inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; } inline void set_currencyPositivePattern_23(int32_t value) { ___currencyPositivePattern_23 = value; } inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); } inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; } inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; } inline void set_currencyNegativePattern_24(int32_t value) { ___currencyNegativePattern_24 = value; } inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); } inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; } inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; } inline void set_numberNegativePattern_25(int32_t value) { ___numberNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); } inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; } inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; } inline void set_percentNegativePattern_27(int32_t value) { ___percentNegativePattern_27 = value; } inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); } inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; } inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; } inline void set_percentDecimalDigits_28(int32_t value) { ___percentDecimalDigits_28 = value; } inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); } inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; } inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; } inline void set_digitSubstitution_29(int32_t value) { ___digitSubstitution_29 = value; } inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); } inline bool get_isReadOnly_30() const { return ___isReadOnly_30; } inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; } inline void set_isReadOnly_30(bool value) { ___isReadOnly_30 = value; } inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); } inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; } inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; } inline void set_m_useUserOverride_31(bool value) { ___m_useUserOverride_31 = value; } inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); } inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; } inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; } inline void set_m_isInvariant_32(bool value) { ___m_isInvariant_32 = value; } inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); } inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; } inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; } inline void set_validForParseAsNumber_33(bool value) { ___validForParseAsNumber_33 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); } inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; } inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; } inline void set_validForParseAsCurrency_34(bool value) { ___validForParseAsCurrency_34 = value; } }; struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields { public: // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } }; // System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 : public RuntimeObject { public: // System.String System.Globalization.SortKey::source String_t* ___source_0; // System.Byte[] System.Globalization.SortKey::key ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key_1; // System.Globalization.CompareOptions System.Globalization.SortKey::options int32_t ___options_2; // System.Int32 System.Globalization.SortKey::lcid int32_t ___lcid_3; public: inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___source_0)); } inline String_t* get_source_0() const { return ___source_0; } inline String_t** get_address_of_source_0() { return &___source_0; } inline void set_source_0(String_t* value) { ___source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value); } inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___key_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_key_1() const { return ___key_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_key_1() { return &___key_1; } inline void set_key_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___key_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value); } inline static int32_t get_offset_of_options_2() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___options_2)); } inline int32_t get_options_2() const { return ___options_2; } inline int32_t* get_address_of_options_2() { return &___options_2; } inline void set_options_2(int32_t value) { ___options_2 = value; } inline static int32_t get_offset_of_lcid_3() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___lcid_3)); } inline int32_t get_lcid_3() const { return ___lcid_3; } inline int32_t* get_address_of_lcid_3() { return &___lcid_3; } inline void set_lcid_3(int32_t value) { ___lcid_3 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_marshaled_pinvoke { char* ___source_0; Il2CppSafeArray/*NONE*/* ___key_1; int32_t ___options_2; int32_t ___lcid_3; }; // Native definition for COM marshalling of System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_marshaled_com { Il2CppChar* ___source_0; Il2CppSafeArray/*NONE*/* ___key_1; int32_t ___options_2; int32_t ___lcid_3; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 : public RuntimeObject { public: // System.PlatformID System.OperatingSystem::_platform int32_t ____platform_0; // System.Version System.OperatingSystem::_version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____version_1; // System.String System.OperatingSystem::_servicePack String_t* ____servicePack_2; public: inline static int32_t get_offset_of__platform_0() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____platform_0)); } inline int32_t get__platform_0() const { return ____platform_0; } inline int32_t* get_address_of__platform_0() { return &____platform_0; } inline void set__platform_0(int32_t value) { ____platform_0 = value; } inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____version_1)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__version_1() const { return ____version_1; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__version_1() { return &____version_1; } inline void set__version_1(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ____version_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____version_1), (void*)value); } inline static int32_t get_offset_of__servicePack_2() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____servicePack_2)); } inline String_t* get__servicePack_2() const { return ____servicePack_2; } inline String_t** get_address_of__servicePack_2() { return &____servicePack_2; } inline void set__servicePack_2(String_t* value) { ____servicePack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____servicePack_2), (void*)value); } }; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 : public RuntimeObject { public: // System.String System.Reflection.AssemblyName::name String_t* ___name_0; // System.String System.Reflection.AssemblyName::codebase String_t* ___codebase_1; // System.Int32 System.Reflection.AssemblyName::major int32_t ___major_2; // System.Int32 System.Reflection.AssemblyName::minor int32_t ___minor_3; // System.Int32 System.Reflection.AssemblyName::build int32_t ___build_4; // System.Int32 System.Reflection.AssemblyName::revision int32_t ___revision_5; // System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___cultureinfo_6; // System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags int32_t ___flags_7; // System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg int32_t ___hashalg_8; // System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; // System.Byte[] System.Reflection.AssemblyName::publicKey ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___publicKey_10; // System.Byte[] System.Reflection.AssemblyName::keyToken ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyToken_11; // System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat int32_t ___versioncompat_12; // System.Version System.Reflection.AssemblyName::version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; // System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture int32_t ___processor_architecture_14; // System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType int32_t ___contentType_15; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___codebase_1)); } inline String_t* get_codebase_1() const { return ___codebase_1; } inline String_t** get_address_of_codebase_1() { return &___codebase_1; } inline void set_codebase_1(String_t* value) { ___codebase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value); } inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___major_2)); } inline int32_t get_major_2() const { return ___major_2; } inline int32_t* get_address_of_major_2() { return &___major_2; } inline void set_major_2(int32_t value) { ___major_2 = value; } inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___minor_3)); } inline int32_t get_minor_3() const { return ___minor_3; } inline int32_t* get_address_of_minor_3() { return &___minor_3; } inline void set_minor_3(int32_t value) { ___minor_3 = value; } inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___build_4)); } inline int32_t get_build_4() const { return ___build_4; } inline int32_t* get_address_of_build_4() { return &___build_4; } inline void set_build_4(int32_t value) { ___build_4 = value; } inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___revision_5)); } inline int32_t get_revision_5() const { return ___revision_5; } inline int32_t* get_address_of_revision_5() { return &___revision_5; } inline void set_revision_5(int32_t value) { ___revision_5 = value; } inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___cultureinfo_6)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_cultureinfo_6() const { return ___cultureinfo_6; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; } inline void set_cultureinfo_6(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___cultureinfo_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value); } inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___flags_7)); } inline int32_t get_flags_7() const { return ___flags_7; } inline int32_t* get_address_of_flags_7() { return &___flags_7; } inline void set_flags_7(int32_t value) { ___flags_7 = value; } inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___hashalg_8)); } inline int32_t get_hashalg_8() const { return ___hashalg_8; } inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; } inline void set_hashalg_8(int32_t value) { ___hashalg_8 = value; } inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keypair_9)); } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * get_keypair_9() const { return ___keypair_9; } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD ** get_address_of_keypair_9() { return &___keypair_9; } inline void set_keypair_9(StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * value) { ___keypair_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value); } inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___publicKey_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_publicKey_10() const { return ___publicKey_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_publicKey_10() { return &___publicKey_10; } inline void set_publicKey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___publicKey_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value); } inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keyToken_11)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyToken_11() const { return ___keyToken_11; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyToken_11() { return &___keyToken_11; } inline void set_keyToken_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___keyToken_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value); } inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___versioncompat_12)); } inline int32_t get_versioncompat_12() const { return ___versioncompat_12; } inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; } inline void set_versioncompat_12(int32_t value) { ___versioncompat_12 = value; } inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___version_13)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get_version_13() const { return ___version_13; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of_version_13() { return &___version_13; } inline void set_version_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ___version_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value); } inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___processor_architecture_14)); } inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; } inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; } inline void set_processor_architecture_14(int32_t value) { ___processor_architecture_14 = value; } inline static int32_t get_offset_of_contentType_15() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___contentType_15)); } inline int32_t get_contentType_15() const { return ___contentType_15; } inline int32_t* get_address_of_contentType_15() { return &___contentType_15; } inline void set_contentType_15(int32_t value) { ___contentType_15 = value; } }; // Native definition for P/Invoke marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_pinvoke { char* ___name_0; char* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // Native definition for COM marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 : public Assembly_t { public: public: }; // System.Resources.ResourceManager struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF : public RuntimeObject { public: // System.String System.Resources.ResourceManager::BaseNameField String_t* ___BaseNameField_0; // System.Collections.Hashtable System.Resources.ResourceManager::ResourceSets Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___ResourceSets_1; // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet> System.Resources.ResourceManager::_resourceSets Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * ____resourceSets_2; // System.String System.Resources.ResourceManager::moduleDir String_t* ___moduleDir_3; // System.Reflection.Assembly System.Resources.ResourceManager::MainAssembly Assembly_t * ___MainAssembly_4; // System.Type System.Resources.ResourceManager::_locationInfo Type_t * ____locationInfo_5; // System.Type System.Resources.ResourceManager::_userResourceSet Type_t * ____userResourceSet_6; // System.Globalization.CultureInfo System.Resources.ResourceManager::_neutralResourcesCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ____neutralResourcesCulture_7; // System.Resources.ResourceManager_CultureNameResourceSetPair System.Resources.ResourceManager::_lastUsedResourceCache CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * ____lastUsedResourceCache_8; // System.Boolean System.Resources.ResourceManager::_ignoreCase bool ____ignoreCase_9; // System.Boolean System.Resources.ResourceManager::UseManifest bool ___UseManifest_10; // System.Boolean System.Resources.ResourceManager::UseSatelliteAssem bool ___UseSatelliteAssem_11; // System.Resources.UltimateResourceFallbackLocation System.Resources.ResourceManager::_fallbackLoc int32_t ____fallbackLoc_12; // System.Version System.Resources.ResourceManager::_satelliteContractVersion Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____satelliteContractVersion_13; // System.Boolean System.Resources.ResourceManager::_lookedForSatelliteContractVersion bool ____lookedForSatelliteContractVersion_14; // System.Reflection.Assembly System.Resources.ResourceManager::_callingAssembly Assembly_t * ____callingAssembly_15; // System.Reflection.RuntimeAssembly System.Resources.ResourceManager::m_callingAssembly RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * ___m_callingAssembly_16; // System.Resources.IResourceGroveler System.Resources.ResourceManager::resourceGroveler RuntimeObject* ___resourceGroveler_17; public: inline static int32_t get_offset_of_BaseNameField_0() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___BaseNameField_0)); } inline String_t* get_BaseNameField_0() const { return ___BaseNameField_0; } inline String_t** get_address_of_BaseNameField_0() { return &___BaseNameField_0; } inline void set_BaseNameField_0(String_t* value) { ___BaseNameField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___BaseNameField_0), (void*)value); } inline static int32_t get_offset_of_ResourceSets_1() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___ResourceSets_1)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_ResourceSets_1() const { return ___ResourceSets_1; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_ResourceSets_1() { return &___ResourceSets_1; } inline void set_ResourceSets_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___ResourceSets_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResourceSets_1), (void*)value); } inline static int32_t get_offset_of__resourceSets_2() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____resourceSets_2)); } inline Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * get__resourceSets_2() const { return ____resourceSets_2; } inline Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 ** get_address_of__resourceSets_2() { return &____resourceSets_2; } inline void set__resourceSets_2(Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * value) { ____resourceSets_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____resourceSets_2), (void*)value); } inline static int32_t get_offset_of_moduleDir_3() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___moduleDir_3)); } inline String_t* get_moduleDir_3() const { return ___moduleDir_3; } inline String_t** get_address_of_moduleDir_3() { return &___moduleDir_3; } inline void set_moduleDir_3(String_t* value) { ___moduleDir_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___moduleDir_3), (void*)value); } inline static int32_t get_offset_of_MainAssembly_4() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___MainAssembly_4)); } inline Assembly_t * get_MainAssembly_4() const { return ___MainAssembly_4; } inline Assembly_t ** get_address_of_MainAssembly_4() { return &___MainAssembly_4; } inline void set_MainAssembly_4(Assembly_t * value) { ___MainAssembly_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___MainAssembly_4), (void*)value); } inline static int32_t get_offset_of__locationInfo_5() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____locationInfo_5)); } inline Type_t * get__locationInfo_5() const { return ____locationInfo_5; } inline Type_t ** get_address_of__locationInfo_5() { return &____locationInfo_5; } inline void set__locationInfo_5(Type_t * value) { ____locationInfo_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____locationInfo_5), (void*)value); } inline static int32_t get_offset_of__userResourceSet_6() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____userResourceSet_6)); } inline Type_t * get__userResourceSet_6() const { return ____userResourceSet_6; } inline Type_t ** get_address_of__userResourceSet_6() { return &____userResourceSet_6; } inline void set__userResourceSet_6(Type_t * value) { ____userResourceSet_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____userResourceSet_6), (void*)value); } inline static int32_t get_offset_of__neutralResourcesCulture_7() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____neutralResourcesCulture_7)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get__neutralResourcesCulture_7() const { return ____neutralResourcesCulture_7; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of__neutralResourcesCulture_7() { return &____neutralResourcesCulture_7; } inline void set__neutralResourcesCulture_7(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ____neutralResourcesCulture_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____neutralResourcesCulture_7), (void*)value); } inline static int32_t get_offset_of__lastUsedResourceCache_8() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____lastUsedResourceCache_8)); } inline CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * get__lastUsedResourceCache_8() const { return ____lastUsedResourceCache_8; } inline CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 ** get_address_of__lastUsedResourceCache_8() { return &____lastUsedResourceCache_8; } inline void set__lastUsedResourceCache_8(CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * value) { ____lastUsedResourceCache_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastUsedResourceCache_8), (void*)value); } inline static int32_t get_offset_of__ignoreCase_9() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____ignoreCase_9)); } inline bool get__ignoreCase_9() const { return ____ignoreCase_9; } inline bool* get_address_of__ignoreCase_9() { return &____ignoreCase_9; } inline void set__ignoreCase_9(bool value) { ____ignoreCase_9 = value; } inline static int32_t get_offset_of_UseManifest_10() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___UseManifest_10)); } inline bool get_UseManifest_10() const { return ___UseManifest_10; } inline bool* get_address_of_UseManifest_10() { return &___UseManifest_10; } inline void set_UseManifest_10(bool value) { ___UseManifest_10 = value; } inline static int32_t get_offset_of_UseSatelliteAssem_11() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___UseSatelliteAssem_11)); } inline bool get_UseSatelliteAssem_11() const { return ___UseSatelliteAssem_11; } inline bool* get_address_of_UseSatelliteAssem_11() { return &___UseSatelliteAssem_11; } inline void set_UseSatelliteAssem_11(bool value) { ___UseSatelliteAssem_11 = value; } inline static int32_t get_offset_of__fallbackLoc_12() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____fallbackLoc_12)); } inline int32_t get__fallbackLoc_12() const { return ____fallbackLoc_12; } inline int32_t* get_address_of__fallbackLoc_12() { return &____fallbackLoc_12; } inline void set__fallbackLoc_12(int32_t value) { ____fallbackLoc_12 = value; } inline static int32_t get_offset_of__satelliteContractVersion_13() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____satelliteContractVersion_13)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__satelliteContractVersion_13() const { return ____satelliteContractVersion_13; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__satelliteContractVersion_13() { return &____satelliteContractVersion_13; } inline void set__satelliteContractVersion_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ____satelliteContractVersion_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____satelliteContractVersion_13), (void*)value); } inline static int32_t get_offset_of__lookedForSatelliteContractVersion_14() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____lookedForSatelliteContractVersion_14)); } inline bool get__lookedForSatelliteContractVersion_14() const { return ____lookedForSatelliteContractVersion_14; } inline bool* get_address_of__lookedForSatelliteContractVersion_14() { return &____lookedForSatelliteContractVersion_14; } inline void set__lookedForSatelliteContractVersion_14(bool value) { ____lookedForSatelliteContractVersion_14 = value; } inline static int32_t get_offset_of__callingAssembly_15() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____callingAssembly_15)); } inline Assembly_t * get__callingAssembly_15() const { return ____callingAssembly_15; } inline Assembly_t ** get_address_of__callingAssembly_15() { return &____callingAssembly_15; } inline void set__callingAssembly_15(Assembly_t * value) { ____callingAssembly_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____callingAssembly_15), (void*)value); } inline static int32_t get_offset_of_m_callingAssembly_16() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___m_callingAssembly_16)); } inline RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * get_m_callingAssembly_16() const { return ___m_callingAssembly_16; } inline RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 ** get_address_of_m_callingAssembly_16() { return &___m_callingAssembly_16; } inline void set_m_callingAssembly_16(RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * value) { ___m_callingAssembly_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_callingAssembly_16), (void*)value); } inline static int32_t get_offset_of_resourceGroveler_17() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___resourceGroveler_17)); } inline RuntimeObject* get_resourceGroveler_17() const { return ___resourceGroveler_17; } inline RuntimeObject** get_address_of_resourceGroveler_17() { return &___resourceGroveler_17; } inline void set_resourceGroveler_17(RuntimeObject* value) { ___resourceGroveler_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___resourceGroveler_17), (void*)value); } }; struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields { public: // System.Int32 System.Resources.ResourceManager::MagicNumber int32_t ___MagicNumber_18; // System.Int32 System.Resources.ResourceManager::HeaderVersionNumber int32_t ___HeaderVersionNumber_19; // System.Type System.Resources.ResourceManager::_minResourceSet Type_t * ____minResourceSet_20; // System.String System.Resources.ResourceManager::ResReaderTypeName String_t* ___ResReaderTypeName_21; // System.String System.Resources.ResourceManager::ResSetTypeName String_t* ___ResSetTypeName_22; // System.String System.Resources.ResourceManager::MscorlibName String_t* ___MscorlibName_23; // System.Int32 System.Resources.ResourceManager::DEBUG int32_t ___DEBUG_24; public: inline static int32_t get_offset_of_MagicNumber_18() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___MagicNumber_18)); } inline int32_t get_MagicNumber_18() const { return ___MagicNumber_18; } inline int32_t* get_address_of_MagicNumber_18() { return &___MagicNumber_18; } inline void set_MagicNumber_18(int32_t value) { ___MagicNumber_18 = value; } inline static int32_t get_offset_of_HeaderVersionNumber_19() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___HeaderVersionNumber_19)); } inline int32_t get_HeaderVersionNumber_19() const { return ___HeaderVersionNumber_19; } inline int32_t* get_address_of_HeaderVersionNumber_19() { return &___HeaderVersionNumber_19; } inline void set_HeaderVersionNumber_19(int32_t value) { ___HeaderVersionNumber_19 = value; } inline static int32_t get_offset_of__minResourceSet_20() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ____minResourceSet_20)); } inline Type_t * get__minResourceSet_20() const { return ____minResourceSet_20; } inline Type_t ** get_address_of__minResourceSet_20() { return &____minResourceSet_20; } inline void set__minResourceSet_20(Type_t * value) { ____minResourceSet_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____minResourceSet_20), (void*)value); } inline static int32_t get_offset_of_ResReaderTypeName_21() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___ResReaderTypeName_21)); } inline String_t* get_ResReaderTypeName_21() const { return ___ResReaderTypeName_21; } inline String_t** get_address_of_ResReaderTypeName_21() { return &___ResReaderTypeName_21; } inline void set_ResReaderTypeName_21(String_t* value) { ___ResReaderTypeName_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResReaderTypeName_21), (void*)value); } inline static int32_t get_offset_of_ResSetTypeName_22() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___ResSetTypeName_22)); } inline String_t* get_ResSetTypeName_22() const { return ___ResSetTypeName_22; } inline String_t** get_address_of_ResSetTypeName_22() { return &___ResSetTypeName_22; } inline void set_ResSetTypeName_22(String_t* value) { ___ResSetTypeName_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResSetTypeName_22), (void*)value); } inline static int32_t get_offset_of_MscorlibName_23() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___MscorlibName_23)); } inline String_t* get_MscorlibName_23() const { return ___MscorlibName_23; } inline String_t** get_address_of_MscorlibName_23() { return &___MscorlibName_23; } inline void set_MscorlibName_23(String_t* value) { ___MscorlibName_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___MscorlibName_23), (void*)value); } inline static int32_t get_offset_of_DEBUG_24() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___DEBUG_24)); } inline int32_t get_DEBUG_24() const { return ___DEBUG_24; } inline int32_t* get_address_of_DEBUG_24() { return &___DEBUG_24; } inline void set_DEBUG_24(int32_t value) { ___DEBUG_24 = value; } }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Action`2<System.Char,System.String> struct Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; // System.Comparison`1<System.String> struct Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 : public MulticastDelegate_t { public: public: }; // System.Diagnostics.Tracing.EventSource_OverideEventProvider struct OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B : public EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 { public: // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventSource_OverideEventProvider::m_eventSource EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___m_eventSource_13; public: inline static int32_t get_offset_of_m_eventSource_13() { return static_cast<int32_t>(offsetof(OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B, ___m_eventSource_13)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_m_eventSource_13() const { return ___m_eventSource_13; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_m_eventSource_13() { return &___m_eventSource_13; } inline void set_m_eventSource_13(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___m_eventSource_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventSource_13), (void*)value); } }; // System.Diagnostics.Tracing.TplEtwProvider struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E : public EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB { public: public: }; struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields { public: // System.Diagnostics.Tracing.TplEtwProvider System.Diagnostics.Tracing.TplEtwProvider::Log TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * ___Log_29; public: inline static int32_t get_offset_of_Log_29() { return static_cast<int32_t>(offsetof(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields, ___Log_29)); } inline TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * get_Log_29() const { return ___Log_29; } inline TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E ** get_address_of_Log_29() { return &___Log_29; } inline void set_Log_29(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * value) { ___Log_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___Log_29), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid> struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]> struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16> struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]> struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32> struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]> struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64> struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]> struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr> struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]> struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte> struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]> struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single> struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]> struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String> struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan> struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16> struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]> struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32> struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]> struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64> struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]> struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr> struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]> struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t { public: public: }; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.IO.IOException struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.MemberAccessException struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NullReferenceException struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 : public MulticastDelegate_t { public: public: }; // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { public: public: }; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value); } }; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.TypeLoadException::ClassName String_t* ___ClassName_17; // System.String System.TypeLoadException::AssemblyName String_t* ___AssemblyName_18; // System.String System.TypeLoadException::MessageArg String_t* ___MessageArg_19; // System.Int32 System.TypeLoadException::ResourceId int32_t ___ResourceId_20; public: inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); } inline String_t* get_ClassName_17() const { return ___ClassName_17; } inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; } inline void set_ClassName_17(String_t* value) { ___ClassName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value); } inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); } inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; } inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; } inline void set_AssemblyName_18(String_t* value) { ___AssemblyName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value); } inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); } inline String_t* get_MessageArg_19() const { return ___MessageArg_19; } inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; } inline void set_MessageArg_19(String_t* value) { ___MessageArg_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value); } inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); } inline int32_t get_ResourceId_20() const { return ___ResourceId_20; } inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; } inline void set_ResourceId_20(int32_t value) { ___ResourceId_20 = value; } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.Diagnostics.Tracing.GuidArrayTypeInfo struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 : public TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 { public: public: }; // System.Diagnostics.Tracing.GuidTypeInfo struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED : public TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 { public: public: }; // System.Diagnostics.Tracing.Int16ArrayTypeInfo struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 : public TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 { public: public: }; // System.Diagnostics.Tracing.Int16TypeInfo struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B : public TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 { public: public: }; // System.Diagnostics.Tracing.Int32ArrayTypeInfo struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C : public TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 { public: public: }; // System.Diagnostics.Tracing.Int32TypeInfo struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C : public TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C { public: public: }; // System.Diagnostics.Tracing.Int64ArrayTypeInfo struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC : public TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD { public: public: }; // System.Diagnostics.Tracing.Int64TypeInfo struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 : public TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 { public: public: }; // System.Diagnostics.Tracing.IntPtrArrayTypeInfo struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 : public TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 { public: public: }; // System.Diagnostics.Tracing.IntPtrTypeInfo struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 : public TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 { public: public: }; // System.Diagnostics.Tracing.SByteArrayTypeInfo struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 : public TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E { public: public: }; // System.Diagnostics.Tracing.SByteTypeInfo struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C : public TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 { public: public: }; // System.Diagnostics.Tracing.SingleArrayTypeInfo struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 : public TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E { public: public: }; // System.Diagnostics.Tracing.SingleTypeInfo struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 : public TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD { public: public: }; // System.Diagnostics.Tracing.StringTypeInfo struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 : public TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D { public: public: }; // System.Diagnostics.Tracing.TimeSpanTypeInfo struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA : public TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD { public: public: }; // System.Diagnostics.Tracing.UInt16ArrayTypeInfo struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE : public TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 { public: public: }; // System.Diagnostics.Tracing.UInt16TypeInfo struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 { public: public: }; // System.Diagnostics.Tracing.UInt32ArrayTypeInfo struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC : public TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB { public: public: }; // System.Diagnostics.Tracing.UInt32TypeInfo struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 { public: public: }; // System.Diagnostics.Tracing.UInt64ArrayTypeInfo struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 : public TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 { public: public: }; // System.Diagnostics.Tracing.UInt64TypeInfo struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C { public: public: }; // System.Diagnostics.Tracing.UIntPtrArrayTypeInfo struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C : public TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 { public: public: }; // System.Diagnostics.Tracing.UIntPtrTypeInfo struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 { public: public: }; // System.DivideByZeroException struct DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; // System.DllNotFoundException struct DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.DuplicateWaitObjectException struct DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; struct DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.DuplicateWaitObjectException::_duplicateWaitObjectMessage String_t* ____duplicateWaitObjectMessage_18; public: inline static int32_t get_offset_of__duplicateWaitObjectMessage_18() { return static_cast<int32_t>(offsetof(DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_StaticFields, ____duplicateWaitObjectMessage_18)); } inline String_t* get__duplicateWaitObjectMessage_18() const { return ____duplicateWaitObjectMessage_18; } inline String_t** get_address_of__duplicateWaitObjectMessage_18() { return &____duplicateWaitObjectMessage_18; } inline void set__duplicateWaitObjectMessage_18(String_t* value) { ____duplicateWaitObjectMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____duplicateWaitObjectMessage_18), (void*)value); } }; // System.EntryPointNotFoundException struct EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.FieldAccessException struct FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 { public: public: }; // System.IO.FileNotFoundException struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA { public: // System.String System.IO.FileNotFoundException::_fileName String_t* ____fileName_18; // System.String System.IO.FileNotFoundException::_fusionLog String_t* ____fusionLog_19; public: inline static int32_t get_offset_of__fileName_18() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fileName_18)); } inline String_t* get__fileName_18() const { return ____fileName_18; } inline String_t** get_address_of__fileName_18() { return &____fileName_18; } inline void set__fileName_18(String_t* value) { ____fileName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____fileName_18), (void*)value); } inline static int32_t get_offset_of__fusionLog_19() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fusionLog_19)); } inline String_t* get__fusionLog_19() const { return ____fusionLog_19; } inline String_t** get_address_of__fusionLog_19() { return &____fusionLog_19; } inline void set__fusionLog_19(String_t* value) { ____fusionLog_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_19), (void*)value); } }; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1]; public: inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.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.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray { public: ALIGN_FIELD (8) Guid_t m_Items[1]; public: inline Guid_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Guid_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, Guid_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_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.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.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD : public RuntimeArray { public: ALIGN_FIELD (8) intptr_t m_Items[1]; public: inline intptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline intptr_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, intptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_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, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Globalization.CultureInfo[] struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31 : public RuntimeArray { public: ALIGN_FIELD (8) CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * m_Items[1]; public: inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** 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, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889 : public RuntimeArray { public: ALIGN_FIELD (8) int8_t m_Items[1]; public: inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_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, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E : public RuntimeArray { public: ALIGN_FIELD (8) uintptr_t m_Items[1]; public: inline uintptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uintptr_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, uintptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uintptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uintptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uintptr_t value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.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.Diagnostics.Tracing.TraceLoggingTypeInfo[] struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC : public RuntimeArray { public: ALIGN_FIELD (8) TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * m_Items[1]; public: inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** 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, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Diagnostics.Tracing.PropertyAnalysis[] struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB : public RuntimeArray { public: ALIGN_FIELD (8) PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * m_Items[1]; public: inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A ** 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, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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((void**)m_Items + index, (void*)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((void**)m_Items + index, (void*)value); } }; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196 : public RuntimeArray { public: ALIGN_FIELD (8) StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * m_Items[1]; public: inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 ** 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, StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10 : public RuntimeArray { public: ALIGN_FIELD (8) Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA m_Items[1]; public: inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * 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, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } }; // System.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834 : public RuntimeArray { public: ALIGN_FIELD (8) InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 m_Items[1]; public: inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL); } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL); } }; IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke_back(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke_cleanup(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com_back(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com_cleanup(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke(const Exception_t& unmarshaled, Exception_t_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_back(const Exception_t_marshaled_pinvoke& marshaled, Exception_t& unmarshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_cleanup(Exception_t_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com(const Exception_t& unmarshaled, Exception_t_marshaled_com& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com_back(const Exception_t_marshaled_com& marshaled, Exception_t& unmarshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com_cleanup(Exception_t_marshaled_com& marshaled); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared (TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_gshared (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_gshared (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_gshared (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_gshared (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_gshared (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mF4D1D25DD6BDCD54B3E2E2C8819FB1D5D9132E8C_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m906EEFA223D0EB7D68ABB5EE33EC593CC7A5BA78_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mE3655B2903F36D670326D6C26C0A4E3C5A5869E9_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * Dictionary_2_get_Keys_mA4A8C65DA5C29DC0C967EDF49569871850032ABE_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::Sort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_gshared (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_gshared (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 ValueCollection_GetEnumerator_m7A12639A28DE8959DC682764BF2582EA59CDAFE0_gshared (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tE4E0223181A9DB1608389430F309FD4679105FED * Dictionary_2_get_Keys_m9DB49BB9ED30ED6936F96A94C8B327F8B2F46514_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.UInt64>::.ctor(System.Collections.Generic.IEnumerable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.UInt64>::Sort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.UInt64>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mE690999065C48F6233FAD2AD14A1ECDB5CE79FAE_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_gshared (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_gshared (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeyCollection_get_Count_mCE7D1150E953251EDA2A70DEF592547DE1BF1C51_gshared (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::CopyTo(TKey[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection_CopyTo_mBD233D9F57FDF9A975ECD4B4984CD183B8D7CBB9_gshared (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared (const RuntimeMethod* method); // System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared (Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m6FD136CFAE06EB8ADA3FE57C7921E8323F756D81_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * ___comparer3, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA2639DB159E3B05930C6A2D4ADA031412CCFB1A0_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.Object>::Invoke(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mB35D966442076362FBEEAD952988680900A4B476_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, Il2CppChar ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentSetItem_2__ctor_m75D499F3307E096304E97A6D4B538505B34887BA_gshared (ConcurrentSetItem_2_t270F9459B47B76BFB74FE28134B90289F5DA3E57 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_gshared (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_gshared (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_gshared (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_gshared (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81 * TraceLoggingTypeInfo_1_get_Instance_mD764A11872BA740CAF856826BC8F3D92BD7E993D_gshared (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_gshared (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425_gshared (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::TryGet(KeyType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConcurrentSet_2_TryGet_m85702C3EAF2460866D4BCD060A99A96439048163_gshared (ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___key0, const RuntimeMethod* method); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::GetOrAdd(ItemType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConcurrentSet_2_GetOrAdd_m3E6C5927019CAD8F66DDC2094DBCEF1E18BCC778_gshared (ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA * __this, RuntimeObject * ___newItem0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method); // AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Object>(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_GetCustomAttribute_TisRuntimeObject_mA9698B61A4CDAC84F1A0602F4268A8F124A3CAA4_gshared (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method); // T[] System.Collections.Generic.List`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_gshared (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_gshared (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_gshared (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_gshared (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * __this, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_gshared (const RuntimeMethod* method); // System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisRuntimeObject_m576D13AEC7245A3AD8E7A5BF192F68C522E5CB85_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.IntPtr System.IntPtr::op_Explicit(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF (int64_t ___value0, const RuntimeMethod* method); // System.IntPtr System.Diagnostics.Tracing.EventSource/EventData::get_DataPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, const RuntimeMethod* method); // System.Int64 System.IntPtr::op_Explicit(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_op_Explicit_m254924E8680FCCF870F18064DC0B114445B09172 (intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::set_DataPointer(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::set_Size(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method); // System.UIntPtr System.UIntPtr::op_Explicit(System.Void*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtr_op_Explicit_m484C2BD47D35FBD254A95FD56CCABD27CC79C95F (void* ___value0, const RuntimeMethod* method); // System.UInt64 System.UIntPtr::op_Explicit(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075 (uintptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::SetMetadata(System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventProvider__ctor_m3B50CC1BF097459B596C77B56561A089D9397AD9 (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.EventProvider::IsEnabled() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventProvider::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventProvider::get_MatchAnyKeyword() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::SendCommand(System.Diagnostics.Tracing.EventListener,System.Int32,System.Int32,System.Diagnostics.Tracing.EventCommand,System.Boolean,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary`2<System.String,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_SendCommand_mC04C4889CCB21B58C052A48E030C4655B5CA74DE (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___listener0, int32_t ___perEventSourceSessionId1, int32_t ___etwSessionId2, int32_t ___command3, bool ___enable4, int32_t ___level5, int64_t ___matchAnyKeyword6, RuntimeObject* ___commandArguments7, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Drain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, uint8_t ___input0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Append(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Finish(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol1(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED (uint32_t ___input0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol5(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD (uint32_t ___input0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol30(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F (uint32_t ___input0, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Level(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Opcode(System.Diagnostics.Tracing.EventOpcode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Keywords(System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Byte,System.UInt16,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___dataType1, int32_t ___tags2, uint8_t ___countFlags3, uint16_t ___fixedCount4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom5, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.Statics::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE (String_t* ___name0, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.Statics::EncodeTags(System.Int32,System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453 (int32_t ___tags0, int32_t* ___pos1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata2, const RuntimeMethod* method); // System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::MakeDataType(System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644 (int32_t ___baseType0, int32_t ___format1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddArray(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Guid[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F (TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddScalar(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Guid_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500 (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format16(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447 (TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int16_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5 (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format32(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8 (TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2 (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format64(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141 (TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3 (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::FormatPtr(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.IntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A (TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8 (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_gshared)(__this, method); } // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor() inline void Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() inline void Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::.ctor() inline void List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::.ctor() inline void Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Guid::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5 (Guid_t * __this, const RuntimeMethod* method); // System.String System.String::Replace(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470 (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::ManifestError(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___msg0, bool ___runtimeCritical1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.String::Equals(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared)(__this, ___key0, ___value1, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method); // System.String System.UInt64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD (uint64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mF4D1D25DD6BDCD54B3E2E2C8819FB1D5D9132E8C_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::.ctor() inline void Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, const RuntimeMethod*))Dictionary_2__ctor_m906EEFA223D0EB7D68ABB5EE33EC593CC7A5BA78_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mE3655B2903F36D670326D6C26C0A4E3C5A5869E9_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Diagnostics.Tracing.EventAttribute::get_EventId() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84 (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Byte System.Diagnostics.Tracing.EventAttribute::get_Version() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m4B3D765122247E2EBDA4E3870A86C26DCCCC8717 (StringBuilder_t * __this, uint8_t ___value0, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventAttribute::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLevelName(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2 (int32_t ___level0, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.EventAttribute::get_Message() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteMessageAttrib(System.Text.StringBuilder,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, String_t* ___value3, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventAttribute::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetKeywords(System.UInt64,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, uint64_t ___keywords0, String_t* ___eventName1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventAttribute::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetOpcodeName(System.Diagnostics.Tracing.EventOpcode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___opcode0, String_t* ___eventName1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTask System.Diagnostics.Tracing.EventAttribute::get_Task() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTaskName(System.Diagnostics.Tracing.EventTask,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___task0, String_t* ___eventName1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) inline void List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, int32_t, const RuntimeMethod*))List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_gshared)(__this, ___capacity0, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) inline void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, int32_t, const RuntimeMethod*))List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared)(__this, ___item0, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTypeName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57 (Type_t * __this, const RuntimeMethod* method); // System.Boolean Microsoft.Reflection.ReflectionExtensions::IsEnum(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6 (Type_t * ___type0, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Type>::.ctor() inline void Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2 (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Type>::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Type>::Add(TKey,TValue) inline void Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, String_t* ___key0, Type_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, String_t*, Type_t *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, String_t* ___key0, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, String_t*, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::TranslateToManifestConvention(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventMessage0, String_t* ___evtName1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::CreateManifestString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Keys() inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1 (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method) { return (( KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2_get_Keys_mA4A8C65DA5C29DC0C967EDF49569871850032ABE_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) inline void List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_gshared)(__this, ___collection0, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::Sort() inline void List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() inline Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method) { return (( Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline)(__this, method); } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Item(TKey) inline String_t* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906 (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, const RuntimeMethod* method) { return (( String_t* (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared)(__this, ___key0, method); } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteNameAndMessageAttribs(System.Text.StringBuilder,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609 (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() inline void Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9 (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.Type>::get_Values() inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5 (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, const RuntimeMethod* method) { return (( ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, const RuntimeMethod*))Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Type>::GetEnumerator() inline Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51 (ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * __this, const RuntimeMethod* method) { return (( Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 (*) (ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC *, const RuntimeMethod*))ValueCollection_GetEnumerator_m7A12639A28DE8959DC682764BF2582EA59CDAFE0_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::get_Current() inline Type_t * Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_inline (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { return (( Type_t * (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline)(__this, method); } // System.Attribute System.Diagnostics.Tracing.EventSource::GetCustomAttributeHelper(System.Reflection.MemberInfo,System.Type,System.Diagnostics.Tracing.EventManifestOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * EventSource_GetCustomAttributeHelper_m0071006CDD204BE00B7EFEA9F5E52D087AF1F7D7 (MemberInfo_t * ___member0, Type_t * ___attributeType1, int32_t ___flags2, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method); // System.String System.Int64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::MoveNext() inline bool Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695 (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::Dispose() inline void Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::get_Keys() inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, const RuntimeMethod* method) { return (( KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, const RuntimeMethod*))Dictionary_2_get_Keys_m9DB49BB9ED30ED6936F96A94C8B327F8B2F46514_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.UInt64>::.ctor(System.Collections.Generic.IEnumerable`1<T>) inline void List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_gshared)(__this, ___collection0, method); } // System.Void System.Collections.Generic.List`1<System.UInt64>::Sort() inline void List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8 (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, const RuntimeMethod*))List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.UInt64>::GetEnumerator() inline Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7 (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method) { return (( Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, const RuntimeMethod*))List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() inline uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { return (( uint64_t (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline)(__this, method); } // TValue System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::get_Item(TKey) inline String_t* Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, const RuntimeMethod* method) { return (( String_t* (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, const RuntimeMethod*))Dictionary_2_get_Item_mE690999065C48F6233FAD2AD14A1ECDB5CE79FAE_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() inline bool Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34 (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() inline void Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_gshared)(__this, method); } // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1<System.Globalization.CultureInfo> System.Diagnostics.Tracing.ManifestBuilder::GetSupportedCultures(System.Resources.ResourceManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF (ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::.ctor() inline void List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentUICulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487 (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Add(T) inline void List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Keys() inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { return (( KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>::get_Count() inline int32_t KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083 (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 *, const RuntimeMethod*))KeyCollection_get_Count_mCE7D1150E953251EDA2A70DEF592547DE1BF1C51_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>::CopyTo(TKey[],System.Int32) inline void KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___array0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, int32_t, const RuntimeMethod*))KeyCollection_CopyTo_mBD233D9F57FDF9A975ECD4B4984CD183B8D7CBB9_gshared)(__this, ___array0, ___index1, method); } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.String>::get_Default() inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8 (const RuntimeMethod* method) { return (( Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * (*) (const RuntimeMethod*))Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared)(method); } // System.Void System.Comparison`1<System.String>::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127 (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.ArraySortHelper`1<System.String>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) inline void ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562 (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * ___comparer3, const RuntimeMethod* method) { (( void (*) (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, int32_t, int32_t, Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *, const RuntimeMethod*))ArraySortHelper_1_IntrospectiveSort_m6FD136CFAE06EB8ADA3FE57C7921E8323F756D81_gshared)(___keys0, ___left1, ___length2, ___comparer3, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Globalization.CultureInfo>::GetEnumerator() inline Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, const RuntimeMethod* method) { return (( Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::get_Current() inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_inline (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { return (( CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLocalizedMessage(System.String,System.Globalization.CultureInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___key0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___ci1, bool ___etwFormat2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::MoveNext() inline bool Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6 (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::Dispose() inline void Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03 (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method); } // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Globalization.CultureInfo[] System.Globalization.CultureInfo::GetCultures(System.Globalization.CultureTypes) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6 (int32_t ___types0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Contains(T) inline bool List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Insert(System.Int32,T) inline void List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, int32_t ___index0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item1, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, int32_t, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared)(__this, ___index0, ___item1, method); } // System.TypeCode Microsoft.Reflection.ReflectionExtensions::GetTypeCode(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReflectionExtensions_GetTypeCode_m55D509078B5566EA871D7C211EDE34AE45661BBD (Type_t * ___type0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050 (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::UpdateStringBuilder(System.Text.StringBuilder&,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E (StringBuilder_t ** ___stringBuilder0, String_t* ___eventMessage1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::TranslateIndexToManifestConvention(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___idx0, String_t* ___evtName1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.String>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2 (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA2639DB159E3B05930C6A2D4ADA031412CCFB1A0_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.Char,System.String>::Invoke(T1,T2) inline void Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0 (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * __this, Il2CppChar ___arg10, String_t* ___arg21, const RuntimeMethod* method) { (( void (*) (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *, Il2CppChar, String_t*, const RuntimeMethod*))Action_2_Invoke_mB35D966442076362FBEEAD952988680900A4B476_gshared)(__this, ___arg10, ___arg21, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, String_t* ___key0, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, String_t*, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Math::Max(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03 (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::.ctor() inline void ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F (ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA * __this, const RuntimeMethod* method) { (( void (*) (ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA *, const RuntimeMethod*))ConcurrentSetItem_2__ctor_m75D499F3307E096304E97A6D4B538505B34887BA_gshared)(__this, method); } // System.Int32 System.Threading.Interlocked::Increment(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F (int32_t* ___location0, const RuntimeMethod* method); // System.Byte[] System.Diagnostics.Tracing.Statics::MetadataForString(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D (String_t* ___name0, int32_t ___prefixSize1, int32_t ___suffixSize2, int32_t ___additionalSize3, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___otherName0, int32_t ___otherTags1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::get_Key() inline String_t* KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_inline (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::get_Value() inline int32_t KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_inline (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline)(__this, method); } // System.StringComparer System.StringComparer::get_Ordinal() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format8(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.SByte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE (TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int8_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704 (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.SessionMask::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, uint32_t ___mask0, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.SessionMask::IsEqualOrSupersetOf(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method); // System.UInt64 System.Diagnostics.Tracing.SessionMask::ToEventKeywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.SessionMask::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.SessionMask::set_Item(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA (TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, float ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182 (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_gshared)(__this, method); } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Object System.Activator::CreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mEE50708E1E8AAD4E5021A2FFDB992DDF65727E17 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Reflection.PropertyInfo[] System.Type::GetProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* Type_GetProperties_mEAE2A4049447E8BD9D18989A80E4C8BC742AE97D (Type_t * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A (PropertyInfo_t * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.Statics::IsGenericMatch(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699 (Type_t * ___type0, RuntimeObject * ___openType1, const RuntimeMethod* method); // System.Type[] System.Diagnostics.Tracing.Statics::GetGenericArguments(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Reflection.TypeFilter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFilter__ctor_m5F16D7D0AB325EAF8F3DF7D8EFEABD6DC79A5D7F (TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1 (Type_t * ___type0, MethodInfo_t * ___method1, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::get_Instance() inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_gshared)(method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::get_Instance() inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_gshared)(method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>::get_Instance() inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_mD764A11872BA740CAF856826BC8F3D92BD7E993D_gshared)(method); } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetDeclaredStaticMethod(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4 (Type_t * ___declaringType0, String_t* ___name1, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method); // System.Int32 System.IntPtr::get_Size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddBinary(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, String_t* ___value0, const RuntimeMethod* method); // System.Object System.Diagnostics.Tracing.TraceLoggingTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469 (TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055 (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_gshared)(__this, method); } // System.Boolean System.Diagnostics.Tracing.EventSource::IsEnabled(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___level0, int64_t ___keywords1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_mE27A6FC640BF894A83640A57FD16C9C26AB9FDF9 (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, String_t* ___arg11, String_t* ___arg22, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m09CF0FC5F066EF4464A34539CE25033532AB6EC4 (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, String_t* ___arg11, String_t* ___arg22, String_t* ___arg33, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m07CFBC104154E61897EFBA392944181E34C0200F (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TplEtwProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.DataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataCollector_BeginBufferedArray_m807DC271CDB214E02B63EA8790080AB3C45779B5 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::EndBufferedArray(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_EndBufferedArray_m5EB7D38BB8818E569778C5C57DAEE5128AA4634F (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, int32_t ___bookmark0, int32_t ___count1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddScalar(System.Void*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, void* ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Int32 System.UIntPtr::get_Size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddBinary(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddBinary_mAE50602915B73FC52AAAD2A3691AA7392AD7FFAC (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, String_t* ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddBinary(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddBinary_mF9695153355117D745C9BAEAD8EA656AA26CCE9C (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, RuntimeArray * ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddArray(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, RuntimeArray * ___value0, int32_t ___length1, int32_t ___itemSize2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.Diagnostics.Tracing.EventTags,System.String,System.Diagnostics.Tracing.TraceLoggingTypeInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, int32_t ___tags0, String_t* ___defaultName1, TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos2, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Byte System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE (int32_t ___settingValue0, uint8_t ___defaultValue1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.Statics::ShouldOverrideFieldName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5 (String_t* ___fieldName0, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Byte[] System.Diagnostics.Tracing.TraceLoggingMetadataCollector::GetMetadata() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_ScratchSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_DataCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_PinCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, String_t*, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425_gshared)(__this, ___key0, ___value1, method); } // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::TryGet(KeyType) inline NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2 (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * __this, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 ___key0, const RuntimeMethod* method) { return (( NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * (*) (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 , const RuntimeMethod*))ConcurrentSet_2_TryGet_m85702C3EAF2460866D4BCD060A99A96439048163_gshared)(__this, ___key0, method); } // System.Void System.Diagnostics.Tracing.NameInfo::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___name0, int32_t ___tags1, int32_t ___typeMetadataSize2, const RuntimeMethod* method); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::GetOrAdd(ItemType) inline NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3 (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * __this, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ___newItem0, const RuntimeMethod* method) { return (( NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * (*) (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C *, const RuntimeMethod*))ConcurrentSet_2_GetOrAdd_m3E6C5927019CAD8F66DDC2094DBCEF1E18BCC778_gshared)(__this, ___newItem0, method); } // System.Void System.Collections.Generic.List`1<System.Type>::.ctor(System.Int32) inline void List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.Statics::GetTypeInfoInstance(System.Type,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6 (Type_t * ___dataType0, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_BeginningBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___type1, int32_t ___tags2, bool ___variableCount3, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddField(System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___fieldMetadata0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___other0, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___group1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, int32_t ___size0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::AddNonscalar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::BeginBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::EndBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::Encode(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::set_Tags(System.Diagnostics.Tracing.EventFieldTags) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::Add(T) inline void List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Void System.Diagnostics.Tracing.FieldMetadata::IncrementStructFieldCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::GetEnumerator() inline Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, const RuntimeMethod* method) { return (( Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::get_Current() inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_inline (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { return (( FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method); } // System.Void System.Diagnostics.Tracing.FieldMetadata::Encode(System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, int32_t* ___pos0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::MoveNext() inline bool Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0 (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::Dispose() inline void Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::.ctor() inline void List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> System.Diagnostics.Tracing.Statics::GetProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::.ctor() inline void List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, const RuntimeMethod* method) { (( void (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Boolean System.Diagnostics.Tracing.Statics::HasCustomAttribute(System.Reflection.PropertyInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55 (PropertyInfo_t * ___propInfo0, Type_t * ___attributeType1, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetGetMethod(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B (MethodBase_t * __this, const RuntimeMethod* method); // AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Diagnostics.Tracing.EventFieldAttribute>(System.Reflection.PropertyInfo) inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method) { return (( EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * (*) (PropertyInfo_t *, const RuntimeMethod*))Statics_GetCustomAttribute_TisRuntimeObject_mA9698B61A4CDAC84F1A0602F4268A8F124A3CAA4_gshared)(___propInfo0, method); } // System.String System.Diagnostics.Tracing.EventFieldAttribute::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline (EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.PropertyAnalysis::.ctor(System.String,System.Reflection.MethodInfo,System.Diagnostics.Tracing.TraceLoggingTypeInfo,System.Diagnostics.Tracing.EventFieldAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * __this, String_t* ___name0, MethodInfo_t * ___getterInfo1, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo2, EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute3, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::Add(T) inline void List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286 (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // T[] System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::ToArray() inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, const RuntimeMethod* method) { return (( PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method); } // System.Int32 System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7 (int32_t ___settingValue10, int32_t ___settingValue21, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventDataAttribute::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventDataAttribute::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventDataAttribute::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventDataAttribute::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.EventDataAttribute::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41 (TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint16_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68 (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170 (TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48 (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557 (TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5 (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UIntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1 (TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uintptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471 (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_gshared)(__this, method); } // System.Void System.ArithmeticException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method); // System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mE39E53B845DB39374DFC9B613B87342A4D05C672 (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.TypeLoadException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.TypeLoadException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method); // System.Int32 System.Double::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5 (double* __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Double::CompareTo(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1 (double* __this, double ___value0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472 (double* __this, double ___obj0, const RuntimeMethod* method); // System.Int32 System.Int64::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method); // System.Int32 System.Double::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292 (double* __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method); // System.String System.Number::FormatDouble(System.Double,System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2 (double ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.String System.Double::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF (double* __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method); // System.String System.Double::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Double::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleFloatingPoint(System.Globalization.NumberStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleFloatingPoint_mEC705C72BC013FB4A554725339A2617D9B4ECC07 (int32_t ___style0, const RuntimeMethod* method); // System.Double System.Number::ParseDouble(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method); // System.TypeCode System.Double::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3 (double* __this, const RuntimeMethod* method); // System.Boolean System.Convert::ToBoolean(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m23B521E072296AA7D4F9FA80D35E27C306B5ABDF (double ___value0, const RuntimeMethod* method); // System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5 (double ___value0, const RuntimeMethod* method); // System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C (double ___value0, const RuntimeMethod* method); // System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC (double ___value0, const RuntimeMethod* method); // System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5 (double ___value0, const RuntimeMethod* method); // System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C (double ___value0, const RuntimeMethod* method); // System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF (double ___value0, const RuntimeMethod* method); // System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D (double ___value0, const RuntimeMethod* method); // System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232 (double ___value0, const RuntimeMethod* method); // System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDADB8C1C52121EE8B0040D4E5FC7CFD2CFAD8B80 (double ___value0, const RuntimeMethod* method); // System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE (double ___value0, const RuntimeMethod* method); // System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17 (double* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.BitConverter::Int64BitsToDouble(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694 (int64_t ___value0, const RuntimeMethod* method); // System.String System.DuplicateWaitObjectException::get_DuplicateWaitObjectMessage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DuplicateWaitObjectException_get_DuplicateWaitObjectMessage_m8A9448044304CE39349EC6C7C6F09858CE302423 (const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.UnitySerializationHolder::GetUnitySerializationInfo(System.Runtime.Serialization.SerializationInfo,System.Int32,System.String,System.Reflection.RuntimeAssembly) IL2CPP_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.Void System.Empty::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method); // System.Boolean System.Enum::GetEnumValuesAndNames(System.RuntimeType,System.UInt64[]&,System.String[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___values1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C (const RuntimeMethod* method) { return (( Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * (*) (const RuntimeMethod*))Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_gshared)(method); } // System.Void System.Array::Sort<System.UInt64,System.String>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) inline void Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { (( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisRuntimeObject_m576D13AEC7245A3AD8E7A5BF192F68C522E5CB85_gshared)(___keys0, ___items1, ___comparer2, method); } // System.Void System.Enum/ValuesAndNames::.ctor(System.UInt64[],System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___values0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names1, const RuntimeMethod* method); // System.TypeCode System.Convert::GetTypeCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D (RuntimeObject * ___value0, const RuntimeMethod* method); // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716 (bool ___value0, const RuntimeMethod* method); // System.String System.UInt16::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B (uint16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.UInt32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE (uint32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Enum::GetName(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String System.Enum::InternalFlagsFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.UInt64 System.Enum::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5 (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Enum/ValuesAndNames System.Enum::GetCachedValuesAndNames(System.RuntimeType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, bool ___getNames1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_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) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Object System.Enum::Parse(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::Init(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, bool ___canMethodThrow0, const RuntimeMethod* method); // System.Boolean System.Enum::TryParseEnum(System.Type,System.String,System.Boolean,System.Enum/EnumResult&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * ___parseResult3, const RuntimeMethod* method); // System.Exception System.Enum/EnumResult::GetEnumParseException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Equality(System.RuntimeType,System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::SetFailure(System.Enum/ParseFailureKind,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::SetFailure(System.Enum/ParseFailureKind,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method); // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926 (RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::SetFailure(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* String_Split_m13262358217AD2C119FD1B9733C3C0289D608512 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___separator0, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442 (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05 (Type_t * ___enumType0, uint64_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F (Type_t * ___enumType0, int32_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B (Type_t * ___enumType0, int8_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF (Type_t * ___enumType0, int16_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2 (Type_t * ___enumType0, int64_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7 (Type_t * ___enumType0, uint32_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6 (Type_t * ___enumType0, uint8_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971 (Type_t * ___enumType0, uint16_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A (Type_t * ___enumType0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15 (Type_t * ___enumType0, bool ___value1, const RuntimeMethod* method); // System.Object System.Enum::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.ValueType::DefaultEquals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_DefaultEquals_m139582CD1BAD7472B45D806F76E4E14E82E629DB (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method); // System.Int32 System.Enum::get_hashcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853 (RuntimeObject * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Object System.Enum::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.Enum::InternalFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String System.Enum::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method); // System.Void System.NullReferenceException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, const RuntimeMethod* method); // System.Int32 System.Enum::InternalCompareTo(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method); // System.String System.Enum::InternalFormattedHexString(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Enum::InternalHasFlag(System.Enum) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_InternalHasFlag_m5627C673BA35A21042A182FA0F6465DC35FC292D (RuntimeObject * __this, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * ___flags0, const RuntimeMethod* method); // System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Char System.Convert::ToChar(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Object System.Enum::InternalBoxEnum(System.RuntimeType,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.ValueType::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueType__ctor_m091BDF02E011A41101A74AABB803417EE40CA5B7 (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method); // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Threading.Thread System.Threading.Thread::get_CurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method); // System.Int32 System.Threading.Thread::get_ManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.String System.Environment::GetNewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254 (const RuntimeMethod* method); // System.String System.Environment::GetOSVersionString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C (const RuntimeMethod* method); // System.Version System.Environment::CreateVersionFromString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318 (String_t* ___info0, const RuntimeMethod* method); // System.PlatformID System.Environment::get_Platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C (const RuntimeMethod* method); // System.Void System.OperatingSystem::.ctor(System.PlatformID,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatingSystem__ctor_m17CCE490F4F87F8193C6D4AE9265AE907D8634CE (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * __this, int32_t ___platform0, Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version1, const RuntimeMethod* method); // System.Void System.Version::.ctor(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80 (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * __this, int32_t ___major0, int32_t ___minor1, int32_t ___build2, int32_t ___revision3, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void StackTrace__ctor_mC06D6ED2D5E080D5B9D31E7B595D8A7F0675F504 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, int32_t ___skipFrames0, bool ___fNeedFileInfo1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method); // System.Boolean System.Environment::get_IsRunningOnWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D (const RuntimeMethod* method); // System.Collections.Hashtable System.Environment::GetEnvironmentVariablesNoCase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E (const RuntimeMethod* method); // Mono.SafeStringMarshal Mono.RuntimeMarshal::MarshalString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F RuntimeMarshal_MarshalString_m8A782D398D13D0865FFE9B3396966ED903180A1F (String_t* ___str0, const RuntimeMethod* method); // System.IntPtr Mono.SafeStringMarshal::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_get_Value_m70D3D1F546F1D924BDAA1A1322FE2EB7FE18F1D5 (SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F * __this, const RuntimeMethod* method); // System.String System.Environment::internalGetEnvironmentVariable_native(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74 (intptr_t ___variable0, const RuntimeMethod* method); // System.Void Mono.SafeStringMarshal::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_Dispose_m031213ECC460DFEA083ECAF0AE51AA70FF548898 (SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F * __this, const RuntimeMethod* method); // System.String System.Environment::internalGetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972 (String_t* ___variable0, const RuntimeMethod* method); // System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8 (const RuntimeMethod* method); // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9 (const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mFC259F7B115F0D1AEDE934D8CF7F1288A10A1DFB (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject* ___hcp0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.String[] System.Environment::GetEnvironmentVariableNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB (const RuntimeMethod* method); // System.String System.Environment::GetFolderPath(System.Environment/SpecialFolder,System.Environment/SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5 (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method); // System.Void System.Security.SecurityManager::EnsureElevatedPermissions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityManager_EnsureElevatedPermissions_m4169B183D4094E3E840DC0942FBCBDB3E0F127A6 (const RuntimeMethod* method); // System.String System.Environment::GetWindowsFolderPath(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726 (int32_t ___folder0, const RuntimeMethod* method); // System.String System.Environment::UnixGetFolderPath(System.Environment/SpecialFolder,System.Environment/SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311 (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method); // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method); // System.Void System.IO.StreamReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String System.String::Trim(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimChars0, const RuntimeMethod* method); // System.Boolean System.String::StartsWithOrdinalUnchecked(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Environment::internalGetHome() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E (const RuntimeMethod* method); // System.String System.Environment::ReadXdgUserDir(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613 (String_t* ___config_dir0, String_t* ___home_dir1, String_t* ___key2, String_t* ___fallback3, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA (String_t* ___path10, String_t* ___path21, String_t* ___path32, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method); // System.Void System.ExecutionEngineException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void StackTrace__ctor_mCF16893B6C5EEC13841370A064CFF74E9F54E997 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, bool ___fNeedFileInfo0, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, Exception_t * ___e0, bool ___fNeedFileInfo1, const RuntimeMethod* method); // System.String System.Diagnostics.StackTrace::ToString(System.Diagnostics.StackTrace/TraceFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StackTrace_ToString_m1C8457C5B1405CB08B90BEC24F67D636EF5026A5 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, int32_t ___traceFormat0, const RuntimeMethod* method); // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, const RuntimeMethod* method); // System.Void System.Exception::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81 (Exception_t * __this, const RuntimeMethod* method); // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValueNoThrow(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int32 System.Exception::get_HResult() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::get_State() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * __this, const RuntimeMethod* method); // System.String System.Exception::GetClassName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389 (Exception_t * __this, const RuntimeMethod* method); // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method); // System.String System.Exception::GetStackTrace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0 (Exception_t * __this, bool ___needFileInfo0, const RuntimeMethod* method); // System.String System.Exception::StripFileInfo(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1 (Exception_t * __this, String_t* ___stackTrace0, bool ___isRemoteStackTrace1, const RuntimeMethod* method); // System.String System.Environment::GetStackTrace(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B (Exception_t * ___e0, bool ___needFileInfo1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::op_Inequality(System.Reflection.MethodBase,System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method); // System.String System.Reflection.AssemblyName::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method); // System.String System.Exception::ToString(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72 (Exception_t * __this, bool ___needFileLineInfo0, bool ___needMessage1, const RuntimeMethod* method); // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Runtime.Serialization.SafeSerializationManager::get_IsActive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeSerializationManager_get_IsActive_m66AE1987E10E73E7CB019E3CE14D7FFD7856AD4B (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::CompleteSerialization(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager_CompleteSerialization_mC577DAFEBD7AA3E14807DCA75864D835475231CB (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, RuntimeObject * ___serializedObject0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::CompleteDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager_CompleteDeserialization_mC041209DDA3C3D765E7045DCA34682108858E3B1 (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, RuntimeObject * ___deserializedObject0, const RuntimeMethod* method); // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_BinaryStackTraceArray() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method); // System.String Locale::GetText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.MemberAccessException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.GC::RecordPressure(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA (int64_t ___bytesAllocated0, const RuntimeMethod* method); // System.Void System.GC::_SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8 (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Void System.GC::_ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6 (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Object System.GC::get_ephemeron_tombstone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC (const RuntimeMethod* method); // System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___d0, const RuntimeMethod* method); // System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method); // System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___c0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method); // System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904 (int32_t ___calendarId0, const RuntimeMethod* method); // System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB (int32_t ___calID0, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, const RuntimeMethod* method); // System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method); // System.String[] System.Globalization.CultureData::ReescapeWin32Strings(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___array0, const RuntimeMethod* method); // System.String System.Globalization.CultureData::ReescapeWin32String(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CultureData_ReescapeWin32String_mB6D37FC2C76F8AD4A1ECD365C36F129309FF7ED0 (String_t* ___str0, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::EnglishEraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_EnglishEraNames_m1D64240112FDE6C93450D1D136DD0B33FAFC78E1 (const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::EraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_EraNames_mF5A93DD93CB95257E3245D333B117FD089EC88D9 (const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::AbbrevEraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_AbbrevEraNames_m8F768E0E6C938DBB7657E0EE388A6EA4CCC4AD66 (const RuntimeMethod* method); // System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B (int32_t ___calendarId0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350 (String_t* ___name0, const RuntimeMethod* method); // System.Globalization.CalendarData System.Globalization.CultureData::GetCalendar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CultureData_GetCalendar_mB4F2D5CDF5ACA790475C2BDC168290047AEB6DF5 (CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * __this, int32_t ___calendarId0, const RuntimeMethod* method); // System.String System.String::ToLowerInvariant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E (String_t* __this, const RuntimeMethod* method); // System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method); // System.Void System.Globalization.CharUnicodeInfo/Debug::Assert(System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D (bool ___condition0, String_t* ___message1, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method); // System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[],System.StringSplitOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* String_Split_m3E47054D847F0ED0FA2F54757D2BF5F8E15B938A (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___separator0, int32_t ___options1, const RuntimeMethod* method); // System.String System.Globalization.CodePageDataItem::CreateString(System.String,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1 (String_t* ___pStrings0, uint32_t ___index1, const RuntimeMethod* method); // System.String System.Globalization.CultureInfo::get_SortName() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_GetCultureInfo_mA907D8B043126761BA2C2ABCD1A3AB503371530C (int32_t ___culture0, const RuntimeMethod* method); // System.Void System.Globalization.CompareInfo::OnDeserialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method); // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m208E4853037D81DD5C91DCA060C339DADC3A6064 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, int32_t ___comparisonType5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method); // System.Int32 System.String::nativeCompareOrdinalEx(System.String,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_nativeCompareOrdinalEx_m64305A55855E6959DFCE962955C9874927D22840 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___count4, const RuntimeMethod* method); // System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F (const RuntimeMethod* method); // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_m596901F0E55A9B66EF20B0F8057D6B3FE08311F3 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method); // System.Boolean System.String::EndsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_m64ABA9957E9682D391102722BE959AC52602E7A2 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mDACE3FE07E6B127A9E01E6F0DB10C288AB49CEEC (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.String::LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m074A70E0C63246B664CC26F4D0B5203424B2BCF7 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method); // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method); // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::get_IsReady() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) inline void Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method); } // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, String_t* ___key0, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, String_t*, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.Void Mono.Globalization.Unicode.SimpleCollator::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__ctor_m425CCCFC8354699C91043D289C2DD7A20F437298 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, String_t* ___key0, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, String_t*, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * SimpleCollator_GetSortKey_m016BF061CEA62BF2E99B122B913C43FB1643F1A0 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, int32_t ___options1, const RuntimeMethod* method); // System.Void System.Globalization.SortKey::.ctor(System.Int32,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey__ctor_m9DDF38B93F6C34DD3F7FF538B7C4E1BC9629CCF3 (SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * __this, int32_t ___lcid0, String_t* ___source1, int32_t ___opt2, const RuntimeMethod* method); // System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method); // System.Int32 System.String::IndexOfUnchecked(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfUnchecked_m372BBB8A4722BFDE7CF4856F0EE0B4A197C5AFB0 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_Compare_mEDE295E6D8B3ACB2378D50267659C9203ACBD795 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s10, int32_t ___idx11, int32_t ___len12, String_t* ___s23, int32_t ___idx24, int32_t ___len25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_m86547689DF681227BFE04C802D2BFB8560F9EE84 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_mD91169E7D477C503B2DED708B19CE36FF63C6856 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr System.Diagnostics.Tracing.EventSource_EventData::get_DataPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_m_Ptr_0(); intptr_t L_1 = IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF(L_0, /*hidden argument*/NULL); return (intptr_t)L_1; } } IL2CPP_EXTERN_C intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); return EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA(_thisAdjusted, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::set_DataPointer(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, intptr_t ___value0, const RuntimeMethod* method) { { intptr_t L_0 = ___value0; int64_t L_1 = IntPtr_op_Explicit_m254924E8680FCCF870F18064DC0B114445B09172((intptr_t)L_0, /*hidden argument*/NULL); __this->set_m_Ptr_0(L_1); return; } } IL2CPP_EXTERN_C void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4_AdjustorThunk (RuntimeObject * __this, intptr_t ___value0, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::set_Size(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_m_Size_1(L_0); return; } } IL2CPP_EXTERN_C void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::SetMetadata(System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t* L_0 = ___pointer0; IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); uintptr_t L_1 = UIntPtr_op_Explicit_m484C2BD47D35FBD254A95FD56CCABD27CC79C95F((void*)(void*)L_0, /*hidden argument*/NULL); uint64_t L_2 = UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075(L_1, /*hidden argument*/NULL); __this->set_m_Ptr_0(L_2); int32_t L_3 = ___size1; __this->set_m_Size_1(L_3); int32_t L_4 = ___reserved2; __this->set_m_Reserved_2(L_4); return; } } IL2CPP_EXTERN_C void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_AdjustorThunk (RuntimeObject * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88(_thisAdjusted, ___pointer0, ___size1, ___reserved2, 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 // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke_back(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke_cleanup(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com_back(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com_cleanup(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled) { } #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.Diagnostics.Tracing.EventSource_OverideEventProvider::.ctor(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B (OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___eventSource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_il2cpp_TypeInfo_var); EventProvider__ctor_m3B50CC1BF097459B596C77B56561A089D9397AD9(__this, /*hidden argument*/NULL); EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___eventSource0; __this->set_m_eventSource_13(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventSource_OverideEventProvider::OnControllerCommand(System.Diagnostics.Tracing.ControllerCommand,System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverideEventProvider_OnControllerCommand_m18D4213930B4B551E30CE21175AB45200A1FED97 (OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * __this, int32_t ___command0, RuntimeObject* ___arguments1, int32_t ___perEventSourceSessionId2, int32_t ___etwSessionId3, const RuntimeMethod* method) { EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * V_0 = NULL; { V_0 = (EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 *)NULL; EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = __this->get_m_eventSource_13(); EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * L_1 = V_0; int32_t L_2 = ___perEventSourceSessionId2; int32_t L_3 = ___etwSessionId3; int32_t L_4 = ___command0; bool L_5 = EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline(__this, /*hidden argument*/NULL); int32_t L_6 = EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline(__this, /*hidden argument*/NULL); int64_t L_7 = EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline(__this, /*hidden argument*/NULL); RuntimeObject* L_8 = ___arguments1; NullCheck(L_0); EventSource_SendCommand_mC04C4889CCB21B58C052A48E030C4655B5CA74DE(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, /*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 // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled) { marshaled.___length_0 = unmarshaled.get_length_0(); marshaled.___w_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.get_w_1()); marshaled.___pos_2 = unmarshaled.get_pos_2(); } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke_back(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t unmarshaled_length_temp_0 = 0; unmarshaled_length_temp_0 = marshaled.___length_0; unmarshaled.set_length_0(unmarshaled_length_temp_0); unmarshaled.set_w_1((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, marshaled.___w_1)); int32_t unmarshaled_pos_temp_2 = 0; unmarshaled_pos_temp_2 = marshaled.___pos_2; unmarshaled.set_pos_2(unmarshaled_pos_temp_2); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke_cleanup(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___w_1); marshaled.___w_1 = NULL; } // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled) { marshaled.___length_0 = unmarshaled.get_length_0(); marshaled.___w_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.get_w_1()); marshaled.___pos_2 = unmarshaled.get_pos_2(); } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com_back(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t unmarshaled_length_temp_0 = 0; unmarshaled_length_temp_0 = marshaled.___length_0; unmarshaled.set_length_0(unmarshaled_length_temp_0); unmarshaled.set_w_1((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, marshaled.___w_1)); int32_t unmarshaled_pos_temp_2 = 0; unmarshaled_pos_temp_2 = marshaled.___pos_2; unmarshaled.set_pos_2(unmarshaled_pos_temp_2); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com_cleanup(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___w_1); marshaled.___w_1 = NULL; } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); if (L_0) { goto IL_0015; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)85)); __this->set_w_1(L_1); } IL_0015: { __this->set_length_0((((int64_t)((int64_t)0)))); __this->set_pos_2(0); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)80)), (uint32_t)((int32_t)1732584193)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_w_1(); NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)81)), (uint32_t)((int32_t)-271733879)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = __this->get_w_1(); NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)82)), (uint32_t)((int32_t)-1732584194)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = __this->get_w_1(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)83)), (uint32_t)((int32_t)271733878)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = __this->get_w_1(); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)84)), (uint32_t)((int32_t)-1009589776)); return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941(_thisAdjusted, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, uint8_t ___input0, const RuntimeMethod* method) { int32_t V_0 = 0; { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); int32_t L_1 = __this->get_pos_2(); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); int32_t L_3 = __this->get_pos_2(); NullCheck(L_2); int32_t L_4 = ((int32_t)((int32_t)L_3/(int32_t)4)); uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); uint8_t L_6 = ___input0; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_1/(int32_t)4))), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)8))|(int32_t)L_6))); int32_t L_7 = __this->get_pos_2(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); int32_t L_8 = V_0; __this->set_pos_2(L_8); int32_t L_9 = V_0; if ((!(((uint32_t)((int32_t)64)) == ((uint32_t)L_9)))) { goto IL_003d; } } { Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, /*hidden argument*/NULL); } IL_003d: { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1_AdjustorThunk (RuntimeObject * __this, uint8_t ___input0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1(_thisAdjusted, ___input0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Append(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; int32_t V_1 = 0; uint8_t V_2 = 0x0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0; V_0 = L_0; V_1 = 0; goto IL_0015; } IL_0006: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_2 = L_4; uint8_t L_5 = V_2; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, L_5, /*hidden argument*/NULL); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0015: { int32_t L_7 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0; NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0006; } } { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C_AdjustorThunk (RuntimeObject * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C(_thisAdjusted, ___input0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Finish(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method) { int64_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; uint32_t V_3 = 0; int32_t G_B6_0 = 0; { int64_t L_0 = __this->get_length_0(); int32_t L_1 = __this->get_pos_2(); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_0, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)8, (int32_t)L_1))))))); Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)((int32_t)128), /*hidden argument*/NULL); goto IL_0025; } IL_001e: { Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)0, /*hidden argument*/NULL); } IL_0025: { int32_t L_2 = __this->get_pos_2(); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)56))))) { goto IL_001e; } } { int64_t L_3 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_3>>(int32_t)((int32_t)56)))))), /*hidden argument*/NULL); int64_t L_4 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_4>>(int32_t)((int32_t)48)))))), /*hidden argument*/NULL); int64_t L_5 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_5>>(int32_t)((int32_t)40)))))), /*hidden argument*/NULL); int64_t L_6 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)32)))))), /*hidden argument*/NULL); int64_t L_7 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)24)))))), /*hidden argument*/NULL); int64_t L_8 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_8>>(int32_t)((int32_t)16)))))), /*hidden argument*/NULL); int64_t L_9 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_9>>(int32_t)8))))), /*hidden argument*/NULL); int64_t L_10 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)L_10))), /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___output0; NullCheck(L_11); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))) < ((int32_t)((int32_t)20)))) { goto IL_008e; } } { G_B6_0 = ((int32_t)20); goto IL_0091; } IL_008e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___output0; NullCheck(L_12); G_B6_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); } IL_0091: { V_1 = G_B6_0; V_2 = 0; goto IL_00c0; } IL_0096: { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_13 = __this->get_w_1(); int32_t L_14 = V_2; NullCheck(L_13); int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)80), (int32_t)((int32_t)((int32_t)L_14/(int32_t)4)))); uint32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_3 = L_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___output0; int32_t L_18 = V_2; uint32_t L_19 = V_3; NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_19>>((int32_t)24))))))); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_20 = __this->get_w_1(); int32_t L_21 = V_2; uint32_t L_22 = V_3; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)80), (int32_t)((int32_t)((int32_t)L_21/(int32_t)4))))), (uint32_t)((int32_t)((int32_t)L_22<<(int32_t)8))); int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_00c0: { int32_t L_24 = V_2; int32_t L_25 = V_1; if ((!(((uint32_t)L_24) == ((uint32_t)L_25)))) { goto IL_0096; } } { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927_AdjustorThunk (RuntimeObject * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927(_thisAdjusted, ___output0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Drain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; uint32_t V_1 = 0; uint32_t V_2 = 0; uint32_t V_3 = 0; uint32_t V_4 = 0; uint32_t V_5 = 0; int32_t V_6 = 0; uint32_t V_7 = 0; int32_t V_8 = 0; uint32_t V_9 = 0; int32_t V_10 = 0; uint32_t V_11 = 0; int32_t V_12 = 0; uint32_t V_13 = 0; { V_0 = ((int32_t)16); goto IL_0043; } IL_0005: { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); int32_t L_1 = V_0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)3)); uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = __this->get_w_1(); int32_t L_7 = V_0; NullCheck(L_6); int32_t L_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)8)); uint32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = __this->get_w_1(); int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)14))); uint32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = __this->get_w_1(); int32_t L_15 = V_0; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)16))); uint32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); uint32_t L_18 = Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED(((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5^(int32_t)L_9))^(int32_t)L_13))^(int32_t)L_17)), /*hidden argument*/NULL); NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (uint32_t)L_18); int32_t L_19 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0043: { int32_t L_20 = V_0; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)80))))) { goto IL_0005; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_21 = __this->get_w_1(); NullCheck(L_21); int32_t L_22 = ((int32_t)80); uint32_t L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); V_1 = L_23; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = __this->get_w_1(); NullCheck(L_24); int32_t L_25 = ((int32_t)81); uint32_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); V_2 = L_26; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_27 = __this->get_w_1(); NullCheck(L_27); int32_t L_28 = ((int32_t)82); uint32_t L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); V_3 = L_29; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_30 = __this->get_w_1(); NullCheck(L_30); int32_t L_31 = ((int32_t)83); uint32_t L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); V_4 = L_32; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_33 = __this->get_w_1(); NullCheck(L_33); int32_t L_34 = ((int32_t)84); uint32_t L_35 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); V_5 = L_35; V_6 = 0; goto IL_00bf; } IL_0081: { uint32_t L_36 = V_2; uint32_t L_37 = V_3; uint32_t L_38 = V_2; uint32_t L_39 = V_4; V_7 = ((int32_t)((int32_t)((int32_t)((int32_t)L_36&(int32_t)L_37))|(int32_t)((int32_t)((int32_t)((~L_38))&(int32_t)L_39)))); uint32_t L_40 = V_1; uint32_t L_41 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_40, /*hidden argument*/NULL); uint32_t L_42 = V_7; uint32_t L_43 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_44 = __this->get_w_1(); int32_t L_45 = V_6; NullCheck(L_44); int32_t L_46 = L_45; uint32_t L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); uint32_t L_48 = V_4; V_5 = L_48; uint32_t L_49 = V_3; V_4 = L_49; uint32_t L_50 = V_2; uint32_t L_51 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_50, /*hidden argument*/NULL); V_3 = L_51; uint32_t L_52 = V_1; V_2 = L_52; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)L_43)), (int32_t)((int32_t)1518500249))), (int32_t)L_47)); int32_t L_53 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)); } IL_00bf: { int32_t L_54 = V_6; if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)20))))) { goto IL_0081; } } { V_8 = ((int32_t)20); goto IL_0106; } IL_00cb: { uint32_t L_55 = V_2; uint32_t L_56 = V_3; uint32_t L_57 = V_4; V_9 = ((int32_t)((int32_t)((int32_t)((int32_t)L_55^(int32_t)L_56))^(int32_t)L_57)); uint32_t L_58 = V_1; uint32_t L_59 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_58, /*hidden argument*/NULL); uint32_t L_60 = V_9; uint32_t L_61 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_62 = __this->get_w_1(); int32_t L_63 = V_8; NullCheck(L_62); int32_t L_64 = L_63; uint32_t L_65 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_64)); uint32_t L_66 = V_4; V_5 = L_66; uint32_t L_67 = V_3; V_4 = L_67; uint32_t L_68 = V_2; uint32_t L_69 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_68, /*hidden argument*/NULL); V_3 = L_69; uint32_t L_70 = V_1; V_2 = L_70; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)L_60)), (int32_t)L_61)), (int32_t)((int32_t)1859775393))), (int32_t)L_65)); int32_t L_71 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1)); } IL_0106: { int32_t L_72 = V_8; if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)40))))) { goto IL_00cb; } } { V_10 = ((int32_t)40); goto IL_0154; } IL_0112: { uint32_t L_73 = V_2; uint32_t L_74 = V_3; uint32_t L_75 = V_2; uint32_t L_76 = V_4; uint32_t L_77 = V_3; uint32_t L_78 = V_4; V_11 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_73&(int32_t)L_74))|(int32_t)((int32_t)((int32_t)L_75&(int32_t)L_76))))|(int32_t)((int32_t)((int32_t)L_77&(int32_t)L_78)))); uint32_t L_79 = V_1; uint32_t L_80 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_79, /*hidden argument*/NULL); uint32_t L_81 = V_11; uint32_t L_82 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_83 = __this->get_w_1(); int32_t L_84 = V_10; NullCheck(L_83); int32_t L_85 = L_84; uint32_t L_86 = (L_83)->GetAt(static_cast<il2cpp_array_size_t>(L_85)); uint32_t L_87 = V_4; V_5 = L_87; uint32_t L_88 = V_3; V_4 = L_88; uint32_t L_89 = V_2; uint32_t L_90 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_89, /*hidden argument*/NULL); V_3 = L_90; uint32_t L_91 = V_1; V_2 = L_91; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)L_81)), (int32_t)L_82)), (int32_t)((int32_t)-1894007588))), (int32_t)L_86)); int32_t L_92 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1)); } IL_0154: { int32_t L_93 = V_10; if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)60))))) { goto IL_0112; } } { V_12 = ((int32_t)60); goto IL_019b; } IL_0160: { uint32_t L_94 = V_2; uint32_t L_95 = V_3; uint32_t L_96 = V_4; V_13 = ((int32_t)((int32_t)((int32_t)((int32_t)L_94^(int32_t)L_95))^(int32_t)L_96)); uint32_t L_97 = V_1; uint32_t L_98 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_97, /*hidden argument*/NULL); uint32_t L_99 = V_13; uint32_t L_100 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_101 = __this->get_w_1(); int32_t L_102 = V_12; NullCheck(L_101); int32_t L_103 = L_102; uint32_t L_104 = (L_101)->GetAt(static_cast<il2cpp_array_size_t>(L_103)); uint32_t L_105 = V_4; V_5 = L_105; uint32_t L_106 = V_3; V_4 = L_106; uint32_t L_107 = V_2; uint32_t L_108 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_107, /*hidden argument*/NULL); V_3 = L_108; uint32_t L_109 = V_1; V_2 = L_109; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)L_99)), (int32_t)L_100)), (int32_t)((int32_t)-899497514))), (int32_t)L_104)); int32_t L_110 = V_12; V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)1)); } IL_019b: { int32_t L_111 = V_12; if ((!(((uint32_t)L_111) == ((uint32_t)((int32_t)80))))) { goto IL_0160; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_112 = __this->get_w_1(); NullCheck(L_112); uint32_t* L_113 = ((L_112)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)80)))); int32_t L_114 = *((uint32_t*)L_113); uint32_t L_115 = V_1; *((int32_t*)L_113) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_114, (int32_t)L_115)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_116 = __this->get_w_1(); NullCheck(L_116); uint32_t* L_117 = ((L_116)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)81)))); int32_t L_118 = *((uint32_t*)L_117); uint32_t L_119 = V_2; *((int32_t*)L_117) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_118, (int32_t)L_119)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_120 = __this->get_w_1(); NullCheck(L_120); uint32_t* L_121 = ((L_120)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)82)))); int32_t L_122 = *((uint32_t*)L_121); uint32_t L_123 = V_3; *((int32_t*)L_121) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)L_123)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_124 = __this->get_w_1(); NullCheck(L_124); uint32_t* L_125 = ((L_124)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)83)))); int32_t L_126 = *((uint32_t*)L_125); uint32_t L_127 = V_4; *((int32_t*)L_125) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)L_127)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_128 = __this->get_w_1(); NullCheck(L_128); uint32_t* L_129 = ((L_128)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)84)))); int32_t L_130 = *((uint32_t*)L_129); uint32_t L_131 = V_5; *((int32_t*)L_129) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_130, (int32_t)L_131)); int64_t L_132 = __this->get_length_0(); __this->set_length_0(((int64_t)il2cpp_codegen_add((int64_t)L_132, (int64_t)(((int64_t)((int64_t)((int32_t)512))))))); __this->set_pos_2(0); return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8(_thisAdjusted, method); } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol1(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)1))|(int32_t)((int32_t)((uint32_t)L_1>>((int32_t)31))))); } } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol5(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)5))|(int32_t)((int32_t)((uint32_t)L_1>>((int32_t)27))))); } } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol30(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)((int32_t)30)))|(int32_t)((int32_t)((uint32_t)L_1>>2)))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_Name_mC420250C7AFB5B14092C7B6EF5550F55ED4525A0 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_0(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute_set_Name_m5241AA462B6F5A7FD782898E39EA8A12E7EC0599 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_U3CNameU3Ek__BackingField_0(L_0); return; } } // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_Guid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_Guid_m9DF9B8B791ACCF9B9DA2AC9BBF575944080DF9E1 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CGuidU3Ek__BackingField_1(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::set_Guid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute_set_Guid_mFD84CCF1C8F47DC2AE5B04BDE106D78472CF287F (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_U3CGuidU3Ek__BackingField_1(L_0); return; } } // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_LocalizationResources() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_LocalizationResources_m4733F2B33A398B188C0541C3394954FF3DAC6B1F (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CLocalizationResourcesU3Ek__BackingField_2(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute__ctor_m85695AC135298D8469D7C03B2A9AA1F6349DA42B (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __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.Void System.Diagnostics.Tracing.EventSourceCreatedEventArgs::set_EventSource(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceCreatedEventArgs_set_EventSource_m8C2A640E3442264BA1BF7F6EE963F7FDBC744794 (EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___value0, const RuntimeMethod* method) { { EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___value0; __this->set_U3CEventSourceU3Ek__BackingField_1(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventSourceCreatedEventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97 (EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__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.Diagnostics.Tracing.EventSourceException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4 (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, Exception_t * ___innerException0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56, /*hidden argument*/NULL); Exception_t * L_1 = ___innerException0; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Level(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((int64_t)(L_0) > 255LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_RuntimeMethod_var); __this->set_level_3((((uint8_t)((uint8_t)L_0)))); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)4)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Opcode(System.Diagnostics.Tracing.EventOpcode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((int64_t)(L_0) > 255LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_RuntimeMethod_var); __this->set_opcode_4((((uint8_t)((uint8_t)L_0)))); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)8)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Keywords(System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; __this->set_keywords_0(L_0); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)1)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187(_thisAdjusted, ___value0, 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.Diagnostics.Tracing.EventWrittenEventArgs::set_EventName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_EventName_m6DEE32D41AE486E21288D9B7A405B06FACD3B6CB (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_m_eventName_5(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_EventId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_EventId_mE7FB36E134327D9723860072902E1580EC653FCE (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CEventIdU3Ek__BackingField_1(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_RelatedActivityId(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_RelatedActivityId_mE9E13512C9D1F91EE7C5B3B2E2897CADFF72CDDF (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, Guid_t ___value0, const RuntimeMethod* method) { { Guid_t L_0 = ___value0; __this->set_U3CRelatedActivityIdU3Ek__BackingField_2(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_Payload(System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_Payload_mA63B6D1CB51F126394F4BF193856BD9445C85647 (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * ___value0, const RuntimeMethod* method) { { ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * L_0 = ___value0; __this->set_U3CPayloadU3Ek__BackingField_3(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_PayloadNames(System.Collections.ObjectModel.ReadOnlyCollection`1<System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_PayloadNames_mA045E5448CD84218AD1C21E408EFC3578F9B1A0F (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * ___value0, const RuntimeMethod* method) { { ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * L_0 = ___value0; __this->set_m_payloadNames_7(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_Message(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_Message_m694B0CF9EF8C94C0F24F8DF61FC36B766AF728CE (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_m_message_4(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::.ctor(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635 (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___eventSource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___eventSource0; __this->set_m_eventSource_6(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___type1, int32_t ___tags2, bool ___variableCount3, const RuntimeMethod* method) { int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; String_t* G_B2_2 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B2_3 = NULL; int32_t G_B1_0 = 0; int32_t G_B1_1 = 0; String_t* G_B1_2 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B1_3 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B3_4 = NULL; { String_t* L_0 = ___name0; int32_t L_1 = ___type1; int32_t L_2 = ___tags2; bool L_3 = ___variableCount3; G_B1_0 = L_2; G_B1_1 = L_1; G_B1_2 = L_0; G_B1_3 = __this; if (L_3) { G_B2_0 = L_2; G_B2_1 = L_1; G_B2_2 = L_0; G_B2_3 = __this; goto IL_000b; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; goto IL_000d; } IL_000b: { G_B3_0 = ((int32_t)64); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; } IL_000d: { NullCheck(G_B3_4); FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363(G_B3_4, G_B3_3, G_B3_2, G_B3_1, (uint8_t)G_B3_0, (uint16_t)0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Byte,System.UInt16,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___dataType1, int32_t ___tags2, uint8_t ___countFlags3, uint16_t ___fixedCount4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; if (L_0) { goto IL_0019; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, _stringLiteral68962AA7A0A67FFB670D647651DFF6FCA01916DC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_0019: { String_t* L_2 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_2, /*hidden argument*/NULL); int32_t L_3 = ___dataType1; V_0 = ((int32_t)((int32_t)L_3&(int32_t)((int32_t)31))); String_t* L_4 = ___name0; __this->set_name_0(L_4); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_6 = __this->get_name_0(); NullCheck(L_5); int32_t L_7 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(18 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_5, L_6); __this->set_nameSize_1(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; uint8_t L_9 = ___countFlags3; __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_8|(int32_t)L_9)))))); int32_t L_10 = ___dataType1; __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_10>>(int32_t)8))&(int32_t)((int32_t)127))))))); int32_t L_11 = ___tags2; __this->set_tags_2(L_11); uint16_t L_12 = ___fixedCount4; __this->set_fixedCount_4(L_12); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___custom5; __this->set_custom_3(L_13); uint8_t L_14 = ___countFlags3; if (!L_14) { goto IL_00b6; } } { int32_t L_15 = V_0; if (L_15) { goto IL_0089; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral649513493BFCCAC803D0510272A0959554FDCC1D, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_17 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_0089: { int32_t L_18 = V_0; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)14))))) { goto IL_009e; } } { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF39D6C50975466C0E53549F08B2F563B22FE1072, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_20 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_20, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_009e: { int32_t L_21 = V_0; if ((((int32_t)L_21) == ((int32_t)1))) { goto IL_00a6; } } { int32_t L_22 = V_0; if ((!(((uint32_t)L_22) == ((uint32_t)2)))) { goto IL_00b6; } } IL_00a6: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral87451A61D9F03361D19AA4D07B3469C8F4CC5781, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_24 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_00b6: { int32_t L_25 = __this->get_tags_2(); if (!((int32_t)((int32_t)L_25&(int32_t)((int32_t)268435455)))) { goto IL_00d7; } } { uint8_t L_26 = __this->get_outType_6(); __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_26|(int32_t)((int32_t)128))))))); } IL_00d7: { uint8_t L_27 = __this->get_outType_6(); if (!L_27) { goto IL_00f2; } } { uint8_t L_28 = __this->get_inType_5(); __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_28|(int32_t)((int32_t)128))))))); } IL_00f2: { return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::IncrementStructFieldCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = __this->get_inType_5(); __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_0|(int32_t)((int32_t)128))))))); uint8_t L_1 = __this->get_outType_6(); __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)))))); uint8_t L_2 = __this->get_outType_6(); if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)127)))) { goto IL_003d; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAE39DA7DB252B2371F75685351203E549E5C055, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_4 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_RuntimeMethod_var); } IL_003d: { return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::Encode(System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, int32_t* ___pos0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___metadata1; if (!L_0) { goto IL_0023; } } { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = __this->get_name_0(); String_t* L_3 = __this->get_name_0(); NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___metadata1; int32_t* L_6 = ___pos0; int32_t L_7 = *((int32_t*)L_6); NullCheck(L_1); VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(26 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_1, L_2, 0, L_4, L_5, L_7); } IL_0023: { int32_t* L_8 = ___pos0; int32_t* L_9 = ___pos0; int32_t L_10 = *((int32_t*)L_9); int32_t L_11 = __this->get_nameSize_1(); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___metadata1; if (!L_12) { goto IL_003b; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___metadata1; int32_t* L_14 = ___pos0; int32_t L_15 = *((int32_t*)L_14); uint8_t L_16 = __this->get_inType_5(); NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (uint8_t)L_16); } IL_003b: { int32_t* L_17 = ___pos0; int32_t* L_18 = ___pos0; 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)1)); uint8_t L_20 = __this->get_inType_5(); if (!((int32_t)((int32_t)L_20&(int32_t)((int32_t)128)))) { goto IL_007d; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___metadata1; if (!L_21) { goto IL_005c; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___metadata1; int32_t* L_23 = ___pos0; int32_t L_24 = *((int32_t*)L_23); uint8_t L_25 = __this->get_outType_6(); NullCheck(L_22); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (uint8_t)L_25); } IL_005c: { int32_t* L_26 = ___pos0; int32_t* L_27 = ___pos0; int32_t L_28 = *((int32_t*)L_27); *((int32_t*)L_26) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); uint8_t L_29 = __this->get_outType_6(); if (!((int32_t)((int32_t)L_29&(int32_t)((int32_t)128)))) { goto IL_007d; } } { int32_t L_30 = __this->get_tags_2(); int32_t* L_31 = ___pos0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___metadata1; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_30, (int32_t*)L_31, L_32, /*hidden argument*/NULL); } IL_007d: { uint8_t L_33 = __this->get_inType_5(); if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)32)))) { goto IL_00e3; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ___metadata1; if (!L_34) { goto IL_00a5; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ___metadata1; int32_t* L_36 = ___pos0; int32_t L_37 = *((int32_t*)L_36); uint16_t L_38 = __this->get_fixedCount_4(); NullCheck(L_35); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (uint8_t)(((int32_t)((uint8_t)L_38)))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = ___metadata1; int32_t* L_40 = ___pos0; int32_t L_41 = *((int32_t*)L_40); uint16_t L_42 = __this->get_fixedCount_4(); NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_42>>(int32_t)8)))))); } IL_00a5: { int32_t* L_43 = ___pos0; int32_t* L_44 = ___pos0; int32_t L_45 = *((int32_t*)L_44); *((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)2)); uint8_t L_46 = __this->get_inType_5(); if ((!(((uint32_t)((int32_t)96)) == ((uint32_t)((int32_t)((int32_t)L_46&(int32_t)((int32_t)96))))))) { goto IL_00e3; } } { uint16_t L_47 = __this->get_fixedCount_4(); if (!L_47) { goto IL_00e3; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = ___metadata1; if (!L_48) { goto IL_00d8; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = __this->get_custom_3(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ___metadata1; int32_t* L_51 = ___pos0; int32_t L_52 = *((int32_t*)L_51); uint16_t L_53 = __this->get_fixedCount_4(); Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_49, 0, (RuntimeArray *)(RuntimeArray *)L_50, L_52, L_53, /*hidden argument*/NULL); } IL_00d8: { int32_t* L_54 = ___pos0; int32_t* L_55 = ___pos0; int32_t L_56 = *((int32_t*)L_55); uint16_t L_57 = __this->get_fixedCount_4(); *((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_57)); } IL_00e3: { 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.Diagnostics.Tracing.GuidArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2 (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)15), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Guid[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo_WriteData_mD66FFBEB0080744526AAFA804C17347C2AF337EC (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** L_1 = ___value1; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_2 = *((GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584 (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.GuidTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5 (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)15), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Guid&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo_WriteData_m42291EB8518A2D5F5567A125EF6002484BECBCBF (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Guid_t * ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Guid_t * L_1 = ___value1; Guid_t L_2 = (*(Guid_t *)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6 (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 5, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int16[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo_WriteData_m51E1AE9039F8D9C5F27AAA03C38260CC041BCE59 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28** L_1 = ___value1; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_2 = *((Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int16TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 5, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo_WriteData_mD00EA7EBC4EDF2A770A6E1D0B1C60BDE54ADE4F0 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int16_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int16_t* L_1 = ___value1; int32_t L_2 = *((int16_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD(L_0, (int16_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 7, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int32[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo_WriteData_mE38CBC5DE3E05961040331FA25EFE3B3CF8FFAF2 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_1 = ___value1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int32TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 7, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo_WriteData_m89BC83C7D3DB16EFBC022F76E1C6C87B2C547B8C (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int32_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int32_t* L_1 = ___value1; int32_t L_2 = *((int32_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867 (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)9), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int64[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo_WriteData_mB86F88E0AE559A28CD38519E59B73158809BF8ED (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_1 = ___value1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = *((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int64TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)9), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo_WriteData_m04CA2FE4276893FC6429502FD5783E09CC4E22B1 (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int64_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int64_t* L_1 = ___value1; int64_t L_2 = *((int64_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783 (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8 (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_IntPtrType_0(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.IntPtr[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo_WriteData_m1487D1B5120D1A3EB58610228926DCCD8B4A3B71 (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** L_1 = ___value1; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_2 = *((IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96 (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_IntPtrType_0(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo_WriteData_mB25292A7BBDED83A542034E56B4860118ABD0F37 (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, intptr_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; intptr_t* L_1 = ___value1; NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B(L_0, (intptr_t)((*(L_1))), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder::.ctor(System.String,System.Guid,System.String,System.Resources.ResourceManager,System.Diagnostics.Tracing.EventManifestOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___providerName0, Guid_t ___providerGuid1, String_t* ___dllName2, ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources3, int32_t ___flags4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___flags4; __this->set_flags_9(L_0); ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_1 = ___resources3; __this->set_resources_8(L_1); StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); __this->set_sb_5(L_2); StringBuilder_t * L_3 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_3, /*hidden argument*/NULL); __this->set_events_6(L_3); StringBuilder_t * L_4 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_4, /*hidden argument*/NULL); __this->set_templates_7(L_4); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_5 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_5, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_opcodeTab_0(L_5); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_6 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)il2cpp_codegen_object_new(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B(L_6, /*hidden argument*/Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var); __this->set_stringTab_4(L_6); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_7 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_7, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); __this->set_errors_10(L_7); Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_8 = (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *)il2cpp_codegen_object_new(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28_il2cpp_TypeInfo_var); Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28(L_8, /*hidden argument*/Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28_RuntimeMethod_var); __this->set_perEventByteArrayArgIndices_11(L_8); StringBuilder_t * L_9 = __this->get_sb_5(); NullCheck(L_9); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_9, _stringLiteral9EDD575E287A64ED65D0EA6DDFEC128ADD02BAC0, /*hidden argument*/NULL); StringBuilder_t * L_10 = __this->get_sb_5(); NullCheck(L_10); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_10, _stringLiteralFEB6CEE0B6900775589FE0E64A68CFBDE2B0A3EE, /*hidden argument*/NULL); StringBuilder_t * L_11 = __this->get_sb_5(); NullCheck(L_11); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_11, _stringLiteralB34B0A02B98367D52DCDC8CC3635FF5A27611AF6, /*hidden argument*/NULL); StringBuilder_t * L_12 = __this->get_sb_5(); NullCheck(L_12); StringBuilder_t * L_13 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteralBF0A2FEAAD70F387CF5BD8F8ECE69E85A8B9FC40, /*hidden argument*/NULL); String_t* L_14 = ___providerName0; NullCheck(L_13); StringBuilder_t * L_15 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, L_14, /*hidden argument*/NULL); NullCheck(L_15); StringBuilder_t * L_16 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteral8137F03571D8568066E24A475F203D3C31D3C08C, /*hidden argument*/NULL); String_t* L_17 = Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5((Guid_t *)(&___providerGuid1), /*hidden argument*/NULL); NullCheck(L_16); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, L_17, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A, /*hidden argument*/NULL); String_t* L_19 = ___dllName2; if (!L_19) { goto IL_00fd; } } { StringBuilder_t * L_20 = __this->get_sb_5(); NullCheck(L_20); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteral481D5EBFAA65CD8CBAE34C4A33103730147071B9, /*hidden argument*/NULL); String_t* L_22 = ___dllName2; NullCheck(L_21); StringBuilder_t * L_23 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, L_22, /*hidden argument*/NULL); NullCheck(L_23); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_23, _stringLiteral0E49F311A51BD41B19454E95BFFD18766EB48BFA, /*hidden argument*/NULL); String_t* L_25 = ___dllName2; NullCheck(L_24); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, L_25, /*hidden argument*/NULL); } IL_00fd: { String_t* L_26 = ___providerName0; NullCheck(L_26); String_t* L_27 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_26, _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); NullCheck(L_27); String_t* L_28 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_27, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787, /*hidden argument*/NULL); V_0 = L_28; StringBuilder_t * L_29 = __this->get_sb_5(); NullCheck(L_29); StringBuilder_t * L_30 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_29, _stringLiteralD6CBE7E38E09D40AC8221B0DDE0FB2E220247F7B, /*hidden argument*/NULL); String_t* L_31 = V_0; NullCheck(L_30); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_30, L_31, /*hidden argument*/NULL); StringBuilder_t * L_32 = __this->get_sb_5(); NullCheck(L_32); StringBuilder_t * L_33 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_32, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_33); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_33, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddOpcode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_007d; } } { int32_t L_1 = ___value1; if ((((int32_t)L_1) <= ((int32_t)((int32_t)10)))) { goto IL_0017; } } { int32_t L_2 = ___value1; if ((((int32_t)L_2) < ((int32_t)((int32_t)239)))) { goto IL_003b; } } IL_0017: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = ___name0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_4; int32_t L_7 = ___value1; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); String_t* L_10 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral1045D0486D142C11569D4F7CAE2E19F2F2135D15, L_6, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_10, (bool)0, /*hidden argument*/NULL); } IL_003b: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_opcodeTab_0(); int32_t L_12 = ___value1; NullCheck(L_11); bool L_13 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_11, L_12, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (!L_13) { goto IL_007d; } } { String_t* L_14 = ___name0; String_t* L_15 = V_0; NullCheck(L_14); bool L_16 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_14, L_15, 4, /*hidden argument*/NULL); if (L_16) { goto IL_007d; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17; String_t* L_19 = ___name0; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_19); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_18; String_t* L_21 = V_0; NullCheck(L_20); ArrayElementTypeCheck (L_20, L_21); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_21); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_20; int32_t L_23 = ___value1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_25); String_t* L_26 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC8AF2BF24633B03752832E2B88FEEAA0E0308892, L_22, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_26, (bool)0, /*hidden argument*/NULL); } IL_007d: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_27 = __this->get_opcodeTab_0(); int32_t L_28 = ___value1; String_t* L_29 = ___name0; NullCheck(L_27); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_27, L_28, L_29, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddTask(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_0084; } } { int32_t L_1 = ___value1; if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0016; } } { int32_t L_2 = ___value1; if ((((int32_t)L_2) < ((int32_t)((int32_t)65535)))) { goto IL_003a; } } IL_0016: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = ___name0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_4; int32_t L_7 = ___value1; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); String_t* L_10 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralF153A28687D6800CAAD6007F5537CB4C0AC0B90B, L_6, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_10, (bool)0, /*hidden argument*/NULL); } IL_003a: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_taskTab_1(); if (!L_11) { goto IL_0084; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_12 = __this->get_taskTab_1(); int32_t L_13 = ___value1; NullCheck(L_12); bool L_14 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_12, L_13, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (!L_14) { goto IL_0084; } } { String_t* L_15 = ___name0; String_t* L_16 = V_0; NullCheck(L_15); bool L_17 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_15, L_16, 4, /*hidden argument*/NULL); if (L_17) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18; String_t* L_20 = ___name0; NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_20); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_19; String_t* L_22 = V_0; NullCheck(L_21); ArrayElementTypeCheck (L_21, L_22); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_22); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_21; int32_t L_24 = ___value1; int32_t L_25 = L_24; RuntimeObject * L_26 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_25); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_26); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_26); String_t* L_27 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral196D67E00943D635E0EC2857FAE0B96FDF3C801D, L_23, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_27, (bool)0, /*hidden argument*/NULL); } IL_0084: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_28 = __this->get_taskTab_1(); if (L_28) { goto IL_0097; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_29 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_29, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_taskTab_1(L_29); } IL_0097: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_30 = __this->get_taskTab_1(); int32_t L_31 = ___value1; String_t* L_32 = ___name0; NullCheck(L_30); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_30, L_31, L_32, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddKeyword(System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, uint64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { uint64_t L_0 = ___value1; uint64_t L_1 = ___value1; if (!((int64_t)((int64_t)L_0&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_1, (int64_t)(((int64_t)((int64_t)1)))))))) { goto IL_0041; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_5 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_4, /*hidden argument*/NULL); String_t* L_6 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_5, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_6); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_3; String_t* L_8 = ___name0; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8); String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral491831D06619E7C160397FC825EBD1514A126B20, L_7, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_9, (bool)1, /*hidden argument*/NULL); } IL_0041: { int32_t L_10 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_10&(int32_t)1))) { goto IL_0100; } } { uint64_t L_11 = ___value1; if ((!(((uint64_t)L_11) >= ((uint64_t)((int64_t)17592186044416LL))))) { goto IL_00a1; } } { String_t* L_12 = ___name0; NullCheck(L_12); bool L_13 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_12, _stringLiteralF7F1997C6CD1AA051279675742272A956E7DB628, 4, /*hidden argument*/NULL); if (L_13) { goto IL_00a1; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = L_14; String_t* L_16 = ___name0; NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_15; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_19 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_18, /*hidden argument*/NULL); String_t* L_20 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_19, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20); String_t* L_21 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral54D418B5B42E9B96FD52173E32F2031D880B8C46, L_17, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_21, (bool)0, /*hidden argument*/NULL); } IL_00a1: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_22 = __this->get_keywordTab_2(); if (!L_22) { goto IL_0100; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_23 = __this->get_keywordTab_2(); uint64_t L_24 = ___value1; NullCheck(L_23); bool L_25 = Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8(L_23, L_24, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var); if (!L_25) { goto IL_0100; } } { String_t* L_26 = ___name0; String_t* L_27 = V_0; NullCheck(L_26); bool L_28 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_26, L_27, 4, /*hidden argument*/NULL); if (L_28) { goto IL_0100; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_29; String_t* L_31 = ___name0; NullCheck(L_30); ArrayElementTypeCheck (L_30, L_31); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_31); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = L_30; String_t* L_33 = V_0; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_33); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_33); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = L_32; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_35 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_36 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_35, /*hidden argument*/NULL); String_t* L_37 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_36, /*hidden argument*/NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_37); String_t* L_38 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralAF2B0CF212656E3065ABF0952C35E2535C594035, L_34, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_38, (bool)0, /*hidden argument*/NULL); } IL_0100: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_39 = __this->get_keywordTab_2(); if (L_39) { goto IL_0113; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_40 = (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *)il2cpp_codegen_object_new(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A(L_40, /*hidden argument*/Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A_RuntimeMethod_var); __this->set_keywordTab_2(L_40); } IL_0113: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_41 = __this->get_keywordTab_2(); uint64_t L_42 = ___value1; String_t* L_43 = ___name0; NullCheck(L_41); Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0(L_41, L_42, L_43, /*hidden argument*/Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::StartEvent(System.String,System.Diagnostics.Tracing.EventAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventName0, EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * ___eventAttribute1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___eventName0; __this->set_eventName_12(L_0); __this->set_numParams_13(0); __this->set_byteArrArgIndices_14((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)NULL); StringBuilder_t * L_1 = __this->get_events_6(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral6E73877D3AA13493BA01F49A10B5A30CE83306E5, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_t * L_3 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_2, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_4 = ___eventAttribute1; NullCheck(L_4); int32_t L_5 = EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline(L_4, /*hidden argument*/NULL); NullCheck(L_3); StringBuilder_t * L_6 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_3, L_5, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_t * L_7 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_6, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_7); StringBuilder_t * L_8 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_7, _stringLiteral00E9885F5602769A313CB71E70C3C23739621EAB, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_9 = ___eventAttribute1; NullCheck(L_9); uint8_t L_10 = EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline(L_9, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_t * L_11 = StringBuilder_Append_m4B3D765122247E2EBDA4E3870A86C26DCCCC8717(L_8, L_10, /*hidden argument*/NULL); NullCheck(L_11); StringBuilder_t * L_12 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_12); StringBuilder_t * L_13 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteral960922F9F8E21682ABFD2C7FBBD3F8CBC3CEA2B0, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_14 = ___eventAttribute1; NullCheck(L_14); int32_t L_15 = EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline(L_14, /*hidden argument*/NULL); String_t* L_16 = ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2(L_15, /*hidden argument*/NULL); NullCheck(L_13); StringBuilder_t * L_17 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, L_16, /*hidden argument*/NULL); NullCheck(L_17); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_t * L_19 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteralE19A13294CD96A9A0821CDA57FD3346B2CDFFB6C, /*hidden argument*/NULL); String_t* L_20 = ___eventName0; NullCheck(L_19); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_21); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_22 = __this->get_events_6(); String_t* L_23 = ___eventName0; EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_24 = ___eventAttribute1; NullCheck(L_24); String_t* L_25 = EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline(L_24, /*hidden argument*/NULL); ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_22, _stringLiteral5006ED0248A019713B762563076292379DAF07B4, L_23, L_25, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_26 = ___eventAttribute1; NullCheck(L_26); int64_t L_27 = EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00ef; } } { StringBuilder_t * L_28 = __this->get_events_6(); NullCheck(L_28); StringBuilder_t * L_29 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, _stringLiteral31655E4E40C7340D7574D81061F79456A829DEF2, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_30 = ___eventAttribute1; NullCheck(L_30); int64_t L_31 = EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline(L_30, /*hidden argument*/NULL); String_t* L_32 = ___eventName0; String_t* L_33 = ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0(__this, L_31, L_32, /*hidden argument*/NULL); NullCheck(L_29); StringBuilder_t * L_34 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_29, L_33, /*hidden argument*/NULL); NullCheck(L_34); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_34, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_00ef: { EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_35 = ___eventAttribute1; NullCheck(L_35); int32_t L_36 = EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline(L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_0124; } } { StringBuilder_t * L_37 = __this->get_events_6(); NullCheck(L_37); StringBuilder_t * L_38 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_37, _stringLiteral71B0805D942E320B28CD4E33784092B71CF4914F, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_39 = ___eventAttribute1; NullCheck(L_39); int32_t L_40 = EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline(L_39, /*hidden argument*/NULL); String_t* L_41 = ___eventName0; String_t* L_42 = ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59(__this, L_40, L_41, /*hidden argument*/NULL); NullCheck(L_38); StringBuilder_t * L_43 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, L_42, /*hidden argument*/NULL); NullCheck(L_43); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_43, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_0124: { EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_44 = ___eventAttribute1; NullCheck(L_44); int32_t L_45 = EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline(L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_0159; } } { StringBuilder_t * L_46 = __this->get_events_6(); NullCheck(L_46); StringBuilder_t * L_47 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_46, _stringLiteral4A13CBBE581E26FF56A2C1CFF69DF36A497F2D9B, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_48 = ___eventAttribute1; NullCheck(L_48); int32_t L_49 = EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline(L_48, /*hidden argument*/NULL); String_t* L_50 = ___eventName0; String_t* L_51 = ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104(__this, L_49, L_50, /*hidden argument*/NULL); NullCheck(L_47); StringBuilder_t * L_52 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_47, L_51, /*hidden argument*/NULL); NullCheck(L_52); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_0159: { return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddEventParameter(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, String_t* ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_numParams_13(); if (L_0) { goto IL_0033; } } { StringBuilder_t * L_1 = __this->get_templates_7(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralF157520F6E4410E060D49EA7EA8D45E29708266E, /*hidden argument*/NULL); String_t* L_3 = __this->get_eventName_12(); NullCheck(L_2); StringBuilder_t * L_4 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_4); StringBuilder_t * L_5 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, _stringLiteralEC018D9B2AE22D92E0692846B79930726940CF87, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_5, /*hidden argument*/NULL); } IL_0033: { Type_t * L_6 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_009e; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_10 = __this->get_byteArrArgIndices_14(); if (L_10) { goto IL_0059; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_11 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC(L_11, 4, /*hidden argument*/List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_RuntimeMethod_var); __this->set_byteArrArgIndices_14(L_11); } IL_0059: { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_12 = __this->get_byteArrArgIndices_14(); int32_t L_13 = __this->get_numParams_13(); NullCheck(L_12); List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771(L_12, L_13, /*hidden argument*/List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var); int32_t L_14 = __this->get_numParams_13(); __this->set_numParams_13(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); StringBuilder_t * L_15 = __this->get_templates_7(); NullCheck(L_15); StringBuilder_t * L_16 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2, /*hidden argument*/NULL); String_t* L_17 = ___name1; NullCheck(L_16); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, L_17, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_t * L_19 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteral770BCC70D6014E87ECE237202D721242936CA178, /*hidden argument*/NULL); NullCheck(L_19); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_19, /*hidden argument*/NULL); } IL_009e: { int32_t L_20 = __this->get_numParams_13(); __this->set_numParams_13(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); StringBuilder_t * L_21 = __this->get_templates_7(); NullCheck(L_21); StringBuilder_t * L_22 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2, /*hidden argument*/NULL); String_t* L_23 = ___name1; NullCheck(L_22); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_22, L_23, /*hidden argument*/NULL); NullCheck(L_24); StringBuilder_t * L_25 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, _stringLiteralD9FBDDF2CBB921BE69D65F49DDB93CB5E87CC4B4, /*hidden argument*/NULL); Type_t * L_26 = ___type0; String_t* L_27 = ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C(__this, L_26, /*hidden argument*/NULL); NullCheck(L_25); StringBuilder_t * L_28 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_25, L_27, /*hidden argument*/NULL); NullCheck(L_28); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); Type_t * L_29 = ___type0; NullCheck(L_29); bool L_30 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00f3; } } { Type_t * L_31 = ___type0; NullCheck(L_31); bool L_32 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_012b; } } IL_00f3: { Type_t * L_33 = ___type0; NullCheck(L_33); Type_t * L_34 = VirtFuncInvoker0< Type_t * >::Invoke(99 /* System.Type System.Type::GetElementType() */, L_33); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); bool L_37 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_34, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_012b; } } { StringBuilder_t * L_38 = __this->get_templates_7(); NullCheck(L_38); StringBuilder_t * L_39 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, _stringLiteral3DDA0092F70DE993E51460CD2CDDDCB041FDE82E, /*hidden argument*/NULL); String_t* L_40 = ___name1; NullCheck(L_39); StringBuilder_t * L_41 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_40, /*hidden argument*/NULL); NullCheck(L_41); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_41, _stringLiteral0B0263D53F1F71417596898D686DD5AF8B90FE9E, /*hidden argument*/NULL); } IL_012b: { Type_t * L_42 = ___type0; bool L_43 = ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_01c2; } } { Type_t * L_44 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_45 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_44, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_46 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_47 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_46, /*hidden argument*/NULL); bool L_48 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_45, L_47, /*hidden argument*/NULL); if (!L_48) { goto IL_01c2; } } { Type_t * L_49 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_50 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_49, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_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_01c2; } } { StringBuilder_t * L_54 = __this->get_templates_7(); NullCheck(L_54); StringBuilder_t * L_55 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_54, _stringLiteralF22E0B86040D26623EC71DB229693B313EEFB5B7, /*hidden argument*/NULL); Type_t * L_56 = ___type0; NullCheck(L_56); String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_56); NullCheck(L_55); StringBuilder_t * L_58 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_55, L_57, /*hidden argument*/NULL); NullCheck(L_58); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_58, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_59 = __this->get_mapsTab_3(); if (L_59) { goto IL_019d; } } { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_60 = (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *)il2cpp_codegen_object_new(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A_il2cpp_TypeInfo_var); Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2(L_60, /*hidden argument*/Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2_RuntimeMethod_var); __this->set_mapsTab_3(L_60); } IL_019d: { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_61 = __this->get_mapsTab_3(); Type_t * L_62 = ___type0; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_62); NullCheck(L_61); bool L_64 = Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF(L_61, L_63, /*hidden argument*/Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF_RuntimeMethod_var); if (L_64) { goto IL_01c2; } } { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_65 = __this->get_mapsTab_3(); Type_t * L_66 = ___type0; NullCheck(L_66); String_t* L_67 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_66); Type_t * L_68 = ___type0; NullCheck(L_65); Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA(L_65, L_67, L_68, /*hidden argument*/Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA_RuntimeMethod_var); } IL_01c2: { StringBuilder_t * L_69 = __this->get_templates_7(); NullCheck(L_69); StringBuilder_t * L_70 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_69, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_70); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_70, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::EndEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_numParams_13(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0045; } } { StringBuilder_t * L_1 = __this->get_templates_7(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralF127B44E6D56B2F84FFDB105466CF4BAAABAB2DE, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_2, /*hidden argument*/NULL); StringBuilder_t * L_3 = __this->get_events_6(); NullCheck(L_3); StringBuilder_t * L_4 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, _stringLiteral786CA434663C378B4905D10A07443F2672AFD85C, /*hidden argument*/NULL); String_t* L_5 = __this->get_eventName_12(); NullCheck(L_4); StringBuilder_t * L_6 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, L_5, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_6, _stringLiteral263A6F6E0C50EF5F5EA93F74510351119E77A374, /*hidden argument*/NULL); } IL_0045: { StringBuilder_t * L_7 = __this->get_events_6(); NullCheck(L_7); StringBuilder_t * L_8 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_7, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_8, /*hidden argument*/NULL); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_9 = __this->get_byteArrArgIndices_14(); if (!L_9) { goto IL_007a; } } { Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_10 = __this->get_perEventByteArrayArgIndices_11(); String_t* L_11 = __this->get_eventName_12(); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_12 = __this->get_byteArrArgIndices_14(); NullCheck(L_10); Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9(L_10, L_11, L_12, /*hidden argument*/Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9_RuntimeMethod_var); } IL_007a: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_13 = __this->get_stringTab_4(); String_t* L_14 = __this->get_eventName_12(); String_t* L_15 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, L_14, /*hidden argument*/NULL); NullCheck(L_13); bool L_16 = Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_13, L_15, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); if (!L_16) { goto IL_00c3; } } { String_t* L_17 = V_0; String_t* L_18 = __this->get_eventName_12(); String_t* L_19 = ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C(__this, L_17, L_18, /*hidden argument*/NULL); V_0 = L_19; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_20 = __this->get_stringTab_4(); String_t* L_21 = __this->get_eventName_12(); String_t* L_22 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, L_21, /*hidden argument*/NULL); String_t* L_23 = V_0; NullCheck(L_20); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_20, L_22, L_23, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); } IL_00c3: { __this->set_eventName_12((String_t*)NULL); __this->set_numParams_13(0); __this->set_byteArrArgIndices_14((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)NULL); return; } } // System.Byte[] System.Diagnostics.Tracing.ManifestBuilder::CreateManifest() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ManifestBuilder_CreateManifest_mDD01686B4C7D615B86ACBA648988B5903FBB67E7 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F(__this, /*hidden argument*/NULL); V_0 = L_0; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = V_0; NullCheck(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_1, L_2); return L_3; } } // System.Collections.Generic.IList`1<System.String> System.Diagnostics.Tracing.ManifestBuilder::get_Errors() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ManifestBuilder_get_Errors_m38AD987BCFCAC441E35B1407D0E6E07C42AB822E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_errors_10(); return L_0; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::ManifestError(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___msg0, bool ___runtimeCritical1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_0017; } } { RuntimeObject* L_1 = __this->get_errors_10(); String_t* L_2 = ___msg0; NullCheck(L_1); InterfaceActionInvoker1< String_t* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.String>::Add(T) */, ICollection_1_t2E51991ADA605DB75870908AF6D7C3093DC3FCBA_il2cpp_TypeInfo_var, L_1, L_2); return; } IL_0017: { bool L_3 = ___runtimeCritical1; if (!L_3) { goto IL_0021; } } { String_t* L_4 = ___msg0; 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, ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_RuntimeMethod_var); } IL_0021: { return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::CreateManifestString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 V_4; memset((&V_4), 0, sizeof(V_4)); Type_t * V_5 = NULL; bool V_6 = false; String_t* V_7 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_8 = NULL; int32_t V_9 = 0; FieldInfo_t * V_10 = NULL; RuntimeObject * V_11 = NULL; int64_t V_12 = 0; int32_t V_13 = 0; Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B V_14; memset((&V_14), 0, sizeof(V_14)); uint64_t V_15 = 0; Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 V_16; memset((&V_16), 0, sizeof(V_16)); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_17 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_18 = NULL; String_t* V_19 = NULL; String_t* V_20 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B14_0 = NULL; { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_0 = __this->get_taskTab_1(); if (!L_0) { goto IL_00ca; } } { StringBuilder_t * L_1 = __this->get_sb_5(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralFC288D7B83A87B0DDC24679D162D7350601C984D, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_2, /*hidden argument*/NULL); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_taskTab_1(); NullCheck(L_3); KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * L_4 = Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1(L_3, /*hidden argument*/Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_5 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797(L_5, L_4, /*hidden argument*/List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_6 = L_5; NullCheck(L_6); List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A(L_6, /*hidden argument*/List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var); NullCheck(L_6); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_7 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_6, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_2 = L_7; } IL_003d: try { // begin try (depth: 1) { goto IL_009b; } IL_003f: { int32_t L_8 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_3 = L_8; StringBuilder_t * L_9 = __this->get_sb_5(); NullCheck(L_9); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_9, _stringLiteral99A83968733ADFF557210E1C8B53ACC558341FB8, /*hidden argument*/NULL); StringBuilder_t * L_10 = __this->get_sb_5(); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_taskTab_1(); int32_t L_12 = V_3; NullCheck(L_11); String_t* L_13 = Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906(L_11, L_12, /*hidden argument*/Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_10, _stringLiteral7FBB727DB4B2B6715B092505673CB5922A0D63A8, L_13, /*hidden argument*/NULL); StringBuilder_t * L_14 = __this->get_sb_5(); NullCheck(L_14); StringBuilder_t * L_15 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); int32_t L_16 = V_3; NullCheck(L_15); StringBuilder_t * L_17 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_15, L_16, /*hidden argument*/NULL); NullCheck(L_17); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_18, /*hidden argument*/NULL); } IL_009b: { bool L_19 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_19) { goto IL_003f; } } IL_00a4: { IL2CPP_LEAVE(0xB4, FINALLY_00a6); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a6; } FINALLY_00a6: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(166) } // end finally (depth: 1) IL2CPP_CLEANUP(166) { IL2CPP_JUMP_TBL(0xB4, IL_00b4) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00b4: { StringBuilder_t * L_20 = __this->get_sb_5(); NullCheck(L_20); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteralCD6B5E37A480F90D8313A8EBA22F2DBEE9A15F7B, /*hidden argument*/NULL); NullCheck(L_21); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_21, /*hidden argument*/NULL); } IL_00ca: { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_22 = __this->get_mapsTab_3(); if (!L_22) { goto IL_02bd; } } { StringBuilder_t * L_23 = __this->get_sb_5(); NullCheck(L_23); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_23, _stringLiteralD4D60962C564FF4E5AB47355C2F68221D614AFC0, /*hidden argument*/NULL); NullCheck(L_24); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_24, /*hidden argument*/NULL); Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_25 = __this->get_mapsTab_3(); NullCheck(L_25); ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * L_26 = Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5(L_25, /*hidden argument*/Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5_RuntimeMethod_var); NullCheck(L_26); Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 L_27 = ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51(L_26, /*hidden argument*/ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51_RuntimeMethod_var); V_4 = L_27; } IL_00fd: try { // begin try (depth: 1) { goto IL_028b; } IL_0102: { Type_t * L_28 = Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_inline((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_RuntimeMethod_var); V_5 = L_28; Type_t * L_29 = V_5; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); int32_t L_32 = __this->get_flags_9(); IL2CPP_RUNTIME_CLASS_INIT(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var); Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_33 = EventSource_GetCustomAttributeHelper_m0071006CDD204BE00B7EFEA9F5E52D087AF1F7D7(L_29, L_31, L_32, /*hidden argument*/NULL); V_6 = (bool)((!(((RuntimeObject*)(Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)L_33) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_34 = V_6; if (L_34) { goto IL_0132; } } IL_012b: { G_B14_0 = _stringLiteral3818FC9AE3DDA60E826D9B14657F088FB5F30552; goto IL_0137; } IL_0132: { G_B14_0 = _stringLiteral855DCB454D8D2C61BA069AEC5ADB73CCA1157E46; } IL_0137: { V_7 = G_B14_0; StringBuilder_t * L_35 = __this->get_sb_5(); NullCheck(L_35); StringBuilder_t * L_36 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_35, _stringLiteral246E6F26840D821990AE19D45FDE49C40A6F43E2, /*hidden argument*/NULL); String_t* L_37 = V_7; NullCheck(L_36); StringBuilder_t * L_38 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, L_37, /*hidden argument*/NULL); NullCheck(L_38); StringBuilder_t * L_39 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272, /*hidden argument*/NULL); Type_t * L_40 = V_5; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_40); NullCheck(L_39); StringBuilder_t * L_42 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_41, /*hidden argument*/NULL); NullCheck(L_42); StringBuilder_t * L_43 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_42, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_43); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_43, /*hidden argument*/NULL); Type_t * L_44 = V_5; NullCheck(L_44); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_45 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(45 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_44, ((int32_t)26)); V_8 = L_45; V_9 = 0; goto IL_0259; } IL_0189: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_46 = V_8; int32_t L_47 = V_9; NullCheck(L_46); int32_t L_48 = L_47; FieldInfo_t * L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48)); V_10 = L_49; FieldInfo_t * L_50 = V_10; NullCheck(L_50); RuntimeObject * L_51 = VirtFuncInvoker0< RuntimeObject * >::Invoke(28 /* System.Object System.Reflection.FieldInfo::GetRawConstantValue() */, L_50); V_11 = L_51; RuntimeObject * L_52 = V_11; if (!L_52) { goto IL_0253; } } IL_01a0: { RuntimeObject * L_53 = V_11; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_53, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))) { goto IL_01b5; } } IL_01a9: { RuntimeObject * L_54 = V_11; V_12 = (((int64_t)((int64_t)((*(int32_t*)((int32_t*)UnBox(L_54, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))))); goto IL_01ca; } IL_01b5: { RuntimeObject * L_55 = V_11; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_55, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))) { goto IL_0253; } } IL_01c1: { RuntimeObject * L_56 = V_11; V_12 = ((*(int64_t*)((int64_t*)UnBox(L_56, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))); } IL_01ca: { bool L_57 = V_6; if (!L_57) { goto IL_01dc; } } IL_01ce: { int64_t L_58 = V_12; int64_t L_59 = V_12; if (((int64_t)((int64_t)L_58&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_59, (int64_t)(((int64_t)((int64_t)1)))))))) { goto IL_0253; } } IL_01d8: { int64_t L_60 = V_12; if (!L_60) { goto IL_0253; } } IL_01dc: { StringBuilder_t * L_61 = __this->get_sb_5(); NullCheck(L_61); StringBuilder_t * L_62 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_61, _stringLiteralD9907347838493529221F1324618B317C4C431B3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_63 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_64 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&V_12), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_63, /*hidden argument*/NULL); NullCheck(L_62); StringBuilder_t * L_65 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_62, L_64, /*hidden argument*/NULL); NullCheck(L_65); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_65, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_66 = __this->get_sb_5(); Type_t * L_67 = V_5; NullCheck(L_67); String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_67); FieldInfo_t * L_69 = V_10; NullCheck(L_69); String_t* L_70 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_69); String_t* L_71 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_68, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_70, /*hidden argument*/NULL); FieldInfo_t * L_72 = V_10; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_72); ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_66, _stringLiteral37745ED7A0F005FB14522C5CC7C1BA3D9E0DF579, L_71, L_73, /*hidden argument*/NULL); StringBuilder_t * L_74 = __this->get_sb_5(); NullCheck(L_74); StringBuilder_t * L_75 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_74, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_75); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_75, /*hidden argument*/NULL); } IL_0253: { int32_t L_76 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1)); } IL_0259: { int32_t L_77 = V_9; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_78 = V_8; NullCheck(L_78); if ((((int32_t)L_77) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_78)->max_length))))))) { goto IL_0189; } } IL_0264: { StringBuilder_t * L_79 = __this->get_sb_5(); NullCheck(L_79); StringBuilder_t * L_80 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_79, _stringLiteral29E08777F0011BC04150872BBFFF5534D39661D5, /*hidden argument*/NULL); String_t* L_81 = V_7; NullCheck(L_80); StringBuilder_t * L_82 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_80, L_81, /*hidden argument*/NULL); NullCheck(L_82); StringBuilder_t * L_83 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_82, _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194, /*hidden argument*/NULL); NullCheck(L_83); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_83, /*hidden argument*/NULL); } IL_028b: { bool L_84 = Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695_RuntimeMethod_var); if (L_84) { goto IL_0102; } } IL_0297: { IL2CPP_LEAVE(0x2A7, FINALLY_0299); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0299; } FINALLY_0299: { // begin finally (depth: 1) Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B_RuntimeMethod_var); IL2CPP_END_FINALLY(665) } // end finally (depth: 1) IL2CPP_CLEANUP(665) { IL2CPP_JUMP_TBL(0x2A7, IL_02a7) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_02a7: { StringBuilder_t * L_85 = __this->get_sb_5(); NullCheck(L_85); StringBuilder_t * L_86 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_85, _stringLiteralD374C5B32FDB6AB9A377C21A1496F0AE025350E2, /*hidden argument*/NULL); NullCheck(L_86); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_86, /*hidden argument*/NULL); } IL_02bd: { StringBuilder_t * L_87 = __this->get_sb_5(); NullCheck(L_87); StringBuilder_t * L_88 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_87, _stringLiteral0BC766E82DC8732F2E4596DFFB3069663F7E71C6, /*hidden argument*/NULL); NullCheck(L_88); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_88, /*hidden argument*/NULL); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_89 = __this->get_opcodeTab_0(); NullCheck(L_89); KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * L_90 = Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1(L_89, /*hidden argument*/Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_91 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797(L_91, L_90, /*hidden argument*/List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_92 = L_91; NullCheck(L_92); List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A(L_92, /*hidden argument*/List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var); NullCheck(L_92); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_93 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_92, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_2 = L_93; } IL_02ef: try { // begin try (depth: 1) { goto IL_0350; } IL_02f1: { int32_t L_94 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_13 = L_94; StringBuilder_t * L_95 = __this->get_sb_5(); NullCheck(L_95); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_95, _stringLiteral75EA75BBC43C03B2DD69090F5F554278D5BA0FFF, /*hidden argument*/NULL); StringBuilder_t * L_96 = __this->get_sb_5(); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_97 = __this->get_opcodeTab_0(); int32_t L_98 = V_13; NullCheck(L_97); String_t* L_99 = Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906(L_97, L_98, /*hidden argument*/Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_96, _stringLiteralC6C4B89B8CCF0B9BD80A8AFD68F7708852262CAC, L_99, /*hidden argument*/NULL); StringBuilder_t * L_100 = __this->get_sb_5(); NullCheck(L_100); StringBuilder_t * L_101 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_100, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); int32_t L_102 = V_13; NullCheck(L_101); StringBuilder_t * L_103 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_101, L_102, /*hidden argument*/NULL); NullCheck(L_103); StringBuilder_t * L_104 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_103, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_104); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_104, /*hidden argument*/NULL); } IL_0350: { bool L_105 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_105) { goto IL_02f1; } } IL_0359: { IL2CPP_LEAVE(0x369, FINALLY_035b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_035b; } FINALLY_035b: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(859) } // end finally (depth: 1) IL2CPP_CLEANUP(859) { IL2CPP_JUMP_TBL(0x369, IL_0369) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0369: { StringBuilder_t * L_106 = __this->get_sb_5(); NullCheck(L_106); StringBuilder_t * L_107 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_106, _stringLiteral3FCE8FCB8E68DF5EB7FDC8994A85BB862F91A267, /*hidden argument*/NULL); NullCheck(L_107); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_107, /*hidden argument*/NULL); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_108 = __this->get_keywordTab_2(); if (!L_108) { goto IL_045c; } } { StringBuilder_t * L_109 = __this->get_sb_5(); NullCheck(L_109); StringBuilder_t * L_110 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_109, _stringLiteral6487A22F4D04C78C7FCE5351001A23F780A2376D, /*hidden argument*/NULL); NullCheck(L_110); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_110, /*hidden argument*/NULL); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_111 = __this->get_keywordTab_2(); NullCheck(L_111); KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * L_112 = Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41(L_111, /*hidden argument*/Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41_RuntimeMethod_var); List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * L_113 = (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *)il2cpp_codegen_object_new(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_il2cpp_TypeInfo_var); List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F(L_113, L_112, /*hidden argument*/List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_RuntimeMethod_var); List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * L_114 = L_113; NullCheck(L_114); List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8(L_114, /*hidden argument*/List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_RuntimeMethod_var); NullCheck(L_114); Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B L_115 = List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7(L_114, /*hidden argument*/List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_RuntimeMethod_var); V_14 = L_115; } IL_03bd: try { // begin try (depth: 1) { goto IL_042d; } IL_03bf: { uint64_t L_116 = Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_inline((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_RuntimeMethod_var); V_15 = L_116; StringBuilder_t * L_117 = __this->get_sb_5(); NullCheck(L_117); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_117, _stringLiteralD414CE398A897E5D390F2C8E42E198F74FC13AA9, /*hidden argument*/NULL); StringBuilder_t * L_118 = __this->get_sb_5(); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_119 = __this->get_keywordTab_2(); uint64_t L_120 = V_15; NullCheck(L_119); String_t* L_121 = Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6(L_119, L_120, /*hidden argument*/Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_118, _stringLiteralA43AA2B3CCE8548368BBD79297BC5714364EA31A, L_121, /*hidden argument*/NULL); StringBuilder_t * L_122 = __this->get_sb_5(); NullCheck(L_122); StringBuilder_t * L_123 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_122, _stringLiteralDC7F6C369E736C6A7FA89F29B4BCEA35B31E7D49, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_124 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_125 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_15), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_124, /*hidden argument*/NULL); NullCheck(L_123); StringBuilder_t * L_126 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_123, L_125, /*hidden argument*/NULL); NullCheck(L_126); StringBuilder_t * L_127 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_126, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_127); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_127, /*hidden argument*/NULL); } IL_042d: { bool L_128 = Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_RuntimeMethod_var); if (L_128) { goto IL_03bf; } } IL_0436: { IL2CPP_LEAVE(0x446, FINALLY_0438); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0438; } FINALLY_0438: { // begin finally (depth: 1) Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_RuntimeMethod_var); IL2CPP_END_FINALLY(1080) } // end finally (depth: 1) IL2CPP_CLEANUP(1080) { IL2CPP_JUMP_TBL(0x446, IL_0446) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0446: { StringBuilder_t * L_129 = __this->get_sb_5(); NullCheck(L_129); StringBuilder_t * L_130 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_129, _stringLiteral4413EC32E60779835B3DAF7E5B512339751AC6EC, /*hidden argument*/NULL); NullCheck(L_130); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_130, /*hidden argument*/NULL); } IL_045c: { StringBuilder_t * L_131 = __this->get_sb_5(); NullCheck(L_131); StringBuilder_t * L_132 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_131, _stringLiteralDE44976BA6EF44944D75FEF09EA6237C375988CC, /*hidden argument*/NULL); NullCheck(L_132); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_132, /*hidden argument*/NULL); StringBuilder_t * L_133 = __this->get_sb_5(); StringBuilder_t * L_134 = __this->get_events_6(); NullCheck(L_133); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_133, L_134, /*hidden argument*/NULL); StringBuilder_t * L_135 = __this->get_sb_5(); NullCheck(L_135); StringBuilder_t * L_136 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_135, _stringLiteral127CEF0DEDB05FE8497C9C46AEC0AA3FBFF45D64, /*hidden argument*/NULL); NullCheck(L_136); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_136, /*hidden argument*/NULL); StringBuilder_t * L_137 = __this->get_sb_5(); NullCheck(L_137); StringBuilder_t * L_138 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_137, _stringLiteral5D62DB9F1221432B4705D0AA11A52FAB86E72F72, /*hidden argument*/NULL); NullCheck(L_138); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_138, /*hidden argument*/NULL); StringBuilder_t * L_139 = __this->get_templates_7(); NullCheck(L_139); int32_t L_140 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_139, /*hidden argument*/NULL); if ((((int32_t)L_140) <= ((int32_t)0))) { goto IL_04d2; } } { StringBuilder_t * L_141 = __this->get_sb_5(); StringBuilder_t * L_142 = __this->get_templates_7(); NullCheck(L_141); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_141, L_142, /*hidden argument*/NULL); goto IL_04e8; } IL_04d2: { StringBuilder_t * L_143 = __this->get_sb_5(); NullCheck(L_143); StringBuilder_t * L_144 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_143, _stringLiteralCBB9EF8F60C063233AE07733AA2EEB5BAC42813F, /*hidden argument*/NULL); NullCheck(L_144); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_144, /*hidden argument*/NULL); } IL_04e8: { StringBuilder_t * L_145 = __this->get_sb_5(); NullCheck(L_145); StringBuilder_t * L_146 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_145, _stringLiteralBCE467B40131291712BF0D977BF396E4DE31975E, /*hidden argument*/NULL); NullCheck(L_146); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_146, /*hidden argument*/NULL); StringBuilder_t * L_147 = __this->get_sb_5(); NullCheck(L_147); StringBuilder_t * L_148 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_147, _stringLiteral4A0B9F9010B567B650A074217E5FD09037275F29, /*hidden argument*/NULL); NullCheck(L_148); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_148, /*hidden argument*/NULL); StringBuilder_t * L_149 = __this->get_sb_5(); NullCheck(L_149); StringBuilder_t * L_150 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_149, _stringLiteral8A3D3E1BBAE5638D4FAC221C64332EF3B633E689, /*hidden argument*/NULL); NullCheck(L_150); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_150, /*hidden argument*/NULL); StringBuilder_t * L_151 = __this->get_sb_5(); NullCheck(L_151); StringBuilder_t * L_152 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_151, _stringLiteral2A650D754943CF220D5227594CAA19A8331C7A8B, /*hidden argument*/NULL); NullCheck(L_152); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_152, /*hidden argument*/NULL); StringBuilder_t * L_153 = __this->get_sb_5(); NullCheck(L_153); StringBuilder_t * L_154 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_153, _stringLiteralD13D71939A7725E8BBC03792041441B834A48F4F, /*hidden argument*/NULL); NullCheck(L_154); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_154, /*hidden argument*/NULL); V_0 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)NULL; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_155 = __this->get_resources_8(); if (!L_155) { goto IL_0578; } } { int32_t L_156 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_156&(int32_t)2))) { goto IL_0578; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_157 = __this->get_resources_8(); List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_158 = ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF(L_157, /*hidden argument*/NULL); V_0 = L_158; goto IL_0589; } IL_0578: { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_159 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)il2cpp_codegen_object_new(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var); List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7(L_159, /*hidden argument*/List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var); V_0 = L_159; List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_160 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_161 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_160); List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928(L_160, L_161, /*hidden argument*/List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var); } IL_0589: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_162 = __this->get_stringTab_4(); NullCheck(L_162); KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * L_163 = Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF(L_162, /*hidden argument*/Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var); NullCheck(L_163); int32_t L_164 = KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083(L_163, /*hidden argument*/KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_165 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)L_164); V_1 = L_165; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_166 = __this->get_stringTab_4(); NullCheck(L_166); KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * L_167 = Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF(L_166, /*hidden argument*/Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_168 = V_1; NullCheck(L_167); KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD(L_167, L_168, 0, /*hidden argument*/KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_169 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_170 = V_1; NullCheck(L_170); Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * L_171 = Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8(/*hidden argument*/Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var); Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * L_172 = L_171; Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * L_173 = (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *)il2cpp_codegen_object_new(Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71_il2cpp_TypeInfo_var); Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127(L_173, L_172, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_172, 6)), /*hidden argument*/Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127_RuntimeMethod_var); ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562(L_169, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_170)->max_length)))), L_173, /*hidden argument*/ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562_RuntimeMethod_var); List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_174 = V_0; NullCheck(L_174); Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 L_175 = List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56(L_174, /*hidden argument*/List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56_RuntimeMethod_var); V_16 = L_175; } IL_05d4: try { // begin try (depth: 1) { goto IL_06b2; } IL_05d9: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_176 = Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_inline((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_RuntimeMethod_var); V_17 = L_176; StringBuilder_t * L_177 = __this->get_sb_5(); NullCheck(L_177); StringBuilder_t * L_178 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_177, _stringLiteralB58F6A540CFAC225528E9A1911C79E6FB7C59D11, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_179 = V_17; NullCheck(L_179); String_t* L_180 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_179); NullCheck(L_178); StringBuilder_t * L_181 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_178, L_180, /*hidden argument*/NULL); NullCheck(L_181); StringBuilder_t * L_182 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_181, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_182); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_182, /*hidden argument*/NULL); StringBuilder_t * L_183 = __this->get_sb_5(); NullCheck(L_183); StringBuilder_t * L_184 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_183, _stringLiteral802D7D2166FA45354A05B0C0A5AD3C91B046F81E, /*hidden argument*/NULL); NullCheck(L_184); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_184, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_185 = V_1; V_18 = L_185; V_9 = 0; goto IL_067e; } IL_062c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_186 = V_18; int32_t L_187 = V_9; NullCheck(L_186); int32_t L_188 = L_187; String_t* L_189 = (L_186)->GetAt(static_cast<il2cpp_array_size_t>(L_188)); V_19 = L_189; String_t* L_190 = V_19; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_191 = V_17; String_t* L_192 = ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66(__this, L_190, L_191, (bool)1, /*hidden argument*/NULL); V_20 = L_192; StringBuilder_t * L_193 = __this->get_sb_5(); NullCheck(L_193); StringBuilder_t * L_194 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_193, _stringLiteral8FDB330FBE0032F38CF465E208ABC5438BC1C01C, /*hidden argument*/NULL); String_t* L_195 = V_19; NullCheck(L_194); StringBuilder_t * L_196 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_194, L_195, /*hidden argument*/NULL); NullCheck(L_196); StringBuilder_t * L_197 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_196, _stringLiteral84CE8379C5F1EA339C5FB691E5BB4A06E10DC5FD, /*hidden argument*/NULL); String_t* L_198 = V_20; NullCheck(L_197); StringBuilder_t * L_199 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_197, L_198, /*hidden argument*/NULL); NullCheck(L_199); StringBuilder_t * L_200 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_199, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_200); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_200, /*hidden argument*/NULL); int32_t L_201 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_201, (int32_t)1)); } IL_067e: { int32_t L_202 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_203 = V_18; NullCheck(L_203); if ((((int32_t)L_202) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_203)->max_length))))))) { goto IL_062c; } } IL_0686: { StringBuilder_t * L_204 = __this->get_sb_5(); NullCheck(L_204); StringBuilder_t * L_205 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_204, _stringLiteralA0BBE710D1F301E54FA309EBEACF48130A9ECD04, /*hidden argument*/NULL); NullCheck(L_205); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_205, /*hidden argument*/NULL); StringBuilder_t * L_206 = __this->get_sb_5(); NullCheck(L_206); StringBuilder_t * L_207 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_206, _stringLiteralFC8E1F22C45AAC5385026D543B9E31E719C612D8, /*hidden argument*/NULL); NullCheck(L_207); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_207, /*hidden argument*/NULL); } IL_06b2: { bool L_208 = Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6_RuntimeMethod_var); if (L_208) { goto IL_05d9; } } IL_06be: { IL2CPP_LEAVE(0x6CE, FINALLY_06c0); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_06c0; } FINALLY_06c0: { // begin finally (depth: 1) Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03_RuntimeMethod_var); IL2CPP_END_FINALLY(1728) } // end finally (depth: 1) IL2CPP_CLEANUP(1728) { IL2CPP_JUMP_TBL(0x6CE, IL_06ce) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_06ce: { StringBuilder_t * L_209 = __this->get_sb_5(); NullCheck(L_209); StringBuilder_t * L_210 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_209, _stringLiteral48F5015F1ACFAB8D3581489DA0BBF59992135C3E, /*hidden argument*/NULL); NullCheck(L_210); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_210, /*hidden argument*/NULL); StringBuilder_t * L_211 = __this->get_sb_5(); NullCheck(L_211); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_211, _stringLiteralEE685442D8365096427B877EAA72FAE0ACF0E4AD, /*hidden argument*/NULL); StringBuilder_t * L_212 = __this->get_sb_5(); NullCheck(L_212); String_t* L_213 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_212); return L_213; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteNameAndMessageAttribs(System.Text.StringBuilder,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___stringBuilder0; NullCheck(L_0); StringBuilder_t * L_1 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_0, _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272, /*hidden argument*/NULL); String_t* L_2 = ___name2; NullCheck(L_1); StringBuilder_t * L_3 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, L_2, /*hidden argument*/NULL); NullCheck(L_3); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_4 = __this->get_sb_5(); String_t* L_5 = ___elementName1; String_t* L_6 = ___name2; String_t* L_7 = ___name2; ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteMessageAttrib(System.Text.StringBuilder,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, String_t* ___value3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = ___elementName1; String_t* L_1 = ___name2; String_t* L_2 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_0, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787, L_1, /*hidden argument*/NULL); V_0 = L_2; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_3 = __this->get_resources_8(); if (!L_3) { goto IL_002d; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_4 = __this->get_resources_8(); String_t* L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); NullCheck(L_4); String_t* L_7 = VirtFuncInvoker2< String_t*, String_t*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(8 /* System.String System.Resources.ResourceManager::GetString(System.String,System.Globalization.CultureInfo) */, L_4, L_5, L_6); V_2 = L_7; String_t* L_8 = V_2; if (!L_8) { goto IL_002d; } } { String_t* L_9 = V_2; ___value3 = L_9; } IL_002d: { String_t* L_10 = ___value3; if (L_10) { goto IL_0032; } } { return; } IL_0032: { StringBuilder_t * L_11 = ___stringBuilder0; NullCheck(L_11); StringBuilder_t * L_12 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, _stringLiteral2FFC4249B83F05632C45203CCA17BE1CE49D7495, /*hidden argument*/NULL); String_t* L_13 = V_0; NullCheck(L_12); StringBuilder_t * L_14 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_14); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, _stringLiteral1931755CE670F9620F26153490F473D6268A1311, /*hidden argument*/NULL); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_15 = __this->get_stringTab_4(); String_t* L_16 = V_0; NullCheck(L_15); bool L_17 = Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_15, L_16, (String_t**)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); if (!L_17) { goto IL_0084; } } { String_t* L_18 = V_1; String_t* L_19 = ___value3; NullCheck(L_18); bool L_20 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_18, L_19, /*hidden argument*/NULL); if (L_20) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21; String_t* L_23 = V_0; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23); String_t* L_24 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral413C755FA98C7F9008ECA6BE63D35368C4A1514F, L_22, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_24, (bool)1, /*hidden argument*/NULL); return; } IL_0084: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_25 = __this->get_stringTab_4(); String_t* L_26 = V_0; String_t* L_27 = ___value3; NullCheck(L_25); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_25, L_26, L_27, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLocalizedMessage(System.String,System.Globalization.CultureInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___key0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___ci1, bool ___etwFormat2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { V_0 = (String_t*)NULL; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_0 = __this->get_resources_8(); if (!L_0) { goto IL_0047; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_1 = __this->get_resources_8(); String_t* L_2 = ___key0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = ___ci1; NullCheck(L_1); String_t* L_4 = VirtFuncInvoker2< String_t*, String_t*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(8 /* System.String System.Resources.ResourceManager::GetString(System.String,System.Globalization.CultureInfo) */, L_1, L_2, L_3); V_1 = L_4; String_t* L_5 = V_1; if (!L_5) { goto IL_0047; } } { String_t* L_6 = V_1; V_0 = L_6; bool L_7 = ___etwFormat2; if (!L_7) { goto IL_0047; } } { String_t* L_8 = ___key0; NullCheck(L_8); bool L_9 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_8, _stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, /*hidden argument*/NULL); if (!L_9) { goto IL_0047; } } { String_t* L_10 = ___key0; NullCheck(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_12 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_10, L_11, /*hidden argument*/NULL); V_2 = L_12; String_t* L_13 = V_0; String_t* L_14 = V_2; String_t* L_15 = ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C(__this, L_13, L_14, /*hidden argument*/NULL); V_0 = L_15; } IL_0047: { bool L_16 = ___etwFormat2; if (!L_16) { goto IL_005c; } } { String_t* L_17 = V_0; if (L_17) { goto IL_005c; } } { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_18 = __this->get_stringTab_4(); String_t* L_19 = ___key0; NullCheck(L_18); Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_18, L_19, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); } IL_005c: { String_t* L_20 = V_0; return L_20; } } // System.Collections.Generic.List`1<System.Globalization.CultureInfo> System.Diagnostics.Tracing.ManifestBuilder::GetSupportedCultures(System.Resources.ResourceManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF (ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * V_0 = NULL; CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* V_1 = NULL; int32_t V_2 = 0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_3 = NULL; { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_0 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)il2cpp_codegen_object_new(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var); List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7(L_0, /*hidden argument*/List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var); V_0 = L_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_1 = CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6(2, /*hidden argument*/NULL); V_1 = L_1; V_2 = 0; goto IL_002b; } IL_0011: { CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_2 = V_1; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_3 = L_5; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_6 = ___resources0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = V_3; NullCheck(L_6); ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE * L_8 = VirtFuncInvoker3< ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, bool, bool >::Invoke(6 /* System.Resources.ResourceSet System.Resources.ResourceManager::GetResourceSet(System.Globalization.CultureInfo,System.Boolean,System.Boolean) */, L_6, L_7, (bool)1, (bool)0); if (!L_8) { goto IL_0027; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_9 = V_0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = V_3; NullCheck(L_9); List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928(L_9, L_10, /*hidden argument*/List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var); } IL_0027: { int32_t L_11 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_002b: { int32_t L_12 = V_2; CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_13 = V_1; NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))))) { goto IL_0011; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_14); bool L_16 = List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF(L_14, L_15, /*hidden argument*/List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF_RuntimeMethod_var); if (L_16) { goto IL_004a; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_17); List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11(L_17, 0, L_18, /*hidden argument*/List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11_RuntimeMethod_var); } IL_004a: { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_19 = V_0; return L_19; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLevelName(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2 (int32_t ___level0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { int32_t L_0 = ___level0; if ((((int32_t)L_0) >= ((int32_t)((int32_t)16)))) { goto IL_000c; } } { G_B3_0 = _stringLiteralCEBF554E26A3CEE7CC46716C76105474CD19B3E4; goto IL_0011; } IL_000c: { G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0011: { RuntimeObject * L_1 = Box(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E_il2cpp_TypeInfo_var, (&___level0)); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); ___level0 = *(int32_t*)UnBox(L_1); String_t* L_3 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(G_B3_0, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTaskName(System.Diagnostics.Tracing.EventTask,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___task0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { int32_t L_0 = ___task0; if (L_0) { goto IL_0009; } } { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0009: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_1 = __this->get_taskTab_1(); if (L_1) { goto IL_001c; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_2 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_2, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_taskTab_1(L_2); } IL_001c: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_taskTab_1(); int32_t L_4 = ___task0; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_3, L_4, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (L_5) { goto IL_003d; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_6 = __this->get_taskTab_1(); int32_t L_7 = ___task0; String_t* L_8 = ___eventName1; String_t* L_9 = L_8; V_1 = L_9; NullCheck(L_6); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_6, L_7, L_9, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); String_t* L_10 = V_1; V_0 = L_10; } IL_003d: { String_t* L_11 = V_0; return L_11; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetOpcodeName(System.Diagnostics.Tracing.EventOpcode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___opcode0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = ___opcode0; switch (L_0) { case 0: { goto IL_0038; } case 1: { goto IL_003e; } case 2: { goto IL_0044; } case 3: { goto IL_004a; } case 4: { goto IL_0050; } case 5: { goto IL_0056; } case 6: { goto IL_005c; } case 7: { goto IL_0062; } case 8: { goto IL_0068; } case 9: { goto IL_006e; } } } { int32_t L_1 = ___opcode0; if ((((int32_t)L_1) == ((int32_t)((int32_t)240)))) { goto IL_0074; } } { goto IL_007a; } IL_0038: { return _stringLiteral638518959E22A221840EC2702E630739E7C894A7; } IL_003e: { return _stringLiteral79B5F16116B55D562F8C8AAC5999A42980B75EF9; } IL_0044: { return _stringLiteralB3B32B341E40B76CC0EF6CAC3FFCE579FE71E2EB; } IL_004a: { return _stringLiteralCA551563A6650D643771A8BD5C569178A0E5DF92; } IL_0050: { return _stringLiteralF36D79A7BB78E70D214739C23AF51CC2649218FE; } IL_0056: { return _stringLiteralAD5B8BD8A78CB6141D85230014C26A676FF8027A; } IL_005c: { return _stringLiteral46FC8621F192530C562CAF208362AAC0952C6C2D; } IL_0062: { return _stringLiteral5B86F346A69763593C28460072B23948C6DEC48A; } IL_0068: { return _stringLiteral7484F2EE547B8EFBE7C40054E81DCCFDA1946FC2; } IL_006e: { return _stringLiteral131578187CBC956EA467DE57A93EE3388D7911FA; } IL_0074: { return _stringLiteral58198E1B107E9130D8D66259C1E5FDCA0B9AF5A0; } IL_007a: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_2 = __this->get_opcodeTab_0(); if (!L_2) { goto IL_0092; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_opcodeTab_0(); int32_t L_4 = ___opcode0; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_3, L_4, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (L_5) { goto IL_00b8; } } IL_0092: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6; int32_t L_8 = ___opcode0; int32_t L_9 = L_8; RuntimeObject * L_10 = Box(EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44_il2cpp_TypeInfo_var, &L_9); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_10); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_7; String_t* L_12 = ___eventName1; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12); String_t* L_13 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral726807A56BF9D4443B427982301C16E669EFB30A, L_11, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_13, (bool)1, /*hidden argument*/NULL); V_0 = (String_t*)NULL; } IL_00b8: { String_t* L_14 = V_0; return L_14; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetKeywords(System.UInt64,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, uint64_t ___keywords0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint64_t V_1 = 0; String_t* V_2 = NULL; { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; V_1 = (((int64_t)((int64_t)1))); goto IL_00ac; } IL_000e: { uint64_t L_0 = ___keywords0; uint64_t L_1 = V_1; if (!((int64_t)((int64_t)L_0&(int64_t)L_1))) { goto IL_00a8; } } { V_2 = (String_t*)NULL; Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_2 = __this->get_keywordTab_2(); if (!L_2) { goto IL_0030; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_3 = __this->get_keywordTab_2(); uint64_t L_4 = V_1; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8(L_3, L_4, (String_t**)(&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var); if (L_5) { goto IL_0042; } } IL_0030: { uint64_t L_6 = V_1; if ((!(((uint64_t)L_6) >= ((uint64_t)((int64_t)281474976710656LL))))) { goto IL_0042; } } { String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_2 = L_7; } IL_0042: { String_t* L_8 = V_2; if (L_8) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_11 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_12 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_11, /*hidden argument*/NULL); String_t* L_13 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_12, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_13); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_10; String_t* L_15 = ___eventName1; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_15); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15); String_t* L_16 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralCE7B9CC2EBDA4298D48848DB493F475D87267538, L_14, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_16, (bool)1, /*hidden argument*/NULL); String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_2 = L_17; } IL_0084: { String_t* L_18 = V_0; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00a0; } } { String_t* L_20 = V_2; NullCheck(L_20); int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00a0; } } { String_t* L_22 = V_0; String_t* L_23 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_22, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL); V_0 = L_23; } IL_00a0: { String_t* L_24 = V_0; String_t* L_25 = V_2; String_t* L_26 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_24, L_25, /*hidden argument*/NULL); V_0 = L_26; } IL_00a8: { uint64_t L_27 = V_1; V_1 = ((int64_t)((int64_t)L_27<<(int32_t)1)); } IL_00ac: { uint64_t L_28 = V_1; if (L_28) { goto IL_000e; } } { String_t* L_29 = V_0; return L_29; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTypeName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_0 = NULL; int32_t V_1 = 0; { Type_t * L_0 = ___type0; bool L_1 = ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002f; } } { Type_t * L_2 = ___type0; NullCheck(L_2); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(45 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_2, ((int32_t)52)); V_0 = L_3; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; FieldInfo_t * L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_6); String_t* L_8 = ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C(__this, L_7, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_8, _stringLiteralB62500F9D8FC0619B393A42DBEC55BB8483ABC57, _stringLiteralC9EE751B234DF9F0CB1CEF58C3AFAABDFB33981E, /*hidden argument*/NULL); return L_9; } IL_002f: { Type_t * L_10 = ___type0; int32_t L_11 = ReflectionExtensions_GetTypeCode_m55D509078B5566EA871D7C211EDE34AE45661BBD(L_10, /*hidden argument*/NULL); V_1 = L_11; int32_t L_12 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)3))) { case 0: { goto IL_0080; } case 1: { goto IL_008c; } case 2: { goto IL_009e; } case 3: { goto IL_0086; } case 4: { goto IL_00a4; } case 5: { goto IL_008c; } case 6: { goto IL_00aa; } case 7: { goto IL_0092; } case 8: { goto IL_00b0; } case 9: { goto IL_0098; } case 10: { goto IL_00bc; } case 11: { goto IL_00c2; } case 12: { goto IL_00ce; } case 13: { goto IL_00c8; } case 14: { goto IL_00ce; } case 15: { goto IL_00b6; } } } { goto IL_00ce; } IL_0080: { return _stringLiteral520AC5A5E2EF375F995F93F5918F257B8FAF931D; } IL_0086: { return _stringLiteralBA607182F71CA659F7E8466B7873570E4FA6634B; } IL_008c: { return _stringLiteral14D5E1E4EC2C7FF41DD490D67B71A73D0E31EC7C; } IL_0092: { return _stringLiteral4ABDA3BCB98FB7AFAF8979248C36F08684C3BB8A; } IL_0098: { return _stringLiteralECDCCD0C81DE0F1EC6BDFC3DA95A27B4829ED79F; } IL_009e: { return _stringLiteral7E9E8E82E00EC8A8E359F0917FB928F553C24E27; } IL_00a4: { return _stringLiteral61E97FC629B02A33804B57C172EC3E592ED0AC45; } IL_00aa: { return _stringLiteral96E8AEE74A6EC7CE65523A64AD67939E0E62C9D9; } IL_00b0: { return _stringLiteral18446046809DCDB1419BD8EAE6DB7987B7EB8EC2; } IL_00b6: { return _stringLiteralE0754E6E0A769DC094BEE20EE9DBD4019B26EF24; } IL_00bc: { return _stringLiteralB36FB26CFC4E8B0E76B4BEA00718F8C941751224; } IL_00c2: { return _stringLiteral3166B69F57AF10EE9E8F5D547C4119925D426417; } IL_00c8: { return _stringLiteral06B20A4FFFD49C2B41EE9A25F542756DD8B7FA41; } IL_00ce: { Type_t * L_13 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_13, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_00e6; } } { return _stringLiteralECE29405C121243BF01F6D1D079D72CB8DF9CDD9; } IL_00e6: { Type_t * L_17 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL); bool L_20 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_17, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_00fe; } } { return _stringLiteralAF349E9E9FCE74123ED62EF0042ACD5FFEB3DC9B; } IL_00fe: { Type_t * L_21 = ___type0; NullCheck(L_21); bool L_22 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_21, /*hidden argument*/NULL); if (L_22) { goto IL_010e; } } { Type_t * L_23 = ___type0; NullCheck(L_23); bool L_24 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_012b; } } IL_010e: { Type_t * L_25 = ___type0; NullCheck(L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(99 /* System.Type System.Type::GetElementType() */, L_25); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); bool L_29 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_26, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_012b; } } { return _stringLiteral9DA0D1E72ACE723870EBF4B28BFA1CCF33B6DDE9; } IL_012b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30; Type_t * L_32 = ___type0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_33); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_33); String_t* L_34 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral64F61EC8D3BCC739D1468635A136D8F9A052B539, L_31, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_34, (bool)1, /*hidden argument*/NULL); String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_35; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::UpdateStringBuilder(System.Text.StringBuilder&,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E (StringBuilder_t ** ___stringBuilder0, String_t* ___eventMessage1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t ** L_0 = ___stringBuilder0; StringBuilder_t * L_1 = *((StringBuilder_t **)L_0); if (L_1) { goto IL_000b; } } { StringBuilder_t ** L_2 = ___stringBuilder0; StringBuilder_t * L_3 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_3, /*hidden argument*/NULL); *((RuntimeObject **)L_2) = (RuntimeObject *)L_3; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_3); } IL_000b: { StringBuilder_t ** L_4 = ___stringBuilder0; StringBuilder_t * L_5 = *((StringBuilder_t **)L_4); String_t* L_6 = ___eventMessage1; int32_t L_7 = ___startIndex2; int32_t L_8 = ___count3; NullCheck(L_5); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::TranslateToManifestConvention(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventMessage0, String_t* ___evtName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * V_0 = NULL; int32_t V_1 = 0; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_7 = NULL; { U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_0 = (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_1 = V_0; String_t* L_2 = ___eventMessage0; NullCheck(L_1); L_1->set_eventMessage_1(L_2); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_3 = V_0; NullCheck(L_3); L_3->set_stringBuilder_0((StringBuilder_t *)NULL); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_4 = V_0; NullCheck(L_4); L_4->set_writtenSoFar_2(0); V_1 = (-1); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_5 = (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818(L_5, /*hidden argument*/NULL); V_2 = L_5; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_6 = V_2; U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_7 = V_0; NullCheck(L_6); L_6->set_CSU24U3CU3E8__locals1_1(L_7); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_8 = V_2; NullCheck(L_8); L_8->set_i_0(0); } IL_0031: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_9 = V_2; NullCheck(L_9); int32_t L_10 = L_9->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_11 = V_2; NullCheck(L_11); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_12 = L_11->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_12); String_t* L_13 = L_12->get_eventMessage_1(); NullCheck(L_13); int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL); if ((((int32_t)L_10) < ((int32_t)L_14))) { goto IL_00ab; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_15 = V_2; NullCheck(L_15); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_16 = L_15->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_16); StringBuilder_t * L_17 = L_16->get_stringBuilder_0(); if (L_17) { goto IL_0062; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_18 = V_2; NullCheck(L_18); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_19 = L_18->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_19); String_t* L_20 = L_19->get_eventMessage_1(); return L_20; } IL_0062: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_21 = V_2; NullCheck(L_21); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_22 = L_21->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_22); StringBuilder_t ** L_23 = L_22->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_24 = V_2; NullCheck(L_24); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_25 = L_24->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_25); String_t* L_26 = L_25->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_27 = V_2; NullCheck(L_27); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_28 = L_27->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_28); int32_t L_29 = L_28->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_30 = V_2; NullCheck(L_30); int32_t L_31 = L_30->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_32 = V_2; NullCheck(L_32); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_33 = L_32->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_33); int32_t L_34 = L_33->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_23, L_26, L_29, ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_34)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_35 = V_2; NullCheck(L_35); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_36 = L_35->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_36); StringBuilder_t * L_37 = L_36->get_stringBuilder_0(); NullCheck(L_37); String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37); return L_38; } IL_00ab: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_39 = V_2; NullCheck(L_39); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_40 = L_39->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_40); String_t* L_41 = L_40->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_42 = V_2; NullCheck(L_42); int32_t L_43 = L_42->get_i_0(); NullCheck(L_41); Il2CppChar L_44 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_41, L_43, /*hidden argument*/NULL); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)37))))) { goto IL_0139; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_45 = V_2; NullCheck(L_45); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_46 = L_45->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_46); StringBuilder_t ** L_47 = L_46->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_48 = V_2; NullCheck(L_48); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_49 = L_48->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_49); String_t* L_50 = L_49->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_51 = V_2; NullCheck(L_51); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_52 = L_51->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_52); int32_t L_53 = L_52->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_54 = V_2; NullCheck(L_54); int32_t L_55 = L_54->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_56 = V_2; NullCheck(L_56); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_57 = L_56->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_57); int32_t L_58 = L_57->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_47, L_50, L_53, ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)L_58)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_59 = V_2; NullCheck(L_59); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_60 = L_59->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_60); StringBuilder_t * L_61 = L_60->get_stringBuilder_0(); NullCheck(L_61); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_61, _stringLiteralE11557A88106E7FE5BB613921C6F637BCCD31989, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_62 = V_2; NullCheck(L_62); int32_t L_63 = L_62->get_i_0(); V_3 = L_63; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_64 = V_2; int32_t L_65 = V_3; NullCheck(L_64); L_64->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_66 = V_2; NullCheck(L_66); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_67 = L_66->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_68 = V_2; NullCheck(L_68); int32_t L_69 = L_68->get_i_0(); NullCheck(L_67); L_67->set_writtenSoFar_2(L_69); goto IL_0031; } IL_0139: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_70 = V_2; NullCheck(L_70); int32_t L_71 = L_70->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_72 = V_2; NullCheck(L_72); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_73 = L_72->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_73); String_t* L_74 = L_73->get_eventMessage_1(); NullCheck(L_74); int32_t L_75 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_74, /*hidden argument*/NULL); if ((((int32_t)L_71) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_75, (int32_t)1))))) { goto IL_025d; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_76 = V_2; NullCheck(L_76); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_77 = L_76->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_77); String_t* L_78 = L_77->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_79 = V_2; NullCheck(L_79); int32_t L_80 = L_79->get_i_0(); NullCheck(L_78); Il2CppChar L_81 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_78, L_80, /*hidden argument*/NULL); if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)123))))) { goto IL_018c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_82 = V_2; NullCheck(L_82); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_83 = L_82->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_83); String_t* L_84 = L_83->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_85 = V_2; NullCheck(L_85); int32_t L_86 = L_85->get_i_0(); NullCheck(L_84); Il2CppChar L_87 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_84, ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_87) == ((int32_t)((int32_t)123)))) { goto IL_01c8; } } IL_018c: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_88 = V_2; NullCheck(L_88); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_89 = L_88->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_89); String_t* L_90 = L_89->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_91 = V_2; NullCheck(L_91); int32_t L_92 = L_91->get_i_0(); NullCheck(L_90); Il2CppChar L_93 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_90, L_92, /*hidden argument*/NULL); if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)125))))) { goto IL_025d; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_94 = V_2; NullCheck(L_94); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_95 = L_94->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_95); String_t* L_96 = L_95->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_97 = V_2; NullCheck(L_97); int32_t L_98 = L_97->get_i_0(); NullCheck(L_96); Il2CppChar L_99 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_96, ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_99) == ((uint32_t)((int32_t)125))))) { goto IL_025d; } } IL_01c8: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_100 = V_2; NullCheck(L_100); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_101 = L_100->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_101); StringBuilder_t ** L_102 = L_101->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_103 = V_2; NullCheck(L_103); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_104 = L_103->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_104); String_t* L_105 = L_104->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_106 = V_2; NullCheck(L_106); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_107 = L_106->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_107); int32_t L_108 = L_107->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_109 = V_2; NullCheck(L_109); int32_t L_110 = L_109->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_111 = V_2; NullCheck(L_111); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_112 = L_111->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_112); int32_t L_113 = L_112->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_102, L_105, L_108, ((int32_t)il2cpp_codegen_subtract((int32_t)L_110, (int32_t)L_113)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_114 = V_2; NullCheck(L_114); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_115 = L_114->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_115); StringBuilder_t * L_116 = L_115->get_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_117 = V_2; NullCheck(L_117); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_118 = L_117->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_118); String_t* L_119 = L_118->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_120 = V_2; NullCheck(L_120); int32_t L_121 = L_120->get_i_0(); NullCheck(L_119); Il2CppChar L_122 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_119, L_121, /*hidden argument*/NULL); NullCheck(L_116); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_116, L_122, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_123 = V_2; NullCheck(L_123); int32_t L_124 = L_123->get_i_0(); V_3 = L_124; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_125 = V_2; int32_t L_126 = V_3; NullCheck(L_125); L_125->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_127 = V_2; NullCheck(L_127); int32_t L_128 = L_127->get_i_0(); V_3 = L_128; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_129 = V_2; int32_t L_130 = V_3; NullCheck(L_129); L_129->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_130, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_131 = V_2; NullCheck(L_131); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_132 = L_131->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_133 = V_2; NullCheck(L_133); int32_t L_134 = L_133->get_i_0(); NullCheck(L_132); L_132->set_writtenSoFar_2(L_134); goto IL_0031; } IL_025d: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_135 = V_2; NullCheck(L_135); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_136 = L_135->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_136); String_t* L_137 = L_136->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_138 = V_2; NullCheck(L_138); int32_t L_139 = L_138->get_i_0(); NullCheck(L_137); Il2CppChar L_140 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_137, L_139, /*hidden argument*/NULL); if ((!(((uint32_t)L_140) == ((uint32_t)((int32_t)123))))) { goto IL_043a; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_141 = V_2; NullCheck(L_141); int32_t L_142 = L_141->get_i_0(); V_4 = L_142; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_143 = V_2; NullCheck(L_143); int32_t L_144 = L_143->get_i_0(); V_3 = L_144; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_145 = V_2; int32_t L_146 = V_3; NullCheck(L_145); L_145->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_146, (int32_t)1))); V_5 = 0; goto IL_02c8; } IL_0297: { int32_t L_147 = V_5; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_148 = V_2; NullCheck(L_148); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_149 = L_148->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_149); String_t* L_150 = L_149->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_151 = V_2; NullCheck(L_151); int32_t L_152 = L_151->get_i_0(); NullCheck(L_150); Il2CppChar L_153 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_150, L_152, /*hidden argument*/NULL); V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_147, (int32_t)((int32_t)10))), (int32_t)L_153)), (int32_t)((int32_t)48))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_154 = V_2; NullCheck(L_154); int32_t L_155 = L_154->get_i_0(); V_3 = L_155; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_156 = V_2; int32_t L_157 = V_3; NullCheck(L_156); L_156->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_157, (int32_t)1))); } IL_02c8: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_158 = V_2; NullCheck(L_158); int32_t L_159 = L_158->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_160 = V_2; NullCheck(L_160); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_161 = L_160->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_161); String_t* L_162 = L_161->get_eventMessage_1(); NullCheck(L_162); int32_t L_163 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_162, /*hidden argument*/NULL); if ((((int32_t)L_159) >= ((int32_t)L_163))) { goto IL_02fd; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_164 = V_2; NullCheck(L_164); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_165 = L_164->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_165); String_t* L_166 = L_165->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_167 = V_2; NullCheck(L_167); int32_t L_168 = L_167->get_i_0(); NullCheck(L_166); Il2CppChar L_169 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_166, L_168, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_170 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_169, /*hidden argument*/NULL); if (L_170) { goto IL_0297; } } IL_02fd: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_171 = V_2; NullCheck(L_171); int32_t L_172 = L_171->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_173 = V_2; NullCheck(L_173); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_174 = L_173->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_174); String_t* L_175 = L_174->get_eventMessage_1(); NullCheck(L_175); int32_t L_176 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_175, /*hidden argument*/NULL); if ((((int32_t)L_172) >= ((int32_t)L_176))) { goto IL_040c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_177 = V_2; NullCheck(L_177); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_178 = L_177->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_178); String_t* L_179 = L_178->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_180 = V_2; NullCheck(L_180); int32_t L_181 = L_180->get_i_0(); NullCheck(L_179); Il2CppChar L_182 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_179, L_181, /*hidden argument*/NULL); if ((!(((uint32_t)L_182) == ((uint32_t)((int32_t)125))))) { goto IL_040c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_183 = V_2; NullCheck(L_183); int32_t L_184 = L_183->get_i_0(); V_3 = L_184; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_185 = V_2; int32_t L_186 = V_3; NullCheck(L_185); L_185->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_186, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_187 = V_2; NullCheck(L_187); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_188 = L_187->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_188); StringBuilder_t ** L_189 = L_188->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_190 = V_2; NullCheck(L_190); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_191 = L_190->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_191); String_t* L_192 = L_191->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_193 = V_2; NullCheck(L_193); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_194 = L_193->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_194); int32_t L_195 = L_194->get_writtenSoFar_2(); int32_t L_196 = V_4; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_197 = V_2; NullCheck(L_197); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_198 = L_197->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_198); int32_t L_199 = L_198->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_189, L_192, L_195, ((int32_t)il2cpp_codegen_subtract((int32_t)L_196, (int32_t)L_199)), /*hidden argument*/NULL); int32_t L_200 = V_5; String_t* L_201 = ___evtName1; int32_t L_202 = ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049(__this, L_200, L_201, /*hidden argument*/NULL); V_6 = L_202; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_203 = V_2; NullCheck(L_203); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_204 = L_203->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_204); StringBuilder_t * L_205 = L_204->get_stringBuilder_0(); NullCheck(L_205); StringBuilder_t * L_206 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_205, ((int32_t)37), /*hidden argument*/NULL); int32_t L_207 = V_6; NullCheck(L_206); StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_206, L_207, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_208 = V_2; NullCheck(L_208); int32_t L_209 = L_208->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_210 = V_2; NullCheck(L_210); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_211 = L_210->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_211); String_t* L_212 = L_211->get_eventMessage_1(); NullCheck(L_212); int32_t L_213 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_212, /*hidden argument*/NULL); if ((((int32_t)L_209) >= ((int32_t)L_213))) { goto IL_03f6; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_214 = V_2; NullCheck(L_214); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_215 = L_214->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_215); String_t* L_216 = L_215->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_217 = V_2; NullCheck(L_217); int32_t L_218 = L_217->get_i_0(); NullCheck(L_216); Il2CppChar L_219 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_216, L_218, /*hidden argument*/NULL); if ((!(((uint32_t)L_219) == ((uint32_t)((int32_t)33))))) { goto IL_03f6; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_220 = V_2; NullCheck(L_220); int32_t L_221 = L_220->get_i_0(); V_3 = L_221; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_222 = V_2; int32_t L_223 = V_3; NullCheck(L_222); L_222->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_223, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_224 = V_2; NullCheck(L_224); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_225 = L_224->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_225); StringBuilder_t * L_226 = L_225->get_stringBuilder_0(); NullCheck(L_226); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_226, _stringLiteral69766F02FB09CD43FABB15BE9645941918840347, /*hidden argument*/NULL); } IL_03f6: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_227 = V_2; NullCheck(L_227); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_228 = L_227->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_229 = V_2; NullCheck(L_229); int32_t L_230 = L_229->get_i_0(); NullCheck(L_228); L_228->set_writtenSoFar_2(L_230); goto IL_0031; } IL_040c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_231 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_232 = L_231; String_t* L_233 = ___evtName1; NullCheck(L_232); ArrayElementTypeCheck (L_232, L_233); (L_232)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_233); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_234 = L_232; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_235 = V_2; NullCheck(L_235); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_236 = L_235->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_236); String_t* L_237 = L_236->get_eventMessage_1(); NullCheck(L_234); ArrayElementTypeCheck (L_234, L_237); (L_234)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_237); String_t* L_238 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA6468CA2C2E3400246432BD38A3C2294225B56C4, L_234, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_238, (bool)0, /*hidden argument*/NULL); goto IL_0031; } IL_043a: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_239 = V_2; NullCheck(L_239); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_240 = L_239->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_240); String_t* L_241 = L_240->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_242 = V_2; NullCheck(L_242); int32_t L_243 = L_242->get_i_0(); NullCheck(L_241); Il2CppChar L_244 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_241, L_243, /*hidden argument*/NULL); NullCheck(_stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C); int32_t L_245 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(_stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C, L_244, /*hidden argument*/NULL); int32_t L_246 = L_245; V_1 = L_246; if ((((int32_t)L_246) < ((int32_t)0))) { goto IL_04d7; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_247 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)8); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_248 = L_247; NullCheck(L_248); ArrayElementTypeCheck (L_248, _stringLiteral54F697A1FF421E46F37022813A88D0937A82090C); (L_248)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral54F697A1FF421E46F37022813A88D0937A82090C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_249 = L_248; NullCheck(L_249); ArrayElementTypeCheck (L_249, _stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02); (L_249)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_250 = L_249; NullCheck(L_250); ArrayElementTypeCheck (L_250, _stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A); (L_250)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_251 = L_250; NullCheck(L_251); ArrayElementTypeCheck (L_251, _stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066); (L_251)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_252 = L_251; NullCheck(L_252); ArrayElementTypeCheck (L_252, _stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E); (L_252)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_253 = L_252; NullCheck(L_253); ArrayElementTypeCheck (L_253, _stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF); (L_253)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_254 = L_253; NullCheck(L_254); ArrayElementTypeCheck (L_254, _stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A); (L_254)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_255 = L_254; NullCheck(L_255); ArrayElementTypeCheck (L_255, _stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9); (L_255)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9); V_7 = L_255; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_256 = V_2; Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * L_257 = (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *)il2cpp_codegen_object_new(Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81_il2cpp_TypeInfo_var); Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2(L_257, L_256, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2_RuntimeMethod_var); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_258 = V_2; NullCheck(L_258); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_259 = L_258->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_259); String_t* L_260 = L_259->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_261 = V_2; NullCheck(L_261); int32_t L_262 = L_261->get_i_0(); NullCheck(L_260); Il2CppChar L_263 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_260, L_262, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_264 = V_7; int32_t L_265 = V_1; NullCheck(L_264); int32_t L_266 = L_265; String_t* L_267 = (L_264)->GetAt(static_cast<il2cpp_array_size_t>(L_266)); NullCheck(L_257); Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0(L_257, L_263, L_267, /*hidden argument*/Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0_RuntimeMethod_var); goto IL_0031; } IL_04d7: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_268 = V_2; NullCheck(L_268); int32_t L_269 = L_268->get_i_0(); V_3 = L_269; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_270 = V_2; int32_t L_271 = V_3; NullCheck(L_270); L_270->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_271, (int32_t)1))); goto IL_0031; } } // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::TranslateIndexToManifestConvention(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___idx0, String_t* ___evtName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * V_0 = NULL; Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_0 = __this->get_perEventByteArrayArgIndices_11(); String_t* L_1 = ___evtName1; NullCheck(L_0); bool L_2 = Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182(L_0, L_1, (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182_RuntimeMethod_var); if (!L_2) { goto IL_0043; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_3 = V_0; NullCheck(L_3); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_4 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_3, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_1 = L_4; } IL_0017: try { // begin try (depth: 1) { goto IL_002a; } IL_0019: { int32_t L_5 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_2 = L_5; int32_t L_6 = ___idx0; int32_t L_7 = V_2; if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_0033; } } IL_0025: { int32_t L_8 = ___idx0; ___idx0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002a: { bool L_9 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_9) { goto IL_0019; } } IL_0033: { IL2CPP_LEAVE(0x43, FINALLY_0035); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0035; } FINALLY_0035: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(53) } // end finally (depth: 1) IL2CPP_CLEANUP(53) { IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0043: { int32_t L_10 = ___idx0; return ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050 (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::<TranslateToManifestConvention>b__0(System.Char,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, Il2CppChar ___ch0, String_t* ___escape1, const RuntimeMethod* method) { int32_t V_0 = 0; { U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_0 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_0); StringBuilder_t ** L_1 = L_0->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_2 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_2); String_t* L_3 = L_2->get_eventMessage_1(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_4 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_4); int32_t L_5 = L_4->get_writtenSoFar_2(); int32_t L_6 = __this->get_i_0(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_7 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_7); int32_t L_8 = L_7->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_1, L_3, L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_8)), /*hidden argument*/NULL); int32_t L_9 = __this->get_i_0(); V_0 = L_9; int32_t L_10 = V_0; __this->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_11 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_11); StringBuilder_t * L_12 = L_11->get_stringBuilder_0(); String_t* L_13 = ___escape1; NullCheck(L_12); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, L_13, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_14 = __this->get_CSU24U3CU3E8__locals1_1(); int32_t L_15 = __this->get_i_0(); NullCheck(L_14); L_14->set_writtenSoFar_2(L_15); 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.Diagnostics.Tracing.NameInfo::ReserveEventIDsBelow(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8 (int32_t ___eventId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IL_0000: { IL2CPP_RUNTIME_CLASS_INIT(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); int32_t L_0 = ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_lastIdentity_0(); V_0 = L_0; int32_t L_1 = ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_lastIdentity_0(); int32_t L_2 = ___eventId0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)-16777216))), (int32_t)L_2)); int32_t L_3 = V_1; int32_t L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); int32_t L_5 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = V_1; int32_t L_7 = V_0; int32_t L_8 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)(((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_address_of_lastIdentity_0()), L_6, L_7, /*hidden argument*/NULL); int32_t L_9 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_0000; } } { return; } } // System.Void System.Diagnostics.Tracing.NameInfo::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___name0, int32_t ___tags1, int32_t ___typeMetadataSize2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F(__this, /*hidden argument*/ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F_RuntimeMethod_var); String_t* L_0 = ___name0; __this->set_name_1(L_0); int32_t L_1 = ___tags1; __this->set_tags_2(((int32_t)((int32_t)L_1&(int32_t)((int32_t)268435455)))); IL2CPP_RUNTIME_CLASS_INIT(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); int32_t L_2 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_address_of_lastIdentity_0()), /*hidden argument*/NULL); __this->set_identity_3(L_2); V_0 = 0; int32_t L_3 = __this->get_tags_2(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_3, (int32_t*)(&V_0), (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); String_t* L_4 = ___name0; int32_t L_5 = V_0; int32_t L_6 = ___typeMetadataSize2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D(L_4, L_5, 0, L_6, /*hidden argument*/NULL); __this->set_nameMetadata_4(L_7); V_0 = 2; int32_t L_8 = __this->get_tags_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get_nameMetadata_4(); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_8, (int32_t*)(&V_0), L_9, /*hidden argument*/NULL); return; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.Diagnostics.Tracing.NameInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_mCC500203B3DEC807707E1F33478C330DDE2CA2B8 (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ___other0, const RuntimeMethod* method) { { NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_0 = ___other0; NullCheck(L_0); String_t* L_1 = L_0->get_name_1(); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_2 = ___other0; NullCheck(L_2); int32_t L_3 = L_2->get_tags_2(); int32_t L_4 = NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE(__this, L_1, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866 (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_inline((KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *)(&___key0), /*hidden argument*/KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_RuntimeMethod_var); int32_t L_1 = KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_inline((KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *)(&___key0), /*hidden argument*/KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_RuntimeMethod_var); int32_t L_2 = NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE(__this, L_0, ((int32_t)((int32_t)L_1&(int32_t)((int32_t)268435455))), /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___otherName0, int32_t ___otherTags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B5_0 = 0; { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline(/*hidden argument*/NULL); String_t* L_1 = __this->get_name_1(); String_t* L_2 = ___otherName0; NullCheck(L_0); int32_t L_3 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(10 /* System.Int32 System.StringComparer::Compare(System.String,System.String) */, L_0, L_1, L_2); V_0 = L_3; int32_t L_4 = V_0; if (L_4) { goto IL_002c; } } { int32_t L_5 = __this->get_tags_2(); int32_t L_6 = ___otherTags1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_002c; } } { int32_t L_7 = __this->get_tags_2(); int32_t L_8 = ___otherTags1; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_002a; } } { G_B5_0 = 1; goto IL_002b; } IL_002a: { G_B5_0 = (-1); } IL_002b: { V_0 = G_B5_0; } IL_002c: { int32_t L_9 = V_0; return L_9; } } // System.Void System.Diagnostics.Tracing.NameInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->set_lastIdentity_0(((int32_t)184549376)); 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.Diagnostics.Tracing.NonEventAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NonEventAttribute__ctor_m11EB423FA0331D5ACEA383A7D8C27148C58219DB (NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726 * __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.Void System.Diagnostics.Tracing.PropertyAnalysis::.ctor(System.String,System.Reflection.MethodInfo,System.Diagnostics.Tracing.TraceLoggingTypeInfo,System.Diagnostics.Tracing.EventFieldAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * __this, String_t* ___name0, MethodInfo_t * ___getterInfo1, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo2, EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); MethodInfo_t * L_1 = ___getterInfo1; __this->set_getterInfo_1(L_1); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_2 = ___typeInfo2; __this->set_typeInfo_2(L_2); EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_3 = ___fieldAttribute3; __this->set_fieldAttribute_3(L_3); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D(L_2, 3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.SByte[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo_WriteData_m91EC7DD3F438D469AD2B240D6274E333490BDC73 (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889** L_1 = ___value1; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_2 = *((SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SByteTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1 (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D(L_2, 3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.SByte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo_WriteData_mA12BDABEED30E261A0EE2232E414574DDC243B4B (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int8_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int8_t* L_1 = ___value1; int32_t L_2 = *((int8_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D(L_0, (int8_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SessionMask::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, uint32_t ___mask0, const RuntimeMethod* method) { { uint32_t L_0 = ___mask0; __this->set_m_mask_0(((int32_t)((int32_t)L_0&(int32_t)((int32_t)15)))); return; } } IL2CPP_EXTERN_C void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB_AdjustorThunk (RuntimeObject * __this, uint32_t ___mask0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB(_thisAdjusted, ___mask0, method); } // System.Boolean System.Diagnostics.Tracing.SessionMask::IsEqualOrSupersetOf(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1 = ___m0; uint32_t L_2 = L_1.get_m_mask_0(); uint32_t L_3 = __this->get_m_mask_0(); return (bool)((((int32_t)((int32_t)((int32_t)L_0|(int32_t)L_2))) == ((int32_t)L_3))? 1 : 0); } } IL2CPP_EXTERN_C bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD_AdjustorThunk (RuntimeObject * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD(_thisAdjusted, ___m0, method); } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::get_All() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_get_All_m496B5178F530B5516652F0F33CEF01BC9E3DD7B4 (const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0; memset((&L_0), 0, sizeof(L_0)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_0), ((int32_t)15), /*hidden argument*/NULL); return L_0; } } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::FromId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_FromId_m4766E347B5F280891336E8B9B70BD9F4EBD686CC (int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { { int32_t L_0 = ___perEventSourceSessionId0; SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1; memset((&L_1), 0, sizeof(L_1)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_1), ((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))))), /*hidden argument*/NULL); return L_1; } } // System.UInt64 System.Diagnostics.Tracing.SessionMask::ToEventKeywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); return ((int64_t)((int64_t)(((int64_t)((uint64_t)L_0)))<<(int32_t)((int32_t)44))); } } IL2CPP_EXTERN_C uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8(_thisAdjusted, method); } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::FromEventKeywords(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_FromEventKeywords_m90707FEE5D3E1D84057394FAE517EF6B1696D701 (uint64_t ___m0, const RuntimeMethod* method) { { uint64_t L_0 = ___m0; SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1; memset((&L_1), 0, sizeof(L_1)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_1), (((int32_t)((uint32_t)((int64_t)((uint64_t)L_0>>((int32_t)44)))))), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Diagnostics.Tracing.SessionMask::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); int32_t L_1 = ___perEventSourceSessionId0; return (bool)((!(((uint64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_0)))&(int64_t)(((int64_t)((int64_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)31))))))))))) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0); } } IL2CPP_EXTERN_C bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A_AdjustorThunk (RuntimeObject * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A(_thisAdjusted, ___perEventSourceSessionId0, method); } // System.Void System.Diagnostics.Tracing.SessionMask::set_Item(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method) { { bool L_0 = ___value1; if (!L_0) { goto IL_0017; } } { uint32_t L_1 = __this->get_m_mask_0(); int32_t L_2 = ___perEventSourceSessionId0; __this->set_m_mask_0(((int32_t)((int32_t)L_1|(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)31)))))))); return; } IL_0017: { uint32_t L_3 = __this->get_m_mask_0(); int32_t L_4 = ___perEventSourceSessionId0; __this->set_m_mask_0(((int32_t)((int32_t)L_3&(int32_t)((~((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)31)))))))))); return; } } IL2CPP_EXTERN_C void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628_AdjustorThunk (RuntimeObject * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628(_thisAdjusted, ___perEventSourceSessionId0, ___value1, method); } // System.UInt64 System.Diagnostics.Tracing.SessionMask::op_Explicit(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_op_Explicit_m62151A83BD15863B4E030D07FB7621C2540A3CF7 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0 = ___m0; uint32_t L_1 = L_0.get_m_mask_0(); return (((int64_t)((uint64_t)L_1))); } } // System.UInt32 System.Diagnostics.Tracing.SessionMask::op_Explicit(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t SessionMask_op_Explicit_m0098B07CE617722AD1EA9DF898D6539A0EEE19EE (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0 = ___m0; uint32_t L_1 = L_0.get_m_mask_0(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9 (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, ((int32_t)11), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Single[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo_WriteData_m9D1BDFF577F65CAEEAA39E2C630280F3E9B9A306 (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** L_1 = ___value1; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_2 = *((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SingleTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, ((int32_t)11), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo_WriteData_m6AB20CFEE17FABDF830351986D1873B6271A32B9 (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, float* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; float* L_1 = ___value1; float L_2 = *((float*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4 (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte[] System.Diagnostics.Tracing.Statics::MetadataForString(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D (String_t* ___name0, int32_t ___prefixSize1, int32_t ___suffixSize2, int32_t ___additionalSize3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; uint16_t V_1 = 0; { String_t* L_0 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = ___name0; NullCheck(L_1); int32_t L_3 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(18 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_1, L_2); int32_t L_4 = ___prefixSize1; int32_t L_5 = ___suffixSize2; int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)3)), (int32_t)L_4)), (int32_t)L_5)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6); V_0 = L_7; int32_t L_8 = ___additionalSize3; if (((int64_t)L_6 + (int64_t)L_8 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_6 + (int64_t)L_8 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8))) > 65535LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var); V_1 = (((uint16_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8))))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; uint16_t L_10 = V_1; NullCheck(L_9); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_10)))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0; uint16_t L_12 = V_1; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_12>>(int32_t)8)))))); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_13 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_14 = ___name0; String_t* L_15 = ___name0; NullCheck(L_15); int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_15, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0; int32_t L_18 = ___prefixSize1; NullCheck(L_13); VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(26 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_13, L_14, 0, L_16, L_17, ((int32_t)il2cpp_codegen_add((int32_t)2, (int32_t)L_18))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0; return L_19; } } // System.Void System.Diagnostics.Tracing.Statics::EncodeTags(System.Int32,System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453 (int32_t ___tags0, int32_t* ___pos1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata2, const RuntimeMethod* method) { int32_t V_0 = 0; bool V_1 = false; uint8_t V_2 = 0x0; uint8_t G_B3_0 = 0x0; uint8_t G_B2_0 = 0x0; int32_t G_B4_0 = 0; uint8_t G_B4_1 = 0x0; { int32_t L_0 = ___tags0; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)268435455))); } IL_0008: { int32_t L_1 = V_0; V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1>>(int32_t)((int32_t)21)))&(int32_t)((int32_t)127)))))); int32_t L_2 = V_0; V_1 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)2097151)))) <= ((uint32_t)0)))? 1 : 0); uint8_t L_3 = V_2; bool L_4 = V_1; G_B2_0 = L_3; if (L_4) { G_B3_0 = L_3; goto IL_0023; } } { G_B4_0 = 0; G_B4_1 = G_B2_0; goto IL_0028; } IL_0023: { G_B4_0 = ((int32_t)128); G_B4_1 = G_B3_0; } IL_0028: { V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)G_B4_1|(int32_t)(((int32_t)((uint8_t)G_B4_0)))))))); int32_t L_5 = V_0; V_0 = ((int32_t)((int32_t)L_5<<(int32_t)7)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___metadata2; if (!L_6) { goto IL_0038; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___metadata2; int32_t* L_8 = ___pos1; int32_t L_9 = *((int32_t*)L_8); uint8_t L_10 = V_2; NullCheck(L_7); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)L_10); } IL_0038: { int32_t* L_11 = ___pos1; int32_t* L_12 = ___pos1; int32_t L_13 = *((int32_t*)L_12); *((int32_t*)L_11) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); bool L_14 = V_1; if (L_14) { goto IL_0008; } } { return; } } // System.Byte System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE (int32_t ___settingValue0, uint8_t ___defaultValue1, const RuntimeMethod* method) { { int32_t L_0 = ___settingValue0; int32_t L_1 = ___settingValue0; if ((((int32_t)(((int32_t)((uint8_t)L_0)))) == ((int32_t)L_1))) { goto IL_0007; } } { uint8_t L_2 = ___defaultValue1; return L_2; } IL_0007: { int32_t L_3 = ___settingValue0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Int32 System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7 (int32_t ___settingValue10, int32_t ___settingValue21, const RuntimeMethod* method) { { int32_t L_0 = ___settingValue10; int32_t L_1 = ___settingValue10; if ((((int32_t)(((int32_t)((uint8_t)L_0)))) == ((int32_t)L_1))) { goto IL_0007; } } { int32_t L_2 = ___settingValue21; return L_2; } IL_0007: { int32_t L_3 = ___settingValue10; return L_3; } } // System.Void System.Diagnostics.Tracing.Statics::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; if (!L_0) { goto IL_0018; } } { String_t* L_1 = ___name0; NullCheck(L_1); int32_t L_2 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_1, 0, /*hidden argument*/NULL); if ((((int32_t)0) > ((int32_t)L_2))) { goto IL_0018; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_RuntimeMethod_var); } IL_0018: { return; } } // System.Boolean System.Diagnostics.Tracing.Statics::ShouldOverrideFieldName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5 (String_t* ___fieldName0, const RuntimeMethod* method) { { String_t* L_0 = ___fieldName0; NullCheck(L_0); int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) > ((int32_t)2))) { goto IL_0015; } } { String_t* L_2 = ___fieldName0; NullCheck(L_2); Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, 0, /*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)95)))? 1 : 0); } IL_0015: { return (bool)0; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::MakeDataType(System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644 (int32_t ___baseType0, int32_t ___format1, const RuntimeMethod* method) { { int32_t L_0 = ___baseType0; int32_t L_1 = ___format1; return (int32_t)(((int32_t)((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31)))|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)8))))); } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format8(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_001c; } case 1: { goto IL_0030; } case 2: { goto IL_001e; } case 3: { goto IL_0024; } case 4: { goto IL_002a; } } } { goto IL_0030; } IL_001c: { int32_t L_1 = ___native1; return L_1; } IL_001e: { return (int32_t)(((int32_t)516)); } IL_0024: { return (int32_t)(((int32_t)772)); } IL_002a: { return (int32_t)(((int32_t)1028)); } IL_0030: { int32_t L_2 = ___native1; int32_t L_3 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_4 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format16(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_001c; } case 1: { goto IL_002a; } case 2: { goto IL_001e; } case 3: { goto IL_002a; } case 4: { goto IL_0024; } } } { goto IL_002a; } IL_001c: { int32_t L_1 = ___native1; return L_1; } IL_001e: { return (int32_t)(((int32_t)518)); } IL_0024: { return (int32_t)(((int32_t)1030)); } IL_002a: { int32_t L_2 = ___native1; int32_t L_3 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_4 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format32(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_0021; } case 1: { goto IL_002f; } case 2: { goto IL_002f; } case 3: { goto IL_0023; } case 4: { goto IL_0026; } } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)((int32_t)15)))) { goto IL_0029; } } { goto IL_002f; } IL_0021: { int32_t L_2 = ___native1; return L_2; } IL_0023: { return (int32_t)(((int32_t)13)); } IL_0026: { return (int32_t)(((int32_t)20)); } IL_0029: { return (int32_t)(((int32_t)3847)); } IL_002f: { int32_t L_3 = ___native1; int32_t L_4 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_5 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format64(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; if (!L_0) { goto IL_0009; } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_000b; } } { goto IL_000e; } IL_0009: { int32_t L_2 = ___native1; return L_2; } IL_000b: { return (int32_t)(((int32_t)21)); } IL_000e: { int32_t L_3 = ___native1; int32_t L_4 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_5 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::FormatPtr(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; if (!L_0) { goto IL_0009; } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_000b; } } { goto IL_0011; } IL_0009: { int32_t L_2 = ___native1; return L_2; } IL_000b: { IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_HexIntPtrType_2(); return L_3; } IL_0011: { int32_t L_4 = ___native1; int32_t L_5 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_6 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Object System.Diagnostics.Tracing.Statics::CreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___parameters1; RuntimeObject * L_2 = Activator_CreateInstance_mEE50708E1E8AAD4E5021A2FFDB992DDF65727E17(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsValueType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsValueType_mA0D42D4823CA219F808641A80507260D2CC249A1 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsEnum(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_0); return L_1; } } // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> System.Diagnostics.Tracing.Statics::GetProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_1 = Type_GetProperties_mEAE2A4049447E8BD9D18989A80E4C8BC742AE97D(L_0, /*hidden argument*/NULL); return (RuntimeObject*)L_1; } } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetGetMethod(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = ___propInfo0; NullCheck(L_0); MethodInfo_t * L_1 = PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A(L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetDeclaredStaticMethod(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4 (Type_t * ___declaringType0, String_t* ___name1, const RuntimeMethod* method) { { Type_t * L_0 = ___declaringType0; String_t* L_1 = ___name1; NullCheck(L_0); MethodInfo_t * L_2 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_0, L_1, ((int32_t)42), /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Diagnostics.Tracing.Statics::HasCustomAttribute(System.Reflection.PropertyInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55 (PropertyInfo_t * ___propInfo0, Type_t * ___attributeType1, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = ___propInfo0; Type_t * L_1 = ___attributeType1; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, (bool)0); NullCheck(L_2); return (bool)((!(((uint32_t)(((RuntimeArray*)L_2)->max_length)) <= ((uint32_t)0)))? 1 : 0); } } // System.Type[] System.Diagnostics.Tracing.Statics::GetGenericArguments(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(100 /* System.Type[] System.Type::GetGenericArguments() */, L_0); return L_1; } } // System.Type System.Diagnostics.Tracing.Statics::FindEnumerableElementType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; { V_0 = (Type_t *)NULL; Type_t * L_0 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_3 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_001f; } } { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6 = 0; Type_t * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_0 = L_7; goto IL_0064; } IL_001f: { Type_t * L_8 = ___type0; TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * L_9 = (TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 *)il2cpp_codegen_object_new(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18_il2cpp_TypeInfo_var); TypeFilter__ctor_m5F16D7D0AB325EAF8F3DF7D8EFEABD6DC79A5D7F(L_9, NULL, (intptr_t)((intptr_t)Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_RuntimeMethod_var), /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); NullCheck(L_8); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = VirtFuncInvoker2< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 *, RuntimeObject * >::Invoke(47 /* System.Type[] System.Type::FindInterfaces(System.Reflection.TypeFilter,System.Object) */, L_8, L_9, L_11); V_1 = L_12; V_2 = 0; goto IL_005e; } IL_0040: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = V_1; int32_t L_14 = V_2; NullCheck(L_13); int32_t L_15 = L_14; Type_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_3 = L_16; Type_t * L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_18 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_17, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_18) { goto IL_0051; } } { V_0 = (Type_t *)NULL; goto IL_0064; } IL_0051: { Type_t * L_19 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9(L_19, /*hidden argument*/NULL); NullCheck(L_20); int32_t L_21 = 0; Type_t * L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); V_0 = L_22; int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_005e: { int32_t L_24 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_1; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0040; } } IL_0064: { Type_t * L_26 = V_0; return L_26; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsGenericMatch(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699 (Type_t * ___type0, RuntimeObject * ___openType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_001a; } } { Type_t * L_2 = ___type0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(101 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2); RuntimeObject * L_4 = ___openType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, ((Type_t *)CastclassClass((RuntimeObject*)L_4, Type_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_001a: { return (bool)0; } } // System.Delegate System.Diagnostics.Tracing.Statics::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Statics_CreateDelegate_mF1C37CC7EA4839A092250B6E298BC5D6155F51E6 (Type_t * ___delegateType0, MethodInfo_t * ___methodInfo1, const RuntimeMethod* method) { { Type_t * L_0 = ___delegateType0; MethodInfo_t * L_1 = ___methodInfo1; Delegate_t * L_2 = Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.Statics::GetTypeInfoInstance(System.Type,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6 (Type_t * ___dataType0, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL; { Type_t * L_0 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_001a; } } { TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * L_4 = TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_RuntimeMethod_var); V_0 = L_4; goto IL_0087; } IL_001a: { Type_t * L_5 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL); bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0034; } } { TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * L_9 = TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_RuntimeMethod_var); V_0 = L_9; goto IL_0087; } IL_0034: { Type_t * L_10 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_004e; } } { TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * L_14 = TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F_RuntimeMethod_var); V_0 = L_14; goto IL_0087; } IL_004e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (TraceLoggingTypeInfo_1_tDB0DA2DB310802F94B0A0088822973F4FC8CE2EC_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = L_17; Type_t * L_19 = ___dataType0; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_19); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19); NullCheck(L_16); Type_t * L_20 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(96 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_16, L_18); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); MethodInfo_t * L_21 = Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4(L_20, _stringLiteralC1FC191BD74A6F60CD1113917CCCF33F6EB445B9, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_22; List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_24 = ___recursionCheck1; NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_24); NullCheck(L_21); RuntimeObject * L_25 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_21, NULL, L_23, /*hidden argument*/NULL); V_0 = ((TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)CastclassClass((RuntimeObject*)L_25, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F_il2cpp_TypeInfo_var)); } IL_0087: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_26 = V_0; return L_26; } } // System.Void System.Diagnostics.Tracing.Statics::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; int32_t G_B6_0 = 0; int32_t G_B9_0 = 0; { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)8))) { goto IL_000b; } } { G_B3_0 = 7; goto IL_000d; } IL_000b: { G_B3_0 = ((int32_t)9); } IL_000d: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_IntPtrType_0(G_B3_0); int32_t L_1 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { G_B6_0 = 8; goto IL_001f; } IL_001d: { G_B6_0 = ((int32_t)10); } IL_001f: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_UIntPtrType_1(G_B6_0); int32_t L_2 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)8))) { goto IL_0030; } } { G_B9_0 = ((int32_t)20); goto IL_0032; } IL_0030: { G_B9_0 = ((int32_t)21); } IL_0032: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_HexIntPtrType_2(G_B9_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.StringTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67 (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)22), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.StringTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo_WriteData_mA87C3114049DFF26BA4F0C2505B303CCADD60202 (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, String_t** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; String_t** L_1 = ___value1; String_t* L_2 = *((String_t**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Object System.Diagnostics.Tracing.StringTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = ___value0; RuntimeObject * L_1 = TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13(__this, L_0, /*hidden argument*/NULL); V_0 = L_1; RuntimeObject * L_2 = V_0; if (L_2) { goto IL_0011; } } { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0011: { RuntimeObject * L_3 = V_0; return L_3; } } // System.Void System.Diagnostics.Tracing.StringTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)9), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo_WriteData_m81F5FADA9F320944D55D956560A45A00DFC8A938 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_1 = ___value1; int64_t L_2 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_1, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Diagnostics.Tracing.TplEtwProvider::get_Debug() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TplEtwProvider_get_Debug_mE5DDB49768D1B2F09A611B7AF9D24B09149322CB (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method) { { bool L_0 = EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC(__this, 5, (((int64_t)((int64_t)1))), /*hidden argument*/NULL); return L_0; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::DebugFacilityMessage(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_DebugFacilityMessage_mEAF4EBC66501BB729030C9B3EB2FC9EBD9DB4493 (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, String_t* ___Facility0, String_t* ___Message1, const RuntimeMethod* method) { { String_t* L_0 = ___Facility0; String_t* L_1 = ___Message1; EventSource_WriteEvent_mE27A6FC640BF894A83640A57FD16C9C26AB9FDF9(__this, 1, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::DebugFacilityMessage1(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_DebugFacilityMessage1_mAD7516D94C2F2699CAE46D17BD3D763AC2300F3E (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, String_t* ___Facility0, String_t* ___Message1, String_t* ___Arg2, const RuntimeMethod* method) { { String_t* L_0 = ___Facility0; String_t* L_1 = ___Message1; String_t* L_2 = ___Arg2; EventSource_WriteEvent_m09CF0FC5F066EF4464A34539CE25033532AB6EC4(__this, 2, L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::SetActivityId(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, Guid_t ___Id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; Guid_t L_2 = ___Id0; Guid_t L_3 = L_2; RuntimeObject * L_4 = Box(Guid_t_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_4); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4); EventSource_WriteEvent_m07CFBC104154E61897EFBA392944181E34C0200F(__this, 3, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var); EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A(__this, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * L_0 = (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E *)il2cpp_codegen_object_new(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var); TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B(L_0, /*hidden argument*/NULL); ((TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields*)il2cpp_codegen_static_fields_for(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var))->set_Log_29(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingDataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = DataCollector_BeginBufferedArray_m807DC271CDB214E02B63EA8790080AB3C45779B5((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), /*hidden argument*/NULL); return L_0; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::EndBufferedArray(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___bookmark0, int32_t ___count1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___bookmark0; int32_t L_1 = ___count1; DataCollector_EndBufferedArray_m5EB7D38BB8818E569778C5C57DAEE5128AA4634F((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, intptr_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uintptr_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); int32_t L_0 = UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B(/*hidden argument*/NULL); DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Guid_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), ((int32_t)16), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; String_t* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; String_t* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { String_t* L_0 = ___value0; String_t* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_0013; } } { String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL); G_B3_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)2)); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0014; } IL_0013: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0014: { DataCollector_AddBinary_mAE50602915B73FC52AAAD2A3691AA7392AD7FFAC((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddBinary_mF9695153355117D745C9BAEAD8EA656AA26CCE9C((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048_MetadataUsageId); s_Il2CppMethodInitialized = true; } BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___value0; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.SByte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989_MetadataUsageId); s_Il2CppMethodInitialized = true; } SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_0 = ___value0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_0 = ___value0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = ___value0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___value0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___value0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___value0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___value0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.IntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_0 = ___value0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { int32_t L_3 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UIntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452_MetadataUsageId); s_Il2CppMethodInitialized = true; } UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_0 = ___value0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); int32_t L_3 = UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B(/*hidden argument*/NULL); DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143_MetadataUsageId); s_Il2CppMethodInitialized = true; } SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___value0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Double[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19_MetadataUsageId); s_Il2CppMethodInitialized = true; } DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = ___value0; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98_MetadataUsageId); s_Il2CppMethodInitialized = true; } CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___value0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Guid[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A_MetadataUsageId); s_Il2CppMethodInitialized = true; } GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_0 = ___value0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, ((int32_t)16), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA *)il2cpp_codegen_object_new(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var); TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C(L_0, /*hidden argument*/NULL); ((TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields*)il2cpp_codegen_static_fields_for(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var))->set_Instance_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m8463F3C12A26246CDBCED020138DE3188B3D37C7 (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, const RuntimeMethod* method) { { int32_t L_0 = ___tags1; String_t* L_1 = ___name0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_3 = TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9(L_2, /*hidden argument*/NULL); TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F(__this, L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; int32_t V_1 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_2 = NULL; String_t* V_3 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_RuntimeMethod_var); } IL_0014: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = ___paramInfos2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_3 = TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D(__this, L_2, /*hidden argument*/NULL); __this->set_typeInfos_0(L_3); String_t* L_4 = ___name0; __this->set_name_1(L_4); int32_t L_5 = ___tags1; __this->set_tags_2(L_5); __this->set_level_3((uint8_t)5); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_6 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC(L_6, /*hidden argument*/NULL); V_0 = L_6; V_1 = 0; goto IL_00af; } IL_0040: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_7 = __this->get_typeInfos_0(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_2 = L_10; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_11 = V_2; NullCheck(L_11); int32_t L_12 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_11, /*hidden argument*/NULL); uint8_t L_13 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); uint8_t L_14 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_12, L_13, /*hidden argument*/NULL); __this->set_level_3(L_14); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_15 = V_2; NullCheck(L_15); int32_t L_16 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_15, /*hidden argument*/NULL); uint8_t L_17 = __this->get_opcode_4(); uint8_t L_18 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_16, L_17, /*hidden argument*/NULL); __this->set_opcode_4(L_18); int64_t L_19 = __this->get_keywords_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_20 = V_2; NullCheck(L_20); int64_t L_21 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_20, /*hidden argument*/NULL); __this->set_keywords_5(((int64_t)((int64_t)L_19|(int64_t)L_21))); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = ___paramInfos2; int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = L_23; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); NullCheck(L_25); String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_25); V_3 = L_26; String_t* L_27 = V_3; bool L_28 = Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5(L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_00a2; } } { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_29 = V_2; NullCheck(L_29); String_t* L_30 = TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline(L_29, /*hidden argument*/NULL); V_3 = L_30; } IL_00a2: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_31 = V_2; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_32 = V_0; String_t* L_33 = V_3; NullCheck(L_31); VirtActionInvoker3< TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *, String_t*, int32_t >::Invoke(4 /* System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) */, L_31, L_32, L_33, 0); int32_t L_34 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_00af: { int32_t L_35 = V_1; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_36 = __this->get_typeInfos_0(); NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))))) { goto IL_0040; } } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_37 = V_0; NullCheck(L_37); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D(L_37, /*hidden argument*/NULL); __this->set_typeMetadata_6(L_38); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_39 = V_0; NullCheck(L_39); int32_t L_40 = TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3(L_39, /*hidden argument*/NULL); __this->set_scratchSize_7(L_40); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_41 = V_0; NullCheck(L_41); int32_t L_42 = TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526(L_41, /*hidden argument*/NULL); __this->set_dataCount_8(L_42); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_43 = V_0; NullCheck(L_43); int32_t L_44 = TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A(L_43, /*hidden argument*/NULL); __this->set_pinCount_9(L_44); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.Diagnostics.Tracing.EventTags,System.String,System.Diagnostics.Tracing.TraceLoggingTypeInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, int32_t ___tags0, String_t* ___defaultName1, TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_3 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___defaultName1; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF0FD5DE40D5624DD5531FCD827C27F5C7421A6CC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_RuntimeMethod_var); } IL_0014: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_2 = ___typeInfos2; __this->set_typeInfos_0(L_2); String_t* L_3 = ___defaultName1; __this->set_name_1(L_3); int32_t L_4 = ___tags0; __this->set_tags_2(L_4); __this->set_level_3((uint8_t)5); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_5 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC(L_5, /*hidden argument*/NULL); V_0 = L_5; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = ___typeInfos2; V_1 = L_6; V_2 = 0; goto IL_008e; } IL_003c: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_7 = V_1; int32_t L_8 = V_2; NullCheck(L_7); int32_t L_9 = L_8; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_3 = L_10; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_11 = V_3; NullCheck(L_11); int32_t L_12 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_11, /*hidden argument*/NULL); uint8_t L_13 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); uint8_t L_14 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_12, L_13, /*hidden argument*/NULL); __this->set_level_3(L_14); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_15 = V_3; NullCheck(L_15); int32_t L_16 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_15, /*hidden argument*/NULL); uint8_t L_17 = __this->get_opcode_4(); uint8_t L_18 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_16, L_17, /*hidden argument*/NULL); __this->set_opcode_4(L_18); int64_t L_19 = __this->get_keywords_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_20 = V_3; NullCheck(L_20); int64_t L_21 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_20, /*hidden argument*/NULL); __this->set_keywords_5(((int64_t)((int64_t)L_19|(int64_t)L_21))); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_22 = V_3; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_23 = V_0; NullCheck(L_22); VirtActionInvoker3< TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *, String_t*, int32_t >::Invoke(4 /* System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) */, L_22, L_23, (String_t*)NULL, 0); int32_t L_24 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_008e: { int32_t L_25 = V_2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_26 = V_1; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))))) { goto IL_003c; } } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_27 = V_0; NullCheck(L_27); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D(L_27, /*hidden argument*/NULL); __this->set_typeMetadata_6(L_28); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_29 = V_0; NullCheck(L_29); int32_t L_30 = TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3(L_29, /*hidden argument*/NULL); __this->set_scratchSize_7(L_30); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_31 = V_0; NullCheck(L_31); int32_t L_32 = TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526(L_31, /*hidden argument*/NULL); __this->set_dataCount_8(L_32); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_33 = V_0; NullCheck(L_33); int32_t L_34 = TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A(L_33, /*hidden argument*/NULL); __this->set_pinCount_9(L_34); return; } } // System.String System.Diagnostics.Tracing.TraceLoggingEventTypes::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceLoggingEventTypes_get_Name_m582D5F0FF940D1585A968EF5D1625B14D8E055FA (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_1(); return L_0; } } // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingEventTypes::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingEventTypes_get_Tags_mEA1CB6CABA32F0B2FCDEAB82ACC7E3AE153B5E2C (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_2(); return L_0; } } // System.Diagnostics.Tracing.NameInfo System.Diagnostics.Tracing.TraceLoggingEventTypes::GetNameInfo(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756 (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756_MetadataUsageId); s_Il2CppMethodInitialized = true; } NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * V_0 = NULL; { ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * L_0 = __this->get_address_of_nameInfos_10(); String_t* L_1 = ___name0; int32_t L_2 = ___tags1; KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 L_3; memset((&L_3), 0, sizeof(L_3)); KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA((&L_3), L_1, L_2, /*hidden argument*/KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA_RuntimeMethod_var); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_4 = ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2((ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *)L_0, L_3, /*hidden argument*/ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2_RuntimeMethod_var); V_0 = L_4; NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_5 = V_0; if (L_5) { goto IL_0031; } } { ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * L_6 = __this->get_address_of_nameInfos_10(); String_t* L_7 = ___name0; int32_t L_8 = ___tags1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get_typeMetadata_6(); NullCheck(L_9); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_10 = (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C *)il2cpp_codegen_object_new(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE(L_10, L_7, L_8, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), /*hidden argument*/NULL); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_11 = ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3((ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *)L_6, L_10, /*hidden argument*/ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3_RuntimeMethod_var); V_0 = L_11; } IL_0031: { NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_12 = V_0; return L_12; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_0 = ___paramInfos0; 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, _stringLiteral8CCFD0DE77C0784114B412169491697DF81B4CCD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_RuntimeMethod_var); } IL_000e: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = ___paramInfos0; NullCheck(L_2); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_3 = (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)il2cpp_codegen_object_new(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var); List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740(L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var); V_0 = L_3; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_4 = ___paramInfos0; NullCheck(L_4); TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_5 = (TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)SZArrayNew(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_1 = L_5; V_2 = 0; goto IL_0039; } IL_0024: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = V_1; int32_t L_7 = V_2; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_8 = ___paramInfos0; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); NullCheck(L_11); Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_11); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_13 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_14 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_14); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_14); int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0039: { int32_t L_16 = V_2; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_17 = ___paramInfos0; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0024; } } { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_18 = V_1; return L_18; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___types0; 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, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types0; NullCheck(L_2); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_3 = (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)il2cpp_codegen_object_new(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var); List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740(L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var); V_0 = L_3; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___types0; NullCheck(L_4); TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_5 = (TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)SZArrayNew(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_1 = L_5; V_2 = 0; goto IL_0034; } IL_0024: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = V_1; int32_t L_7 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = ___types0; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; Type_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_12 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_13 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_11, L_12, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_13); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_13); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0034: { int32_t L_15 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = ___types0; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))))) { goto IL_0024; } } { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_17 = V_1; return L_17; } } #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.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F *)il2cpp_codegen_object_new(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F_il2cpp_TypeInfo_var); Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6(L_0, /*hidden argument*/NULL); __this->set_impl_0(L_0); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___other0, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___group1, const RuntimeMethod* method) { { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___other0; NullCheck(L_0); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_1 = L_0->get_impl_0(); __this->set_impl_0(L_1); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_2 = ___group1; __this->set_currentGroup_1(L_2); return; } } // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_3(); return L_0; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::set_Tags(System.Diagnostics.Tracing.EventFieldTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CTagsU3Ek__BackingField_3(L_0); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_ScratchSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int16_t L_1 = L_0->get_scratchSize_1(); return L_1; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_DataCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int8_t L_1 = L_0->get_dataCount_2(); return L_1; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_PinCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int8_t L_1 = L_0->get_pinCount_3(); return L_1; } } // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_BeginningBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Diagnostics.Tracing.TraceLoggingMetadataCollector System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddGroup(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * V_1 = NULL; { V_0 = __this; String_t* L_0 = ___name0; if (L_0) { goto IL_000d; } } { bool L_1 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_0031; } } IL_000d: { String_t* L_2 = ___name0; int32_t L_3 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_4 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_5 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_5, L_2, ((int32_t)24), L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_6 = V_1; TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_6, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_7 = V_1; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_8 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D(L_8, __this, L_7, /*hidden argument*/NULL); V_0 = L_8; } IL_0031: { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_9 = V_0; return L_9; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddScalar(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___type1; V_1 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)3))) { case 0: { goto IL_006b; } case 1: { goto IL_006b; } case 2: { goto IL_006f; } case 3: { goto IL_006f; } case 4: { goto IL_0073; } case 5: { goto IL_0073; } case 6: { goto IL_0077; } case 7: { goto IL_0077; } case 8: { goto IL_0073; } case 9: { goto IL_0077; } case 10: { goto IL_0073; } case 11: { goto IL_0080; } case 12: { goto IL_007b; } case 13: { goto IL_0080; } case 14: { goto IL_0077; } case 15: { goto IL_007b; } case 16: { goto IL_0080; } case 17: { goto IL_0073; } case 18: { goto IL_0077; } } } { int32_t L_2 = V_1; if ((((int32_t)L_2) == ((int32_t)((int32_t)516)))) { goto IL_006b; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)518)))) { goto IL_006f; } } { goto IL_0080; } IL_006b: { V_0 = 1; goto IL_008b; } IL_006f: { V_0 = 2; goto IL_008b; } IL_0073: { V_0 = 4; goto IL_008b; } IL_0077: { V_0 = 8; goto IL_008b; } IL_007b: { V_0 = ((int32_t)16); goto IL_008b; } IL_0080: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_RuntimeMethod_var); } IL_008b: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_5 = __this->get_impl_0(); int32_t L_6 = V_0; NullCheck(L_5); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_5, L_6, /*hidden argument*/NULL); String_t* L_7 = ___name0; int32_t L_8 = ___type1; int32_t L_9 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_10 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_11 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_11, L_7, L_8, L_9, L_10, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_11, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddBinary(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___type1; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)((int32_t)14)))) { goto IL_001c; } } { int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)22)))) > ((uint32_t)1)))) { goto IL_001c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_RuntimeMethod_var); } IL_001c: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_4 = __this->get_impl_0(); NullCheck(L_4); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_4, 2, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_5 = __this->get_impl_0(); NullCheck(L_5); Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(L_5, /*hidden argument*/NULL); String_t* L_6 = ___name0; int32_t L_7 = ___type1; int32_t L_8 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_9 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_10 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_10, L_6, L_7, L_8, L_9, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_10, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddArray(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___type1; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_007c; } case 1: { goto IL_007c; } case 2: { goto IL_007c; } case 3: { goto IL_007c; } case 4: { goto IL_007c; } case 5: { goto IL_007c; } case 6: { goto IL_007c; } case 7: { goto IL_007c; } case 8: { goto IL_007c; } case 9: { goto IL_007c; } case 10: { goto IL_007c; } case 11: { goto IL_007c; } case 12: { goto IL_007c; } case 13: { goto IL_0071; } case 14: { goto IL_007c; } case 15: { goto IL_0071; } case 16: { goto IL_007c; } case 17: { goto IL_0071; } case 18: { goto IL_0071; } case 19: { goto IL_007c; } case 20: { goto IL_007c; } } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)((int32_t)516)))) { goto IL_007c; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)518)))) { goto IL_007c; } } IL_0071: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var); } IL_007c: { bool L_5 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_0094; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_7 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var); } IL_0094: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_8 = __this->get_impl_0(); NullCheck(L_8); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_8, 2, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_9 = __this->get_impl_0(); NullCheck(L_9); Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(L_9, /*hidden argument*/NULL); String_t* L_10 = ___name0; int32_t L_11 = ___type1; int32_t L_12 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_13 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_13, L_10, L_11, L_12, (bool)1, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_13, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_2 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_RuntimeMethod_var); } IL_0019: { __this->set_bufferedArrayFieldCount_2(0); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); NullCheck(L_3); Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE(L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::EndBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB9A1EDEC2BC6B07157F69A2748CCE3DF4AA46053, /*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, TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_RuntimeMethod_var); } IL_0019: { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); NullCheck(L_3); Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3(L_3, /*hidden argument*/NULL); return; } } // System.Byte[] System.Diagnostics.Tracing.TraceLoggingMetadataCollector::GetMetadata() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int32_t L_1 = Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD(L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; NullCheck(L_3); Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD(L_3, L_4, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; return L_5; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddField(System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___fieldMetadata0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline(__this, 0, /*hidden argument*/NULL); int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); __this->set_bufferedArrayFieldCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_1 = __this->get_impl_0(); NullCheck(L_1); List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_2 = L_1->get_fields_0(); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_3 = ___fieldMetadata0; NullCheck(L_2); List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81(L_2, L_3, /*hidden argument*/List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81_RuntimeMethod_var); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_4 = __this->get_currentGroup_1(); if (!L_4) { goto IL_0039; } } { FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_5 = __this->get_currentGroup_1(); NullCheck(L_5); FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF(L_5, /*hidden argument*/NULL); } IL_0039: { 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.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_0035; } } { bool L_1 = __this->get_scalar_5(); if (L_1) { goto IL_001f; } } { int8_t L_2 = __this->get_dataCount_2(); if (((int64_t)L_2 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_2 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); __this->set_dataCount_2((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)))))); } IL_001f: { __this->set_scalar_5((bool)1); int16_t L_3 = __this->get_scratchSize_1(); int32_t L_4 = ___size0; if (((int64_t)L_3 + (int64_t)L_4 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_3 + (int64_t)L_4 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) > 32767LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); __this->set_scratchSize_1((((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)))))); } IL_0035: { return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::AddNonscalar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_002d; } } { __this->set_scalar_5((bool)0); int8_t L_1 = __this->get_pinCount_3(); if (((int64_t)L_1 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_1 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); __this->set_pinCount_3((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)))))); int8_t L_2 = __this->get_dataCount_2(); if (((int64_t)L_2 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_2 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); __this->set_dataCount_2((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)))))); } IL_002d: { return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::BeginBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_000e; } } { Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(__this, /*hidden argument*/NULL); } IL_000e: { int32_t L_1 = __this->get_bufferNesting_4(); __this->set_bufferNesting_4(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::EndBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferNesting_4(); __this->set_bufferNesting_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::Encode(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE V_1; memset((&V_1), 0, sizeof(V_1)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = 0; List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_0 = __this->get_fields_0(); NullCheck(L_0); Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE L_1 = List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498(L_0, /*hidden argument*/List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498_RuntimeMethod_var); V_1 = L_1; } IL_000e: try { // begin try (depth: 1) { goto IL_001f; } IL_0010: { FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_2 = Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_inline((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_RuntimeMethod_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___metadata0; NullCheck(L_2); FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A(L_2, (int32_t*)(&V_0), L_3, /*hidden argument*/NULL); } IL_001f: { bool L_4 = Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0_RuntimeMethod_var); if (L_4) { goto IL_0010; } } IL_0028: { IL2CPP_LEAVE(0x38, FINALLY_002a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002a; } FINALLY_002a: { // begin finally (depth: 1) Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC_RuntimeMethod_var); IL2CPP_END_FINALLY(42) } // end finally (depth: 1) IL2CPP_CLEANUP(42) { IL2CPP_JUMP_TBL(0x38, IL_0038) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0038: { int32_t L_5 = V_0; return L_5; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_0 = (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *)il2cpp_codegen_object_new(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_il2cpp_TypeInfo_var); List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1(L_0, /*hidden argument*/List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1_RuntimeMethod_var); __this->set_fields_0(L_0); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, Type_t * ___dataType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_level_2((-1)); __this->set_opcode_3((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; 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_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_RuntimeMethod_var); } IL_0028: { Type_t * L_3 = ___dataType0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); __this->set_name_0(L_4); Type_t * L_5 = ___dataType0; __this->set_dataType_5(L_5); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::.ctor(System.Type,System.String,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventOpcode,System.Diagnostics.Tracing.EventKeywords,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, Type_t * ___dataType0, String_t* ___name1, int32_t ___level2, int32_t ___opcode3, int64_t ___keywords4, int32_t ___tags5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_level_2((-1)); __this->set_opcode_3((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; 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_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var); } IL_0028: { String_t* L_3 = ___name1; if (L_3) { goto IL_0036; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral3841A78AE59725028AE44BB042A13EBB8A621270, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var); } IL_0036: { String_t* L_5 = ___name1; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_5, /*hidden argument*/NULL); String_t* L_6 = ___name1; __this->set_name_0(L_6); int64_t L_7 = ___keywords4; __this->set_keywords_1(L_7); int32_t L_8 = ___level2; __this->set_level_2(L_8); int32_t L_9 = ___opcode3; __this->set_opcode_3(L_9); int32_t L_10 = ___tags5; __this->set_tags_4(L_10); Type_t * L_11 = ___dataType0; __this->set_dataType_5(L_11); return; } } // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Level() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_2(); return L_0; } } // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Opcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_3(); return L_0; } } // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Keywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_keywords_1(); return L_0; } } // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_4(); return L_0; } } // System.Type System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_DataType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TraceLoggingTypeInfo_get_DataType_m90D61A758FD34C646EDED59FF1A40F2B25604FED (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_dataType_5(); return L_0; } } // System.Object System.Diagnostics.Tracing.TraceLoggingTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; 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.Diagnostics.Tracing.TypeAnalysis::.ctor(System.Type,System.Diagnostics.Tracing.EventDataAttribute,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632 (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * __this, Type_t * ___dataType0, EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * ___eventAttrib1, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * V_0 = NULL; RuntimeObject* V_1 = NULL; PropertyInfo_t * V_2 = NULL; MethodInfo_t * V_3 = NULL; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_4 = NULL; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * V_5 = NULL; String_t* V_6 = NULL; PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* V_7 = NULL; int32_t V_8 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_9 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B14_0 = NULL; { __this->set_level_3((-1)); __this->set_opcode_4((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); RuntimeObject* L_1 = Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1(L_0, /*hidden argument*/NULL); List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_2 = (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *)il2cpp_codegen_object_new(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_il2cpp_TypeInfo_var); List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B(L_2, /*hidden argument*/List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B_RuntimeMethod_var); V_0 = L_2; NullCheck(L_1); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo>::GetEnumerator() */, IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F_il2cpp_TypeInfo_var, L_1); V_1 = L_3; } IL_0026: try { // begin try (depth: 1) { goto IL_00d7; } IL_002b: { RuntimeObject* L_4 = V_1; NullCheck(L_4); PropertyInfo_t * L_5 = InterfaceFuncInvoker0< PropertyInfo_t * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Reflection.PropertyInfo>::get_Current() */, IEnumerator_1_t537D797E2644AF9046B1E4CAAC405D8CE9D01534_il2cpp_TypeInfo_var, L_4); V_2 = L_5; PropertyInfo_t * L_6 = V_2; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (EventIgnoreAttribute_tB6631ED83A9E76708A9D3B0E9B945A4B4953F67A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_9 = Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55(L_6, L_8, /*hidden argument*/NULL); if (L_9) { goto IL_00d7; } } IL_0047: { PropertyInfo_t * L_10 = V_2; NullCheck(L_10); bool L_11 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_10); if (!L_11) { goto IL_00d7; } } IL_0052: { PropertyInfo_t * L_12 = V_2; NullCheck(L_12); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_12); NullCheck(L_13); if ((((RuntimeArray*)L_13)->max_length)) { goto IL_00d7; } } IL_005b: { PropertyInfo_t * L_14 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); MethodInfo_t * L_15 = Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4(L_14, /*hidden argument*/NULL); V_3 = L_15; MethodInfo_t * L_16 = V_3; bool L_17 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_16, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (L_17) { goto IL_00d7; } } IL_006b: { MethodInfo_t * L_18 = V_3; NullCheck(L_18); bool L_19 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00d7; } } IL_0073: { MethodInfo_t * L_20 = V_3; NullCheck(L_20); bool L_21 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00d7; } } IL_007b: { PropertyInfo_t * L_22 = V_2; NullCheck(L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_22); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_24 = ___recursionCheck2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_25 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_23, L_24, /*hidden argument*/NULL); V_4 = L_25; PropertyInfo_t * L_26 = V_2; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_27 = Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17(L_26, /*hidden argument*/Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17_RuntimeMethod_var); V_5 = L_27; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_28 = V_5; if (!L_28) { goto IL_009e; } } IL_0095: { EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_29 = V_5; NullCheck(L_29); String_t* L_30 = EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00bc; } } IL_009e: { PropertyInfo_t * L_31 = V_2; NullCheck(L_31); String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_31); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_33 = Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5(L_32, /*hidden argument*/NULL); if (L_33) { goto IL_00b3; } } IL_00ab: { PropertyInfo_t * L_34 = V_2; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_34); G_B14_0 = L_35; goto IL_00c3; } IL_00b3: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_36 = V_4; NullCheck(L_36); String_t* L_37 = TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline(L_36, /*hidden argument*/NULL); G_B14_0 = L_37; goto IL_00c3; } IL_00bc: { EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_38 = V_5; NullCheck(L_38); String_t* L_39 = EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline(L_38, /*hidden argument*/NULL); G_B14_0 = L_39; } IL_00c3: { V_6 = G_B14_0; List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_40 = V_0; String_t* L_41 = V_6; MethodInfo_t * L_42 = V_3; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_43 = V_4; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_44 = V_5; PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * L_45 = (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A *)il2cpp_codegen_object_new(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A_il2cpp_TypeInfo_var); PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC(L_45, L_41, L_42, L_43, L_44, /*hidden argument*/NULL); NullCheck(L_40); List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286(L_40, L_45, /*hidden argument*/List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286_RuntimeMethod_var); } IL_00d7: { RuntimeObject* L_46 = V_1; NullCheck(L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_46); if (L_47) { goto IL_002b; } } IL_00e2: { IL2CPP_LEAVE(0xEE, FINALLY_00e4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e4; } FINALLY_00e4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_1; if (!L_48) { goto IL_00ed; } } IL_00e7: { RuntimeObject* L_49 = V_1; NullCheck(L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_49); } IL_00ed: { IL2CPP_END_FINALLY(228) } } // end finally (depth: 1) IL2CPP_CLEANUP(228) { IL2CPP_JUMP_TBL(0xEE, IL_00ee) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ee: { List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_50 = V_0; NullCheck(L_50); PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_51 = List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C(L_50, /*hidden argument*/List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C_RuntimeMethod_var); __this->set_properties_0(L_51); PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_52 = __this->get_properties_0(); V_7 = L_52; V_8 = 0; goto IL_0171; } IL_0107: { PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_53 = V_7; int32_t L_54 = V_8; NullCheck(L_53); int32_t L_55 = L_54; PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); NullCheck(L_56); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_57 = L_56->get_typeInfo_2(); V_9 = L_57; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_58 = V_9; NullCheck(L_58); int32_t L_59 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_58, /*hidden argument*/NULL); int32_t L_60 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_61 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_59, L_60, /*hidden argument*/NULL); __this->set_level_3(L_61); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_62 = V_9; NullCheck(L_62); int32_t L_63 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_62, /*hidden argument*/NULL); int32_t L_64 = __this->get_opcode_4(); int32_t L_65 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_63, L_64, /*hidden argument*/NULL); __this->set_opcode_4(L_65); int64_t L_66 = __this->get_keywords_2(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_67 = V_9; NullCheck(L_67); int64_t L_68 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_67, /*hidden argument*/NULL); __this->set_keywords_2(((int64_t)((int64_t)L_66|(int64_t)L_68))); int32_t L_69 = __this->get_tags_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_70 = V_9; NullCheck(L_70); int32_t L_71 = TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline(L_70, /*hidden argument*/NULL); __this->set_tags_5(((int32_t)((int32_t)L_69|(int32_t)L_71))); int32_t L_72 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1)); } IL_0171: { int32_t L_73 = V_8; PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_74 = V_7; NullCheck(L_74); if ((((int32_t)L_73) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length))))))) { goto IL_0107; } } { EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_75 = ___eventAttrib1; if (!L_75) { goto IL_01dc; } } { EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_76 = ___eventAttrib1; NullCheck(L_76); int32_t L_77 = EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline(L_76, /*hidden argument*/NULL); int32_t L_78 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_79 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_77, L_78, /*hidden argument*/NULL); __this->set_level_3(L_79); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_80 = ___eventAttrib1; NullCheck(L_80); int32_t L_81 = EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline(L_80, /*hidden argument*/NULL); int32_t L_82 = __this->get_opcode_4(); int32_t L_83 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_81, L_82, /*hidden argument*/NULL); __this->set_opcode_4(L_83); int64_t L_84 = __this->get_keywords_2(); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_85 = ___eventAttrib1; NullCheck(L_85); int64_t L_86 = EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline(L_85, /*hidden argument*/NULL); __this->set_keywords_2(((int64_t)((int64_t)L_84|(int64_t)L_86))); int32_t L_87 = __this->get_tags_5(); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_88 = ___eventAttrib1; NullCheck(L_88); int32_t L_89 = EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline(L_88, /*hidden argument*/NULL); __this->set_tags_5(((int32_t)((int32_t)L_87|(int32_t)L_89))); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_90 = ___eventAttrib1; NullCheck(L_90); String_t* L_91 = EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline(L_90, /*hidden argument*/NULL); __this->set_name_1(L_91); } IL_01dc: { String_t* L_92 = __this->get_name_1(); if (L_92) { goto IL_01f0; } } { Type_t * L_93 = ___dataType0; NullCheck(L_93); String_t* L_94 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_93); __this->set_name_1(L_94); } IL_01f0: { 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.Diagnostics.Tracing.UInt16ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 6, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt16[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo_WriteData_m4B7BFF050CEBE1B0A0A3D81240B5A295992A5015 (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** L_1 = ___value1; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = *((UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 6, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo_WriteData_mFACB0FFE18C3653D08F40728CDC7BE4E5E97D11E (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint16_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint16_t* L_1 = ___value1; int32_t L_2 = *((uint16_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6(L_0, (uint16_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 8, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt32[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo_WriteData_mF0956C58360D9405F0AA117F12F567CD257FF309 (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** L_1 = ___value1; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = *((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030 (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 8, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo_WriteData_mEA4FBF3A424F64E5F6A8B7EA2370DEFE1AF3D0B1 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint32_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint32_t* L_1 = ___value1; int32_t L_2 = *((uint32_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205 (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)10), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt64[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo_WriteData_m13DA739D1DD4B70DB4A80AAC44D9DEDB9D471241 (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** L_1 = ___value1; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = *((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47 (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)10), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo_WriteData_m20A3AC76C851EC7AFA4737F59248FEF69E651767 (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint64_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint64_t* L_1 = ___value1; int64_t L_2 = *((int64_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559 (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_UIntPtrType_1(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UIntPtr[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo_WriteData_m958B95A4D47D568FC84835595F1DF258A40B972B (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E** L_1 = ___value1; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_2 = *((UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601 (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792 (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_UIntPtrType_1(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UIntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo_WriteData_mCCB7DC6B9E441D3F520F08A2031F987DE6F33223 (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uintptr_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uintptr_t* L_1 = ___value1; NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086(L_0, ((*(L_1))), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.DivideByZeroException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5 (DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0468E3044BB96C27C2B264BCEDCDBC4DD3B9345C, /*hidden argument*/NULL); ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147352558), /*hidden argument*/NULL); return; } } // System.Void System.DivideByZeroException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m1C99D2A83A28CAF0EFB629727B561F833A1DB13F (DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; ArithmeticException__ctor_mE39E53B845DB39374DFC9B613B87342A4D05C672(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.DllNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral39BEA6DEDC2EA02EF7433B14291DB0C8B3326642, /*hidden argument*/NULL); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233052), /*hidden argument*/NULL); return; } } // System.Void System.DllNotFoundException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_m10DFBF836175342A3DE8B778EE5EFC439C3BE8F0 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233052), /*hidden argument*/NULL); return; } } // System.Void System.DllNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_m814CD75482C2010BF3FEA4F5E213C73EDAD87472 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Double::IsPositiveInfinity(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B (double ___d0, const RuntimeMethod* method) { { double L_0 = ___d0; if ((!(((double)L_0) == ((double)(std::numeric_limits<double>::infinity()))))) { goto IL_000e; } } { return (bool)1; } IL_000e: { return (bool)0; } } // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method) { { int64_t L_0 = *((int64_t*)(((uintptr_t)(&___d0)))); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)(std::numeric_limits<int64_t>::max)())))) <= ((uint64_t)((int64_t)9218868437227405312LL))))? 1 : 0); } } // System.Int32 System.Double::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5 (double* __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))) { goto IL_0040; } } { RuntimeObject * L_2 = ___value0; V_0 = ((*(double*)((double*)UnBox(L_2, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))); double L_3 = *((double*)__this); double L_4 = V_0; if ((!(((double)L_3) < ((double)L_4)))) { goto IL_001b; } } { return (-1); } IL_001b: { double L_5 = *((double*)__this); double L_6 = V_0; if ((!(((double)L_5) > ((double)L_6)))) { goto IL_0022; } } { return 1; } IL_0022: { double L_7 = *((double*)__this); double L_8 = V_0; if ((!(((double)L_7) == ((double)L_8)))) { goto IL_0029; } } { return 0; } IL_0029: { double L_9 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_10 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_003e; } } { double L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_12 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_003c; } } { return (-1); } IL_003c: { return 0; } IL_003e: { return 1; } IL_0040: { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFFAAC6B1A9A0C24D7EF00A22A84CC2405882AADF, /*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, Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_RuntimeMethod_var); } } IL2CPP_EXTERN_C int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5(_thisAdjusted, ___value0, method); } // System.Int32 System.Double::CompareTo(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1 (double* __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); double L_1 = ___value0; if ((!(((double)L_0) < ((double)L_1)))) { goto IL_0007; } } { return (-1); } IL_0007: { double L_2 = *((double*)__this); double L_3 = ___value0; if ((!(((double)L_2) > ((double)L_3)))) { goto IL_000e; } } { return 1; } IL_000e: { double L_4 = *((double*)__this); double L_5 = ___value0; if ((!(((double)L_4) == ((double)L_5)))) { goto IL_0015; } } { return 0; } IL_0015: { double L_6 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_7 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_002a; } } { double L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_9 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0028; } } { return (-1); } IL_0028: { return 0; } IL_002a: { return 1; } } IL2CPP_EXTERN_C int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1(_thisAdjusted, ___value0, method); } // System.Boolean System.Double::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; { RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { RuntimeObject * L_1 = ___obj0; V_0 = ((*(double*)((double*)UnBox(L_1, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))); double L_2 = V_0; double L_3 = *((double*)__this); if ((!(((double)L_2) == ((double)L_3)))) { goto IL_0018; } } { return (bool)1; } IL_0018: { double L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_5 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0028; } } { double L_6 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_7 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_6, /*hidden argument*/NULL); return L_7; } IL_0028: { return (bool)0; } } IL2CPP_EXTERN_C bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33(_thisAdjusted, ___obj0, method); } // System.Boolean System.Double::Equals(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472 (double* __this, double ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___obj0; double L_1 = *((double*)__this); if ((!(((double)L_0) == ((double)L_1)))) { goto IL_0007; } } { return (bool)1; } IL_0007: { double L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_3 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0017; } } { double L_4 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_5 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_4, /*hidden argument*/NULL); return L_5; } IL_0017: { return (bool)0; } } IL2CPP_EXTERN_C bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_AdjustorThunk (RuntimeObject * __this, double ___obj0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472(_thisAdjusted, ___obj0, method); } // System.Int32 System.Double::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292 (double* __this, const RuntimeMethod* method) { return Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4((int64_t*)__this, NULL); } IL2CPP_EXTERN_C int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292(_thisAdjusted, method); } // System.String System.Double::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF (double* __this, const RuntimeMethod* method) { { double L_0 = *((double*)__this); NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); String_t* L_2 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF(_thisAdjusted, method); } // System.String System.Double::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { double L_0 = *((double*)__this); RuntimeObject* L_1 = ___provider0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); String_t* L_3 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9(_thisAdjusted, ___provider0, method); } // System.String System.Double::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { double L_0 = *((double*)__this); String_t* L_1 = ___format0; RuntimeObject* L_2 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL); String_t* L_4 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, L_1, L_3, /*hidden argument*/NULL); return L_4; } } IL2CPP_EXTERN_C String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616(_thisAdjusted, ___format0, ___provider1, method); } // System.Double System.Double::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_2 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_0, ((int32_t)231), L_1, /*hidden argument*/NULL); return L_2; } } // System.Double System.Double::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; RuntimeObject* L_1 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_3 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_0, ((int32_t)231), L_2, /*hidden argument*/NULL); return L_3; } } // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___style1; NumberFormatInfo_ValidateParseStyleFloatingPoint_mEC705C72BC013FB4A554725339A2617D9B4ECC07(L_0, /*hidden argument*/NULL); String_t* L_1 = ___s0; int32_t L_2 = ___style1; RuntimeObject* L_3 = ___provider2; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_5 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_1, L_2, L_4, /*hidden argument*/NULL); return L_5; } } // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method) { { String_t* L_0 = ___s0; int32_t L_1 = ___style1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2; double L_3 = Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.TypeCode System.Double::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3 (double* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)14)); } } IL2CPP_EXTERN_C int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3(_thisAdjusted, method); } // System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); bool L_1 = Convert_ToBoolean_m23B521E072296AA7D4F9FA80D35E27C306B5ABDF(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399(_thisAdjusted, ___provider0, method); } // System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_2)->SetAt(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, Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_RuntimeMethod_var); } } IL2CPP_EXTERN_C Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004(_thisAdjusted, ___provider0, method); } // System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E(_thisAdjusted, ___provider0, method); } // System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_1 = Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2(_thisAdjusted, ___provider0, method); } // System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8(_thisAdjusted, ___provider0, method); } // System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB(_thisAdjusted, ___provider0, method); } // System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4(_thisAdjusted, ___provider0, method); } // System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D(_thisAdjusted, ___provider0, method); } // System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74(_thisAdjusted, ___provider0, method); } // System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB(_thisAdjusted, ___provider0, method); } // System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_1 = Convert_ToSingle_mDADB8C1C52121EE8B0040D4E5FC7CFD2CFAD8B80(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F(_thisAdjusted, ___provider0, method); } // System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { double L_0 = *((double*)__this); return L_0; } } IL2CPP_EXTERN_C double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12(_thisAdjusted, ___provider0, method); } // System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78(_thisAdjusted, ___provider0, method); } // System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); 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, Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_RuntimeMethod_var); } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8(_thisAdjusted, ___provider0, method); } // System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17 (double* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); double L_1 = L_0; RuntimeObject * L_2 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_1); Type_t * L_3 = ___type0; RuntimeObject* L_4 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17(_thisAdjusted, ___type0, ___provider1, method); } // System.Void System.Double::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); double L_0 = BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694(((int64_t)(std::numeric_limits<int64_t>::min)()), /*hidden argument*/NULL); ((Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields*)il2cpp_codegen_static_fields_for(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))->set_NegativeZero_7(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.DuplicateWaitObjectException::get_DuplicateWaitObjectMessage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DuplicateWaitObjectException_get_DuplicateWaitObjectMessage_m8A9448044304CE39349EC6C7C6F09858CE302423 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DuplicateWaitObjectException_get_DuplicateWaitObjectMessage_m8A9448044304CE39349EC6C7C6F09858CE302423_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_StaticFields*)il2cpp_codegen_static_fields_for(DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_il2cpp_TypeInfo_var))->get__duplicateWaitObjectMessage_18(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral81301F243A0BAA95EC5A705A322B7F68C28C1089, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); ((DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_StaticFields*)il2cpp_codegen_static_fields_for(DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_il2cpp_TypeInfo_var))->set__duplicateWaitObjectMessage_18(L_1); } IL_001a: { String_t* L_2 = ((DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_StaticFields*)il2cpp_codegen_static_fields_for(DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF_il2cpp_TypeInfo_var))->get__duplicateWaitObjectMessage_18(); il2cpp_codegen_memory_barrier(); return L_2; } } // System.Void System.DuplicateWaitObjectException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DuplicateWaitObjectException__ctor_m29926FC4B40F473EC9AC33981280A1791C96EF0F (DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF * __this, const RuntimeMethod* method) { { String_t* L_0 = DuplicateWaitObjectException_get_DuplicateWaitObjectMessage_m8A9448044304CE39349EC6C7C6F09858CE302423(/*hidden argument*/NULL); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233047), /*hidden argument*/NULL); return; } } // System.Void System.DuplicateWaitObjectException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DuplicateWaitObjectException__ctor_m65C80F108FA5463DC93BA651B5042200FFF5842E (DuplicateWaitObjectException_t141948339EF060B096E6957F8DD44021D6052AAF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #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.Empty::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.String System.Empty::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3_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.Void System.Empty::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_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, Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; UnitySerializationHolder_GetUnitySerializationInfo_m86F654140996546DB4D6D8228BF9FE45E9BAEC3E(L_2, 1, (String_t*)NULL, (RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 *)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Empty::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * L_0 = (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 *)il2cpp_codegen_object_new(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_il2cpp_TypeInfo_var); Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997(L_0, /*hidden argument*/NULL); ((Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields*)il2cpp_codegen_static_fields_for(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_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 // System.Void System.EntryPointNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367 (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral434F56D21A258E7969A92CEA469D5AF82D2A30D9, /*hidden argument*/NULL); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233053), /*hidden argument*/NULL); return; } } // System.Void System.EntryPointNotFoundException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_mC157996784391A14CFF5CD1F6B6890C67F94C16E (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233053), /*hidden argument*/NULL); return; } } // System.Void System.EntryPointNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_m72E8D85C9DBFCBAD71B54DD0088CA89FF16002D4 (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled) { } IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke_back(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled) { } // Conversion method for clean up from marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke_cleanup(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled) { } IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com_back(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled) { } // Conversion method for clean up from marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com_cleanup(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled) { } // System.Enum_ValuesAndNames System.Enum::GetCachedValuesAndNames(System.RuntimeType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, bool ___getNames1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * V_0 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_1 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL; { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; NullCheck(L_0); RuntimeObject * L_1 = L_0->get_GenericCache_27(); V_0 = ((ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 *)IsInstClass((RuntimeObject*)L_1, ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var)); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_2 = V_0; if (!L_2) { goto IL_001a; } } { bool L_3 = ___getNames1; if (!L_3) { goto IL_0045; } } { ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_4 = V_0; NullCheck(L_4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4->get_Names_1(); if (L_5) { goto IL_0045; } } IL_001a: { V_1 = (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)NULL; V_2 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_6 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); bool L_7 = Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB(L_6, (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**)(&V_1), (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_2), /*hidden argument*/NULL); if (L_7) { goto IL_0036; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = V_2; Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_10 = Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C(/*hidden argument*/Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_RuntimeMethod_var); Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A(L_8, L_9, L_10, /*hidden argument*/Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A_RuntimeMethod_var); } IL_0036: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = V_2; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_13 = (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 *)il2cpp_codegen_object_new(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var); ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F(L_13, L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = ___enumType0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_15 = V_0; NullCheck(L_14); L_14->set_GenericCache_27(L_15); } IL_0045: { ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_16 = V_0; return L_16; } } // System.String System.Enum::InternalFormattedHexString(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; uint8_t V_1 = 0x0; uint8_t V_2 = 0x0; uint8_t V_3 = 0x0; uint16_t V_4 = 0; uint16_t V_5 = 0; uint16_t V_6 = 0; uint32_t V_7 = 0; uint32_t V_8 = 0; uint64_t V_9 = 0; uint64_t V_10 = 0; { RuntimeObject * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)3))) { case 0: { goto IL_0067; } case 1: { goto IL_00ae; } case 2: { goto IL_003c; } case 3: { goto IL_0052; } case 4: { goto IL_0081; } case 5: { goto IL_0098; } case 6: { goto IL_00da; } case 7: { goto IL_00c4; } case 8: { goto IL_0106; } case 9: { goto IL_00f0; } } } { goto IL_011c; } IL_003c: { RuntimeObject * L_3 = ___value0; V_1 = (uint8_t)(((int32_t)((uint8_t)((*(int8_t*)((int8_t*)UnBox(L_3, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))))))); String_t* L_4 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_1), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_4; } IL_0052: { RuntimeObject * L_5 = ___value0; V_2 = ((*(uint8_t*)((uint8_t*)UnBox(L_5, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))); String_t* L_6 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_2), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_6; } IL_0067: { RuntimeObject * L_7 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_8 = Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716(((*(bool*)((bool*)UnBox(L_7, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); V_3 = L_8; String_t* L_9 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_3), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_9; } IL_0081: { RuntimeObject * L_10 = ___value0; V_4 = (uint16_t)(((int32_t)((uint16_t)((*(int16_t*)((int16_t*)UnBox(L_10, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))))); String_t* L_11 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_4), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_11; } IL_0098: { RuntimeObject * L_12 = ___value0; V_5 = ((*(uint16_t*)((uint16_t*)UnBox(L_12, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var)))); String_t* L_13 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_5), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_13; } IL_00ae: { RuntimeObject * L_14 = ___value0; V_6 = (uint16_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_14, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))); String_t* L_15 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_6), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_15; } IL_00c4: { RuntimeObject * L_16 = ___value0; V_7 = ((*(uint32_t*)((uint32_t*)UnBox(L_16, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))); String_t* L_17 = UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE((uint32_t*)(&V_7), _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } IL_00da: { RuntimeObject * L_18 = ___value0; V_8 = ((*(int32_t*)((int32_t*)UnBox(L_18, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); String_t* L_19 = UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE((uint32_t*)(&V_8), _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_19; } IL_00f0: { RuntimeObject * L_20 = ___value0; V_9 = ((*(uint64_t*)((uint64_t*)UnBox(L_20, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))); String_t* L_21 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_9), _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_21; } IL_0106: { RuntimeObject * L_22 = ___value0; V_10 = ((*(int64_t*)((int64_t*)UnBox(L_22, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))); String_t* L_23 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_10), _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_23; } IL_011c: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_25 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_25, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_RuntimeMethod_var); } } // System.String System.Enum::InternalFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___eT0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_2, (bool)0); if (L_3) { goto IL_0027; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = ___eT0; RuntimeObject * L_5 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_6 = Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D(L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = V_0; if (L_7) { goto IL_0025; } } { RuntimeObject * L_8 = ___value1; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); return L_9; } IL_0025: { String_t* L_10 = V_0; return L_10; } IL_0027: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_11 = ___eT0; RuntimeObject * L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_13 = Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C(L_11, L_12, /*hidden argument*/NULL); return L_13; } } // System.String System.Enum::InternalFlagsFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_2 = NULL; int32_t V_3 = 0; StringBuilder_t * V_4 = NULL; bool V_5 = false; uint64_t V_6 = 0; { RuntimeObject * L_0 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); uint64_t L_1 = Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5(L_0, /*hidden argument*/NULL); V_0 = L_1; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = ___eT0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_3 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_2, (bool)1, /*hidden argument*/NULL); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_4 = L_3; NullCheck(L_4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4->get_Names_1(); V_1 = L_5; NullCheck(L_4); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_6 = L_4->get_Values_0(); V_2 = L_6; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_7 = V_2; NullCheck(L_7); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)1)); StringBuilder_t * L_8 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_8, /*hidden argument*/NULL); V_4 = L_8; V_5 = (bool)1; uint64_t L_9 = V_0; V_6 = L_9; goto IL_006d; } IL_0030: { int32_t L_10 = V_3; if (L_10) { goto IL_0038; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = V_2; int32_t L_12 = V_3; NullCheck(L_11); int32_t L_13 = L_12; int64_t L_14 = (int64_t)(L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); if (!L_14) { goto IL_0071; } } IL_0038: { uint64_t L_15 = V_0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_16 = V_2; int32_t L_17 = V_3; NullCheck(L_16); int32_t L_18 = L_17; int64_t L_19 = (int64_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_20 = V_2; int32_t L_21 = V_3; NullCheck(L_20); int32_t L_22 = L_21; int64_t L_23 = (int64_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); if ((!(((uint64_t)((int64_t)((int64_t)L_15&(int64_t)L_19))) == ((uint64_t)L_23)))) { goto IL_0069; } } { uint64_t L_24 = V_0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_25 = V_2; int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = L_26; int64_t L_28 = (int64_t)(L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_24, (int64_t)L_28)); bool L_29 = V_5; if (L_29) { goto IL_005a; } } { StringBuilder_t * L_30 = V_4; NullCheck(L_30); StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_30, 0, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); } IL_005a: { StringBuilder_t * L_31 = V_4; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = V_1; int32_t L_33 = V_3; NullCheck(L_32); int32_t L_34 = L_33; String_t* L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_31); StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_31, 0, L_35, /*hidden argument*/NULL); V_5 = (bool)0; } IL_0069: { int32_t L_36 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1)); } IL_006d: { int32_t L_37 = V_3; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0030; } } IL_0071: { uint64_t L_38 = V_0; if (!L_38) { goto IL_007b; } } { RuntimeObject * L_39 = ___value1; NullCheck(L_39); String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_39); return L_40; } IL_007b: { uint64_t L_41 = V_6; if (L_41) { goto IL_0092; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_42 = V_2; NullCheck(L_42); if (!(((RuntimeArray*)L_42)->max_length)) { goto IL_008c; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_43 = V_2; NullCheck(L_43); int32_t L_44 = 0; int64_t L_45 = (int64_t)(L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_44)); if (L_45) { goto IL_008c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = V_1; NullCheck(L_46); int32_t L_47 = 0; String_t* L_48 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_47)); return L_48; } IL_008c: { return _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C; } IL_0092: { StringBuilder_t * L_49 = V_4; NullCheck(L_49); String_t* L_50 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_49); return L_50; } } // System.UInt64 System.Enum::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5 (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; uint64_t V_1 = 0; { RuntimeObject * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)3))) { case 0: { goto IL_0047; } case 1: { goto IL_0047; } case 2: { goto IL_0039; } case 3: { goto IL_0047; } case 4: { goto IL_0039; } case 5: { goto IL_0047; } case 6: { goto IL_0039; } case 7: { goto IL_0047; } case 8: { goto IL_0039; } case 9: { goto IL_0047; } } } { goto IL_0055; } IL_0039: { RuntimeObject * L_3 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_5 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; goto IL_0065; } IL_0047: { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_8 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_6, L_7, /*hidden argument*/NULL); V_1 = L_8; goto IL_0065; } IL_0055: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_RuntimeMethod_var); } IL_0065: { uint64_t L_11 = V_1; return L_11; } } // System.Int32 System.Enum::InternalCompareTo(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method) { typedef int32_t (*Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A_ftn) (RuntimeObject *, RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A_ftn)mscorlib::System::Enum::InternalCompareTo) (___o10, ___o21); } // System.RuntimeType System.Enum::InternalGetUnderlyingType(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { typedef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * (*Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *); using namespace il2cpp::icalls; return ((Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50_ftn)mscorlib::System::Enum::InternalGetUnderlyingType) (___enumType0); } // System.Boolean System.Enum::GetEnumValuesAndNames(System.RuntimeType,System.UInt64[]&,System.String[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___values1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, const RuntimeMethod* method) { typedef bool (*Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**); using namespace il2cpp::icalls; return ((Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB_ftn)mscorlib::System::Enum::GetEnumValuesAndNames) (___enumType0, ___values1, ___names2); } // System.Object System.Enum::InternalBoxEnum(System.RuntimeType,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, int64_t ___value1, const RuntimeMethod* method) { typedef RuntimeObject * (*Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *, int64_t); using namespace il2cpp::icalls; return ((Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251_ftn)mscorlib::System::Enum::InternalBoxEnum) (___enumType0, ___value1); } // System.Object System.Enum::Parse(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3 (Type_t * ___enumType0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; String_t* L_1 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_2 = Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7(L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Object System.Enum::Parse(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C )); EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), (bool)1, /*hidden argument*/NULL); Type_t * L_0 = ___enumType0; String_t* L_1 = ___value1; bool L_2 = ___ignoreCase2; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); bool L_3 = Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E(L_0, L_1, L_2, (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0023; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C L_4 = V_0; RuntimeObject * L_5 = L_4.get_parsedEnum_0(); return L_5; } IL_0023: { Exception_t * L_6 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_RuntimeMethod_var); } } // System.Boolean System.Enum::TryParseEnum(System.Type,System.String,System.Boolean,System.Enum_EnumResult&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * ___parseResult3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; uint64_t V_1 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_3 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_4 = NULL; Type_t * V_5 = NULL; RuntimeObject * V_6 = NULL; bool V_7 = false; Exception_t * V_8 = NULL; int32_t V_9 = 0; bool V_10 = false; int32_t V_11 = 0; uint64_t V_12 = 0; Exception_t * V_13 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; 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_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_4, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_0039; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0039: { Type_t * L_8 = ___enumType0; NullCheck(L_8); bool L_9 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_8); if (L_9) { goto IL_0056; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0056: { String_t* L_12 = ___value1; if (L_12) { goto IL_0067; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_13 = ___parseResult3; EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_13, 2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); return (bool)0; } IL_0067: { String_t* L_14 = ___value1; NullCheck(L_14); String_t* L_15 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_14, /*hidden argument*/NULL); ___value1 = L_15; String_t* L_16 = ___value1; NullCheck(L_16); int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0086; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_18 = ___parseResult3; EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_18, 1, _stringLiteral97F27E5AD8A8005896BEAB070988EA16E76BD0CC, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0086: { V_1 = (((int64_t)((int64_t)0))); String_t* L_19 = ___value1; NullCheck(L_19); Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_19, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_21 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_20, /*hidden argument*/NULL); if (L_21) { goto IL_00ad; } } { String_t* L_22 = ___value1; NullCheck(L_22); Il2CppChar L_23 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_22, 0, /*hidden argument*/NULL); if ((((int32_t)L_23) == ((int32_t)((int32_t)45)))) { goto IL_00ad; } } { String_t* L_24 = ___value1; NullCheck(L_24); Il2CppChar L_25 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_24, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)43))))) { goto IL_00f9; } } IL_00ad: { Type_t * L_26 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_27 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_26, /*hidden argument*/NULL); V_5 = L_27; } IL_00b5: try { // begin try (depth: 1) String_t* L_28 = ___value1; Type_t * L_29 = V_5; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_31 = Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926(L_28, L_29, L_30, /*hidden argument*/NULL); V_6 = L_31; EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_32 = ___parseResult3; Type_t * L_33 = ___enumType0; RuntimeObject * L_34 = V_6; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_35 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(L_33, L_34, /*hidden argument*/NULL); L_32->set_parsedEnum_0(L_35); V_7 = (bool)1; goto IL_01c2; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00da; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00dd; throw e; } CATCH_00da: { // begin catch(System.FormatException) goto IL_00f9; } // end catch (depth: 1) CATCH_00dd: { // begin catch(System.Exception) { V_8 = ((Exception_t *)__exception_local); EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_36 = ___parseResult3; bool L_37 = L_36->get_canThrow_1(); if (!L_37) { goto IL_00e9; } } IL_00e7: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_00e9: { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_38 = ___parseResult3; Exception_t * L_39 = V_8; EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_38, L_39, /*hidden argument*/NULL); V_7 = (bool)0; goto IL_01c2; } } // end catch (depth: 1) IL_00f9: { String_t* L_40 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_41 = ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields*)il2cpp_codegen_static_fields_for(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var))->get_enumSeperatorCharArray_0(); NullCheck(L_40); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = String_Split_m13262358217AD2C119FD1B9733C3C0289D608512(L_40, L_41, /*hidden argument*/NULL); V_2 = L_42; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_44 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_43, (bool)1, /*hidden argument*/NULL); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_45 = L_44; NullCheck(L_45); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = L_45->get_Names_1(); V_3 = L_46; NullCheck(L_45); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_47 = L_45->get_Values_0(); V_4 = L_47; V_9 = 0; goto IL_018f; } IL_011f: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = V_2; int32_t L_49 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_50 = V_2; int32_t L_51 = V_9; NullCheck(L_50); int32_t L_52 = L_51; String_t* L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52)); NullCheck(L_53); String_t* L_54 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_53, /*hidden argument*/NULL); NullCheck(L_48); ArrayElementTypeCheck (L_48, L_54); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(L_49), (String_t*)L_54); V_10 = (bool)0; V_11 = 0; goto IL_016f; } IL_0134: { bool L_55 = ___ignoreCase2; if (!L_55) { goto IL_0149; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_56 = V_3; int32_t L_57 = V_11; NullCheck(L_56); int32_t L_58 = L_57; String_t* L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = V_2; int32_t L_61 = V_9; NullCheck(L_60); int32_t L_62 = L_61; String_t* L_63 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_62)); int32_t L_64 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_59, L_63, 5, /*hidden argument*/NULL); if (!L_64) { goto IL_0158; } } { goto IL_0169; } IL_0149: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = V_3; int32_t L_66 = V_11; NullCheck(L_65); int32_t L_67 = L_66; String_t* L_68 = (L_65)->GetAt(static_cast<il2cpp_array_size_t>(L_67)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_69 = V_2; int32_t L_70 = V_9; NullCheck(L_69); int32_t L_71 = L_70; String_t* L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71)); NullCheck(L_68); bool L_73 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_68, L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_0169; } } IL_0158: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_74 = V_4; int32_t L_75 = V_11; NullCheck(L_74); int32_t L_76 = L_75; int64_t L_77 = (int64_t)(L_74)->GetAt(static_cast<il2cpp_array_size_t>(L_76)); V_12 = L_77; uint64_t L_78 = V_1; uint64_t L_79 = V_12; V_1 = ((int64_t)((int64_t)L_78|(int64_t)L_79)); V_10 = (bool)1; goto IL_0176; } IL_0169: { int32_t L_80 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)); } IL_016f: { int32_t L_81 = V_11; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_82 = V_3; NullCheck(L_82); if ((((int32_t)L_81) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_82)->max_length))))))) { goto IL_0134; } } IL_0176: { bool L_83 = V_10; if (L_83) { goto IL_0189; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_84 = ___parseResult3; String_t* L_85 = ___value1; EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_84, 3, _stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34, L_85, /*hidden argument*/NULL); return (bool)0; } IL_0189: { int32_t L_86 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)); } IL_018f: { int32_t L_87 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_88 = V_2; NullCheck(L_88); if ((((int32_t)L_87) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_88)->max_length))))))) { goto IL_011f; } } { } IL_0197: try { // begin try (depth: 1) EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_89 = ___parseResult3; Type_t * L_90 = ___enumType0; uint64_t L_91 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_92 = Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05(L_90, L_91, /*hidden argument*/NULL); L_89->set_parsedEnum_0(L_92); V_7 = (bool)1; goto IL_01c2; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_01a9; throw e; } CATCH_01a9: { // begin catch(System.Exception) { V_13 = ((Exception_t *)__exception_local); EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_93 = ___parseResult3; bool L_94 = L_93->get_canThrow_1(); if (!L_94) { goto IL_01b5; } } IL_01b3: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_01b5: { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_95 = ___parseResult3; Exception_t * L_96 = V_13; EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_95, L_96, /*hidden argument*/NULL); V_7 = (bool)0; goto IL_01c2; } } // end catch (depth: 1) IL_01c2: { bool L_97 = V_7; return L_97; } } // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::GetEnumUnderlyingType() */, L_3); return L_4; } } // System.Array System.Enum::GetValues(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C (Type_t * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); RuntimeArray * L_4 = VirtFuncInvoker0< RuntimeArray * >::Invoke(104 /* System.Array System.Type::GetEnumValues() */, L_3); return L_4; } } // System.UInt64[] System.Enum::InternalGetValues(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_1 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_0, (bool)0, /*hidden argument*/NULL); NullCheck(L_1); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = L_1->get_Values_0(); return L_2; } } // System.String System.Enum::GetName(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; RuntimeObject * L_4 = ___value1; NullCheck(L_3); String_t* L_5 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(107 /* System.String System.Type::GetEnumName(System.Object) */, L_3, L_4); return L_5; } } // System.String[] System.Enum::GetNames(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Enum_GetNames_m9ECDF3E80A7A31075D7D2B2B362DDCC6150BC15C (Type_t * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetNames_m9ECDF3E80A7A31075D7D2B2B362DDCC6150BC15C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetNames_m9ECDF3E80A7A31075D7D2B2B362DDCC6150BC15C_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = VirtFuncInvoker0< StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(103 /* System.String[] System.Type::GetEnumNames() */, L_3); return L_4; } } // System.String[] System.Enum::InternalGetNames(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_1 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_0, (bool)1, /*hidden argument*/NULL); NullCheck(L_1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1->get_Names_1(); return L_2; } } // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___value1; 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, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_3 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_2, /*hidden argument*/NULL); V_0 = L_3; bool L_4 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1(); if (!L_4) { goto IL_0039; } } { int32_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)3))) { goto IL_0024; } } { int32_t L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)4)))) { goto IL_0039; } } IL_0024: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_8, L_7, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } IL_0039: { int32_t L_9 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)3))) { case 0: { goto IL_00e3; } case 1: { goto IL_00d6; } case 2: { goto IL_007b; } case 3: { goto IL_00af; } case 4: { goto IL_0088; } case 5: { goto IL_00bc; } case 6: { goto IL_006e; } case 7: { goto IL_00a2; } case 8: { goto IL_0095; } case 9: { goto IL_00c9; } } } { goto IL_00f0; } IL_006e: { Type_t * L_10 = ___enumType0; RuntimeObject * L_11 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_12 = Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F(L_10, ((*(int32_t*)((int32_t*)UnBox(L_11, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_12; } IL_007b: { Type_t * L_13 = ___enumType0; RuntimeObject * L_14 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_15 = Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B(L_13, ((*(int8_t*)((int8_t*)UnBox(L_14, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_15; } IL_0088: { Type_t * L_16 = ___enumType0; RuntimeObject * L_17 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_18 = Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF(L_16, ((*(int16_t*)((int16_t*)UnBox(L_17, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_18; } IL_0095: { Type_t * L_19 = ___enumType0; RuntimeObject * L_20 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_21 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_19, ((*(int64_t*)((int64_t*)UnBox(L_20, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_21; } IL_00a2: { Type_t * L_22 = ___enumType0; RuntimeObject * L_23 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_24 = Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7(L_22, ((*(uint32_t*)((uint32_t*)UnBox(L_23, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_24; } IL_00af: { Type_t * L_25 = ___enumType0; RuntimeObject * L_26 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_27 = Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6(L_25, ((*(uint8_t*)((uint8_t*)UnBox(L_26, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_27; } IL_00bc: { Type_t * L_28 = ___enumType0; RuntimeObject * L_29 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_30 = Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971(L_28, ((*(uint16_t*)((uint16_t*)UnBox(L_29, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_30; } IL_00c9: { Type_t * L_31 = ___enumType0; RuntimeObject * L_32 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_33 = Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05(L_31, ((*(uint64_t*)((uint64_t*)UnBox(L_32, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_33; } IL_00d6: { Type_t * L_34 = ___enumType0; RuntimeObject * L_35 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_36 = Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A(L_34, ((*(Il2CppChar*)((Il2CppChar*)UnBox(L_35, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_36; } IL_00e3: { Type_t * L_37 = ___enumType0; RuntimeObject * L_38 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_39 = Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15(L_37, ((*(bool*)((bool*)UnBox(L_38, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_39; } IL_00f0: { String_t* L_40 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_41 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_41, L_40, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, NULL, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } } // System.Boolean System.Enum::IsDefined(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; RuntimeObject * L_4 = ___value1; NullCheck(L_3); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(106 /* System.Boolean System.Type::IsEnumDefined(System.Object) */, L_3, L_4); return L_5; } } // System.Object System.Enum::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4 (RuntimeObject * __this, const RuntimeMethod* method) { typedef RuntimeObject * (*Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4_ftn) (RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4_ftn)mscorlib::System::Enum::get_value) (__this); } // System.Object System.Enum::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A (RuntimeObject * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Enum::InternalHasFlag(System.Enum) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_InternalHasFlag_m5627C673BA35A21042A182FA0F6465DC35FC292D (RuntimeObject * __this, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * ___flags0, const RuntimeMethod* method) { typedef bool (*Enum_InternalHasFlag_m5627C673BA35A21042A182FA0F6465DC35FC292D_ftn) (RuntimeObject *, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *); using namespace il2cpp::icalls; return ((Enum_InternalHasFlag_m5627C673BA35A21042A182FA0F6465DC35FC292D_ftn)mscorlib::System::Enum::InternalHasFlag) (__this, ___flags0); } // System.Int32 System.Enum::get_hashcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853 (RuntimeObject * __this, const RuntimeMethod* method) { typedef int32_t (*Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853_ftn) (RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853_ftn)mscorlib::System::Enum::get_hashcode) (__this); } // System.Boolean System.Enum::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_Equals_mA344E3D044BE40ED5BB8C4A5838F9F5A2A235901 (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; bool L_1 = ValueType_DefaultEquals_m139582CD1BAD7472B45D806F76E4E14E82E629DB(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Enum::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_GetHashCode_m41E0B8F2D9F7BB662A043FD8400C05F047A75B26 (RuntimeObject * __this, const RuntimeMethod* method) { { int32_t L_0 = Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Enum::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF (RuntimeObject * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); RuntimeObject * L_1 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_2 = Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_1, /*hidden argument*/NULL); return L_2; } } // System.String System.Enum::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m9E184D984FDCBEADCB2C9BCCFBC9DB6C920443B2 (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___format0; String_t* L_1 = Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Enum::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE (RuntimeObject * __this, RuntimeObject * ___target0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Type_t * V_1 = NULL; Type_t * V_2 = NULL; { if (__this) { goto IL_0009; } } { NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * L_0 = (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC *)il2cpp_codegen_object_new(NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC_il2cpp_TypeInfo_var); NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } IL_0009: { RuntimeObject * L_1 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); int32_t L_2 = Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A(__this, L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) >= ((int32_t)2))) { goto IL_0017; } } { int32_t L_4 = V_0; return L_4; } IL_0017: { int32_t L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0051; } } { Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); V_1 = L_6; RuntimeObject * L_7 = ___target0; NullCheck(L_7); Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL); V_2 = L_8; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; Type_t * L_11 = V_2; NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_10; Type_t * L_14 = V_1; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15); String_t* L_16 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F, L_13, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } IL_0051: { String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_19 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_19, L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } } // System.String System.Enum::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___format0; if (!L_0) { goto IL_000b; } } { String_t* L_1 = ___format0; NullCheck(L_1); int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0012; } } IL_000b: { ___format0 = _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; } IL_0012: { String_t* L_3 = ___format0; int32_t L_4 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_3, _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, 5, /*hidden argument*/NULL); if (L_4) { goto IL_0027; } } { String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); return L_5; } IL_0027: { String_t* L_6 = ___format0; int32_t L_7 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_6, _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, 5, /*hidden argument*/NULL); if (L_7) { goto IL_0041; } } { RuntimeObject * L_8 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); return L_9; } IL_0041: { String_t* L_10 = ___format0; int32_t L_11 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_10, _stringLiteralC032ADC1FF629C9B66F22749AD667E6BEADF144B, 5, /*hidden argument*/NULL); if (L_11) { goto IL_005b; } } { RuntimeObject * L_12 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_13 = Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF(L_12, /*hidden argument*/NULL); return L_13; } IL_005b: { String_t* L_14 = ___format0; int32_t L_15 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_14, _stringLiteralE69F20E9F683920D3FB4329ABD951E878B1F9372, 5, /*hidden argument*/NULL); if (L_15) { goto IL_0080; } } { Type_t * L_16 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); RuntimeObject * L_17 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_18 = Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_16, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_17, /*hidden argument*/NULL); return L_18; } IL_0080: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E05D1803CBCEFD7109BD5259E9057AD7C3AC318, /*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); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_RuntimeMethod_var); } } // System.String System.Enum::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_mF372E130456A4B63011F26A93166AF2E49DAD149 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); return L_0; } } // System.Boolean System.Enum::HasFlag(System.Enum) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173 (RuntimeObject * __this, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * ___flag0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_0 = ___flag0; 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, _stringLiteral112F3A99B283A4E1788DEDD8E0E5D35375C33747, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_3 = ___flag0; NullCheck(L_3); Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_3, /*hidden argument*/NULL); NullCheck(L_2); bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(112 /* System.Boolean System.Type::IsEquivalentTo(System.Type) */, L_2, L_4); if (L_5) { goto IL_0049; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6; Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_8 = ___flag0; NullCheck(L_8); Type_t * L_9 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_8, /*hidden argument*/NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_7; Type_t * L_11 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_11); String_t* L_12 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralD37BECCE4F8DB47224B5402BF70365AA2335C425, L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173_RuntimeMethod_var); } IL_0049: { Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_14 = ___flag0; bool L_15 = Enum_InternalHasFlag_m5627C673BA35A21042A182FA0F6465DC35FC292D(__this, L_14, /*hidden argument*/NULL); return L_15; } } // System.TypeCode System.Enum::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032 (RuntimeObject * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_1 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_0, /*hidden argument*/NULL); V_0 = L_1; Type_t * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0021; } } { return (int32_t)(((int32_t)9)); } IL_0021: { Type_t * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0035; } } { return (int32_t)(5); } IL_0035: { Type_t * L_10 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0049; } } { return (int32_t)(7); } IL_0049: { Type_t * L_14 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); bool L_17 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005e; } } { return (int32_t)(((int32_t)11)); } IL_005e: { Type_t * L_18 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); bool L_21 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_18, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0073; } } { return (int32_t)(((int32_t)10)); } IL_0073: { Type_t * L_22 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); bool L_25 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_22, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_0087; } } { return (int32_t)(6); } IL_0087: { Type_t * L_26 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); bool L_29 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_26, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_009b; } } { return (int32_t)(8); } IL_009b: { Type_t * L_30 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); bool L_33 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_30, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00b0; } } { return (int32_t)(((int32_t)12)); } IL_00b0: { Type_t * L_34 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); bool L_37 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_34, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00c4; } } { return (int32_t)(3); } IL_00c4: { Type_t * L_38 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_38, L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_00d8; } } { return (int32_t)(4); } IL_00d8: { String_t* L_42 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_43 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_RuntimeMethod_var); } } // System.Boolean System.Enum::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); bool L_2 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Enum::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Il2CppChar L_2 = Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.SByte System.Enum::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_2 = Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte System.Enum::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_2 = Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int16 System.Enum::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_2 = Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt16 System.Enum::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_2 = Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Enum::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_2 = Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt32 System.Enum::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_2 = Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int64 System.Enum::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_2 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt64 System.Enum::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_2 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Single System.Enum::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_2 = Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Double System.Enum::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); double L_2 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Decimal System.Enum::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_2 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.DateTime System.Enum::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); 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, Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_RuntimeMethod_var); } } // System.Object System.Enum::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853 (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853_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.Object System.Enum::ToObject(System.Type,System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B (Type_t * ___enumType0, int8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0055: { int8_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF (Type_t * ___enumType0, int16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0055: { int16_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F (Type_t * ___enumType0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0055: { int32_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6 (Type_t * ___enumType0, uint8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0055: { uint8_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971 (Type_t * ___enumType0, uint16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0055: { uint16_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7 (Type_t * ___enumType0, uint32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0055: { uint32_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2 (Type_t * ___enumType0, int64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0055: { int64_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, L_12, /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05 (Type_t * ___enumType0, uint64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0055: { uint64_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, L_12, /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A (Type_t * ___enumType0, Il2CppChar ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0055: { Il2CppChar L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15 (Type_t * ___enumType0, bool ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B8_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B7_0 = NULL; int32_t G_B9_0 = 0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B9_1 = NULL; { Type_t * L_0 = ___enumType0; 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, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(72 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0055: { bool L_12 = ___value1; G_B7_0 = G_B6_0; if (L_12) { G_B8_0 = G_B6_0; goto IL_005b; } } { G_B9_0 = 0; G_B9_1 = G_B7_0; goto IL_005c; } IL_005b: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_005c: { IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B9_1, (((int64_t)((int64_t)G_B9_0))), /*hidden argument*/NULL); return L_13; } } // System.Void System.Enum::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enum__ctor_mCC9F42D49734100FAD982FAEE723DB747A0E97CB (RuntimeObject * __this, const RuntimeMethod* method) { { ValueType__ctor_m091BDF02E011A41101A74AABB803417EE40CA5B7(__this, /*hidden argument*/NULL); return; } } // System.Void System.Enum::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44)); ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields*)il2cpp_codegen_static_fields_for(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var))->set_enumSeperatorCharArray_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke_back(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke_cleanup(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com_back(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com_cleanup(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled) { } // System.Void System.Enum_EnumResult::Init(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, bool ___canMethodThrow0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = 0; RuntimeObject * L_1 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_0); __this->set_parsedEnum_0(L_1); bool L_2 = ___canMethodThrow0; __this->set_canThrow_1(L_2); return; } } IL2CPP_EXTERN_C void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_AdjustorThunk (RuntimeObject * __this, bool ___canMethodThrow0, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478(_thisAdjusted, ___canMethodThrow0, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method) { { __this->set_m_failure_2(4); Exception_t * L_0 = ___unhandledException0; __this->set_m_innerException_6(L_0); return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125_AdjustorThunk (RuntimeObject * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125(_thisAdjusted, ___unhandledException0, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Enum_ParseFailureKind,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___failure0; __this->set_m_failure_2(L_0); String_t* L_1 = ___failureParameter1; __this->set_m_failureParameter_4(L_1); bool L_2 = __this->get_canThrow_1(); if (!L_2) { goto IL_001d; } } { Exception_t * L_3 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_RuntimeMethod_var); } IL_001d: { return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_AdjustorThunk (RuntimeObject * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD(_thisAdjusted, ___failure0, ___failureParameter1, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Enum_ParseFailureKind,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___failure0; __this->set_m_failure_2(L_0); String_t* L_1 = ___failureMessageID1; __this->set_m_failureMessageID_3(L_1); RuntimeObject * L_2 = ___failureMessageFormatArgument2; __this->set_m_failureMessageFormatArgument_5(L_2); bool L_3 = __this->get_canThrow_1(); if (!L_3) { goto IL_0024; } } { Exception_t * L_4 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_RuntimeMethod_var); } IL_0024: { return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_AdjustorThunk (RuntimeObject * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629(_thisAdjusted, ___failure0, ___failureMessageID1, ___failureMessageFormatArgument2, method); } // System.Exception System.Enum_EnumResult::GetEnumParseException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_m_failure_2(); V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_0021; } case 1: { goto IL_0032; } case 2: { goto IL_003e; } case 3: { goto IL_005e; } } } { goto IL_0065; } IL_0021: { String_t* L_2 = __this->get_m_failureMessageID_3(); String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_2, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_0032: { String_t* L_5 = __this->get_m_failureParameter_4(); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_6 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_6, L_5, /*hidden argument*/NULL); return L_6; } IL_003e: { String_t* L_7 = __this->get_m_failureMessageID_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_8; RuntimeObject * L_10 = __this->get_m_failureMessageFormatArgument_5(); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10); String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(L_7, L_9, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_005e: { Exception_t * L_13 = __this->get_m_innerException_6(); return L_13; } IL_0065: { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); return EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B(_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 // System.Void System.Enum_ValuesAndNames::.ctor(System.UInt64[],System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___values0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___values0; __this->set_Values_0(L_0); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ___names1; __this->set_Names_1(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method) { { String_t* L_0 = ___key0; return L_0; } } // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_1 = ___key0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___values1; String_t* L_3 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Environment::GetResourceStringEncodingName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA (int32_t ___codePage0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___codePage0; if ((((int32_t)L_0) > ((int32_t)((int32_t)12000)))) { goto IL_0022; } } { int32_t L_1 = ___codePage0; if ((((int32_t)L_1) == ((int32_t)((int32_t)1200)))) { goto IL_004e; } } { int32_t L_2 = ___codePage0; if ((((int32_t)L_2) == ((int32_t)((int32_t)1201)))) { goto IL_0059; } } { int32_t L_3 = ___codePage0; if ((((int32_t)L_3) == ((int32_t)((int32_t)12000)))) { goto IL_0064; } } { goto IL_009b; } IL_0022: { int32_t L_4 = ___codePage0; if ((((int32_t)L_4) > ((int32_t)((int32_t)20127)))) { goto IL_003c; } } { int32_t L_5 = ___codePage0; if ((((int32_t)L_5) == ((int32_t)((int32_t)12001)))) { goto IL_006f; } } { int32_t L_6 = ___codePage0; if ((((int32_t)L_6) == ((int32_t)((int32_t)20127)))) { goto IL_007a; } } { goto IL_009b; } IL_003c: { int32_t L_7 = ___codePage0; if ((((int32_t)L_7) == ((int32_t)((int32_t)65000)))) { goto IL_0085; } } { int32_t L_8 = ___codePage0; if ((((int32_t)L_8) == ((int32_t)((int32_t)65001)))) { goto IL_0090; } } { goto IL_009b; } IL_004e: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9AB0BD9A6126EE4B9D7538D5C6CBA7AA587F31ED, /*hidden argument*/NULL); return L_9; } IL_0059: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral902685EF3692B3767BC81B2C5518F1DB33AF2498, /*hidden argument*/NULL); return L_10; } IL_0064: { String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral07D16614C7EAFA63B6B2E43D94BCADBAD1CF4C3B, /*hidden argument*/NULL); return L_11; } IL_006f: { String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3F98816C9705E9EA06CFD4DA52C96A453E6CB2D8, /*hidden argument*/NULL); return L_12; } IL_007a: { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral03EE66A3DAB3D2CDCE115FCC8379D06011B9D4B9, /*hidden argument*/NULL); return L_13; } IL_0085: { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral12209D77C65DDBBBCC60B5E59E78677AC5470772, /*hidden argument*/NULL); return L_14; } IL_0090: { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBBFDD5D9E202955BADC46A0444FEDB1D583D1C04, /*hidden argument*/NULL); return L_15; } IL_009b: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_17 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___codePage0), L_16, /*hidden argument*/NULL); return L_17; } } // System.Int32 System.Environment::get_CurrentManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_CurrentManagedThreadId_m0E897C88355903220B1EC214832F5E815D7C13D1 (const RuntimeMethod* method) { { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Environment::get_HasShutdownStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C (const RuntimeMethod* method) { typedef bool (*Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C_ftn)mscorlib::System::Environment::get_HasShutdownStarted) (); } // System.String System.Environment::GetNewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254 (const RuntimeMethod* method) { typedef String_t* (*Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254_ftn)mscorlib::System::Environment::GetNewLine) (); } // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); if (!L_0) { goto IL_000d; } } { String_t* L_1 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); return L_1; } IL_000d: { String_t* L_2 = Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254(/*hidden argument*/NULL); ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->set_nl_1(L_2); String_t* L_3 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); return L_3; } } // System.PlatformID System.Environment::get_Platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C (const RuntimeMethod* method) { typedef int32_t (*Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C_ftn)mscorlib::System::Environment::get_Platform) (); } // System.String System.Environment::GetOSVersionString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C (const RuntimeMethod* method) { typedef String_t* (*Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C_ftn)mscorlib::System::Environment::GetOSVersionString) (); } // System.OperatingSystem System.Environment::get_OSVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233_MetadataUsageId); s_Il2CppMethodInitialized = true; } Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * V_0 = NULL; int32_t V_1 = 0; { OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_0 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_os_2(); if (L_0) { goto IL_002a; } } { String_t* L_1 = Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C(/*hidden argument*/NULL); Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_2 = Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318(L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); V_1 = L_3; int32_t L_4 = V_1; if ((!(((uint32_t)L_4) == ((uint32_t)6)))) { goto IL_001e; } } { V_1 = 4; } IL_001e: { int32_t L_5 = V_1; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_6 = V_0; OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_7 = (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 *)il2cpp_codegen_object_new(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83_il2cpp_TypeInfo_var); OperatingSystem__ctor_m17CCE490F4F87F8193C6D4AE9265AE907D8634CE(L_7, L_5, L_6, /*hidden argument*/NULL); ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->set_os_2(L_7); } IL_002a: { OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_8 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_os_2(); return L_8; } } // System.Version System.Environment::CreateVersionFromString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318 (String_t* ___info0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318_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; Il2CppChar V_7 = 0x0; { V_0 = 0; V_1 = 0; V_2 = 0; V_3 = 0; V_4 = 1; V_5 = (-1); String_t* L_0 = ___info0; if (L_0) { goto IL_001b; } } { Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_1 = (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)il2cpp_codegen_object_new(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var); Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80(L_1, 0, 0, 0, 0, /*hidden argument*/NULL); return L_1; } IL_001b: { V_6 = 0; goto IL_0096; } IL_0020: { String_t* L_2 = ___info0; int32_t L_3 = V_6; NullCheck(L_2); Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL); V_7 = L_4; Il2CppChar L_5 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_6 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0050; } } { int32_t L_7 = V_5; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_0041; } } { Il2CppChar L_8 = V_7; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)48))); goto IL_008b; } IL_0041: { int32_t L_9 = V_5; Il2CppChar L_10 = V_7; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)48))))); goto IL_008b; } IL_0050: { int32_t L_11 = V_5; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_008b; } } { int32_t L_12 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1))) { case 0: { goto IL_0070; } case 1: { goto IL_0075; } case 2: { goto IL_007a; } case 3: { goto IL_007f; } } } { goto IL_0082; } IL_0070: { int32_t L_13 = V_5; V_0 = L_13; goto IL_0082; } IL_0075: { int32_t L_14 = V_5; V_1 = L_14; goto IL_0082; } IL_007a: { int32_t L_15 = V_5; V_2 = L_15; goto IL_0082; } IL_007f: { int32_t L_16 = V_5; V_3 = L_16; } IL_0082: { V_5 = (-1); int32_t L_17 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_008b: { int32_t L_18 = V_4; if ((((int32_t)L_18) == ((int32_t)5))) { goto IL_00a0; } } { int32_t L_19 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0096: { int32_t L_20 = V_6; String_t* L_21 = ___info0; NullCheck(L_21); int32_t L_22 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_21, /*hidden argument*/NULL); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_0020; } } IL_00a0: { int32_t L_23 = V_5; if ((((int32_t)L_23) < ((int32_t)0))) { goto IL_00d2; } } { int32_t L_24 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1))) { case 0: { goto IL_00c0; } case 1: { goto IL_00c5; } case 2: { goto IL_00ca; } case 3: { goto IL_00cf; } } } { goto IL_00d2; } IL_00c0: { int32_t L_25 = V_5; V_0 = L_25; goto IL_00d2; } IL_00c5: { int32_t L_26 = V_5; V_1 = L_26; goto IL_00d2; } IL_00ca: { int32_t L_27 = V_5; V_2 = L_27; goto IL_00d2; } IL_00cf: { int32_t L_28 = V_5; V_3 = L_28; } IL_00d2: { int32_t L_29 = V_0; int32_t L_30 = V_1; int32_t L_31 = V_2; int32_t L_32 = V_3; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_33 = (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)il2cpp_codegen_object_new(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var); Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80(L_33, L_29, L_30, L_31, L_32, /*hidden argument*/NULL); return L_33; } } // System.String System.Environment::get_StackTrace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_0 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_mC06D6ED2D5E080D5B9D31E7B595D8A7F0675F504(L_0, 0, (bool)1, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); return L_1; } } // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C (const RuntimeMethod* method) { typedef int32_t (*Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C_ftn)mscorlib::System::Environment::get_TickCount) (); } // System.Void System.Environment::Exit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE (int32_t ___exitCode0, const RuntimeMethod* method) { typedef void (*Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE_ftn) (int32_t); using namespace il2cpp::icalls; ((Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE_ftn)mscorlib::System::Environment::Exit) (___exitCode0); } // System.String System.Environment::ExpandEnvironmentVariables(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300 (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; StringBuilder_t * V_3 = NULL; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t G_B20_0 = 0; { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; NullCheck(L_2); int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)37), /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)(-1))))) { goto IL_001d; } } { String_t* L_5 = ___name0; return L_5; } IL_001d: { String_t* L_6 = ___name0; NullCheck(L_6); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL); V_1 = L_7; V_2 = 0; int32_t L_8 = V_0; int32_t L_9 = V_1; if ((((int32_t)L_8) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1))))) { goto IL_003c; } } { String_t* L_10 = ___name0; int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_10, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL); int32_t L_13 = L_12; V_2 = L_13; if ((!(((uint32_t)L_13) == ((uint32_t)(-1))))) { goto IL_003e; } } IL_003c: { String_t* L_14 = ___name0; return L_14; } IL_003e: { StringBuilder_t * L_15 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_15, /*hidden argument*/NULL); V_3 = L_15; StringBuilder_t * L_16 = V_3; String_t* L_17 = ___name0; int32_t L_18 = V_0; NullCheck(L_16); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_16, L_17, 0, L_18, /*hidden argument*/NULL); V_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)NULL; } IL_0051: { String_t* L_19 = ___name0; int32_t L_20 = V_0; int32_t L_21 = V_2; int32_t L_22 = V_0; NullCheck(L_19); String_t* L_23 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_19, ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)), (int32_t)1)), /*hidden argument*/NULL); V_5 = L_23; String_t* L_24 = V_5; String_t* L_25 = Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185(L_24, /*hidden argument*/NULL); V_6 = L_25; String_t* L_26 = V_6; if (L_26) { goto IL_0090; } } { bool L_27 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_27) { goto IL_0090; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_28 = V_4; if (L_28) { goto IL_0080; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_29 = Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E(/*hidden argument*/NULL); V_4 = L_29; } IL_0080: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_30 = V_4; String_t* L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_30, L_31); V_6 = ((String_t*)IsInstSealed((RuntimeObject*)L_32, String_t_il2cpp_TypeInfo_var)); } IL_0090: { int32_t L_33 = V_2; V_7 = L_33; String_t* L_34 = V_6; if (L_34) { goto IL_00af; } } { StringBuilder_t * L_35 = V_3; NullCheck(L_35); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_35, ((int32_t)37), /*hidden argument*/NULL); StringBuilder_t * L_36 = V_3; String_t* L_37 = V_5; NullCheck(L_36); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, L_37, /*hidden argument*/NULL); int32_t L_38 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); goto IL_00b8; } IL_00af: { StringBuilder_t * L_39 = V_3; String_t* L_40 = V_6; NullCheck(L_39); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_40, /*hidden argument*/NULL); } IL_00b8: { int32_t L_41 = V_2; V_8 = L_41; String_t* L_42 = ___name0; int32_t L_43 = V_2; NullCheck(L_42); int32_t L_44 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_42, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)), /*hidden argument*/NULL); V_0 = L_44; int32_t L_45 = V_0; if ((((int32_t)L_45) == ((int32_t)(-1)))) { goto IL_00de; } } { int32_t L_46 = V_2; int32_t L_47 = V_1; if ((((int32_t)L_46) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1))))) { goto IL_00de; } } { String_t* L_48 = ___name0; int32_t L_49 = V_0; NullCheck(L_48); int32_t L_50 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_48, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)), /*hidden argument*/NULL); G_B20_0 = L_50; goto IL_00df; } IL_00de: { G_B20_0 = (-1); } IL_00df: { V_2 = G_B20_0; int32_t L_51 = V_0; if ((((int32_t)L_51) == ((int32_t)(-1)))) { goto IL_00e8; } } { int32_t L_52 = V_2; if ((!(((uint32_t)L_52) == ((uint32_t)(-1))))) { goto IL_00f2; } } IL_00e8: { int32_t L_53 = V_1; int32_t L_54 = V_8; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)L_54)), (int32_t)1)); goto IL_0106; } IL_00f2: { String_t* L_55 = V_6; if (!L_55) { goto IL_0100; } } { int32_t L_56 = V_0; int32_t L_57 = V_8; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)L_57)), (int32_t)1)); goto IL_0106; } IL_0100: { int32_t L_58 = V_0; int32_t L_59 = V_7; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, (int32_t)L_59)); } IL_0106: { int32_t L_60 = V_0; int32_t L_61 = V_8; if ((((int32_t)L_60) >= ((int32_t)L_61))) { goto IL_010f; } } { int32_t L_62 = V_0; if ((!(((uint32_t)L_62) == ((uint32_t)(-1))))) { goto IL_011d; } } IL_010f: { StringBuilder_t * L_63 = V_3; String_t* L_64 = ___name0; int32_t L_65 = V_8; int32_t L_66 = V_9; NullCheck(L_63); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_63, L_64, ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1)), L_66, /*hidden argument*/NULL); } IL_011d: { int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)(-1)))) { goto IL_0128; } } { int32_t L_68 = V_2; int32_t L_69 = V_1; if ((((int32_t)L_68) < ((int32_t)L_69))) { goto IL_0051; } } IL_0128: { StringBuilder_t * L_70 = V_3; NullCheck(L_70); String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_70); return L_71; } } // System.String System.Environment::internalGetEnvironmentVariable_native(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74 (intptr_t ___variable0, const RuntimeMethod* method) { typedef String_t* (*Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74_ftn) (intptr_t); using namespace il2cpp::icalls; return ((Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74_ftn)mscorlib::System::Environment::internalGetEnvironmentVariable_native) (___variable0); } // System.String System.Environment::internalGetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972 (String_t* ___variable0, const RuntimeMethod* method) { SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F V_0; memset((&V_0), 0, sizeof(V_0)); String_t* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { String_t* L_0 = ___variable0; if (L_0) { goto IL_0005; } } { return (String_t*)NULL; } IL_0005: { String_t* L_1 = ___variable0; SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F L_2 = RuntimeMarshal_MarshalString_m8A782D398D13D0865FFE9B3396966ED903180A1F(L_1, /*hidden argument*/NULL); V_0 = L_2; } IL_000c: try { // begin try (depth: 1) intptr_t L_3 = SafeStringMarshal_get_Value_m70D3D1F546F1D924BDAA1A1322FE2EB7FE18F1D5((SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F *)(&V_0), /*hidden argument*/NULL); String_t* L_4 = Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74((intptr_t)L_3, /*hidden argument*/NULL); V_1 = L_4; IL2CPP_LEAVE(0x29, FINALLY_001b); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001b; } FINALLY_001b: { // begin finally (depth: 1) SafeStringMarshal_Dispose_m031213ECC460DFEA083ECAF0AE51AA70FF548898((SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(27) } // end finally (depth: 1) IL2CPP_CLEANUP(27) { IL2CPP_JUMP_TBL(0x29, IL_0029) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0029: { String_t* L_5 = V_1; return L_5; } } // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method) { { String_t* L_0 = ___variable0; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.Hashtable System.Environment::GetEnvironmentVariablesNoCase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; { CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * L_0 = CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8(/*hidden argument*/NULL); CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * L_1 = CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9(/*hidden argument*/NULL); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var); Hashtable__ctor_mFC259F7B115F0D1AEDE934D8CF7F1288A10A1DFB(L_2, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB(/*hidden argument*/NULL); V_1 = L_3; V_2 = 0; goto IL_002f; } IL_001a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = V_1; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_3 = L_7; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = V_0; String_t* L_9 = V_3; String_t* L_10 = V_3; String_t* L_11 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_10, /*hidden argument*/NULL); NullCheck(L_8); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_8, L_9, L_11); int32_t L_12 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_002f: { int32_t L_13 = V_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = V_1; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))))))) { goto IL_001a; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = V_0; return L_15; } } // System.String System.Environment::GetFolderPath(System.Environment_SpecialFolder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m536A7D7C29197A7B66B60EA9A78B63C7B0BE9C17 (int32_t ___folder0, const RuntimeMethod* method) { { int32_t L_0 = ___folder0; String_t* L_1 = Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5(L_0, 0, /*hidden argument*/NULL); return L_1; } } // System.String System.Environment::GetWindowsFolderPath(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726 (int32_t ___folder0, const RuntimeMethod* method) { typedef String_t* (*Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726_ftn) (int32_t); using namespace il2cpp::icalls; return ((Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726_ftn)mscorlib::System::Environment::GetWindowsFolderPath) (___folder0); } // System.String System.Environment::GetFolderPath(System.Environment_SpecialFolder,System.Environment_SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5 (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method) { String_t* V_0 = NULL; { SecurityManager_EnsureElevatedPermissions_m4169B183D4094E3E840DC0942FBCBDB3E0F127A6(/*hidden argument*/NULL); V_0 = (String_t*)NULL; bool L_0 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_0) { goto IL_0017; } } { int32_t L_1 = ___folder0; String_t* L_2 = Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726(L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_001f; } IL_0017: { int32_t L_3 = ___folder0; int32_t L_4 = ___option1; String_t* L_5 = Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B(L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; } IL_001f: { String_t* L_6 = V_0; return L_6; } } // System.String System.Environment::ReadXdgUserDir(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613 (String_t* ___config_dir0, String_t* ___home_dir1, String_t* ___key2, String_t* ___fallback3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * V_2 = NULL; String_t* V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; bool V_6 = false; String_t* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B17_0 = NULL; { String_t* L_0 = ___key2; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; if (!L_2) { goto IL_0019; } } { String_t* L_3 = V_0; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_5 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0019; } } { String_t* L_6 = V_0; return L_6; } IL_0019: { String_t* L_7 = ___config_dir0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_8 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_7, _stringLiteral9ECB2E572CFDA900F36B37BE28189AFF0757C5D3, /*hidden argument*/NULL); V_1 = L_8; String_t* L_9 = V_1; bool L_10 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0035; } } { String_t* L_11 = ___home_dir1; String_t* L_12 = ___fallback3; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_13 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_11, L_12, /*hidden argument*/NULL); return L_13; } IL_0035: { } IL_0036: try { // begin try (depth: 1) { String_t* L_14 = V_1; StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_15 = (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E *)il2cpp_codegen_object_new(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var); StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD(L_15, L_14, /*hidden argument*/NULL); V_2 = L_15; } IL_003d: try { // begin try (depth: 2) { goto IL_00ca; } IL_0042: { String_t* L_16 = V_3; NullCheck(L_16); String_t* L_17 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_16, /*hidden argument*/NULL); V_3 = L_17; String_t* L_18 = V_3; NullCheck(L_18); int32_t L_19 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_18, ((int32_t)61), /*hidden argument*/NULL); V_4 = L_19; int32_t L_20 = V_4; if ((((int32_t)L_20) <= ((int32_t)8))) { goto IL_00ca; } } IL_0058: { String_t* L_21 = V_3; int32_t L_22 = V_4; NullCheck(L_21); String_t* L_23 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_21, 0, L_22, /*hidden argument*/NULL); String_t* L_24 = ___key2; bool L_25 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00ca; } } IL_0069: { String_t* L_26 = V_3; int32_t L_27 = V_4; NullCheck(L_26); String_t* L_28 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_26, ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)), /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_30 = L_29; NullCheck(L_30); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)34)); NullCheck(L_28); String_t* L_31 = String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E(L_28, L_30, /*hidden argument*/NULL); V_5 = L_31; V_6 = (bool)0; String_t* L_32 = V_5; NullCheck(L_32); bool L_33 = String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B(L_32, _stringLiteral3D87DCCAF91986FA4C389725BCAF948EFFA3E43D, /*hidden argument*/NULL); if (!L_33) { goto IL_00a5; } } IL_0096: { V_6 = (bool)1; String_t* L_34 = V_5; NullCheck(L_34); String_t* L_35 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_34, 6, /*hidden argument*/NULL); V_5 = L_35; goto IL_00b6; } IL_00a5: { String_t* L_36 = V_5; NullCheck(L_36); bool L_37 = String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B(L_36, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL); if (L_37) { goto IL_00b6; } } IL_00b3: { V_6 = (bool)1; } IL_00b6: { bool L_38 = V_6; if (L_38) { goto IL_00be; } } IL_00ba: { String_t* L_39 = V_5; G_B17_0 = L_39; goto IL_00c6; } IL_00be: { String_t* L_40 = ___home_dir1; String_t* L_41 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_42 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_40, L_41, /*hidden argument*/NULL); G_B17_0 = L_42; } IL_00c6: { V_7 = G_B17_0; IL2CPP_LEAVE(0xF0, FINALLY_00d9); } IL_00ca: { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_43 = V_2; NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.IO.TextReader::ReadLine() */, L_43); String_t* L_45 = L_44; V_3 = L_45; if (L_45) { goto IL_0042; } } IL_00d7: { IL2CPP_LEAVE(0xE3, FINALLY_00d9); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00d9; } FINALLY_00d9: { // begin finally (depth: 2) { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_46 = V_2; if (!L_46) { goto IL_00e2; } } IL_00dc: { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_47 = V_2; NullCheck(L_47); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_47); } IL_00e2: { IL2CPP_END_FINALLY(217) } } // end finally (depth: 2) IL2CPP_CLEANUP(217) { IL2CPP_JUMP_TBL(0xF0, IL_00f0) IL2CPP_JUMP_TBL(0xE3, IL_00e3) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00e3: { goto IL_00e8; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00e5; throw e; } CATCH_00e5: { // begin catch(System.IO.FileNotFoundException) goto IL_00e8; } // end catch (depth: 1) IL_00e8: { String_t* L_48 = ___home_dir1; String_t* L_49 = ___fallback3; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_50 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_48, L_49, /*hidden argument*/NULL); return L_50; } IL_00f0: { String_t* L_51 = V_7; return L_51; } } // System.String System.Environment::UnixGetFolderPath(System.Environment_SpecialFolder,System.Environment_SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E(/*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral6D57B527E7613982252D681B40F03DFBEC803607, /*hidden argument*/NULL); V_1 = L_1; String_t* L_2 = V_1; if (!L_2) { goto IL_0021; } } { String_t* L_3 = V_1; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0039; } } IL_0021: { String_t* L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_7 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_6, _stringLiteralD9BBFE341E231DD531A559F974E1015BCC9E6DC1, /*hidden argument*/NULL); V_1 = L_7; String_t* L_8 = V_1; String_t* L_9 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_8, _stringLiteralAAB90DFE8C6F152A4FB071F5F4F9DF804626E6AB, /*hidden argument*/NULL); V_1 = L_9; } IL_0039: { String_t* L_10 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral6D2279C3ECA84EC66A200D8092FAC2AE76692E6F, /*hidden argument*/NULL); V_2 = L_10; String_t* L_11 = V_2; if (!L_11) { goto IL_0054; } } { String_t* L_12 = V_2; String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0060; } } IL_0054: { String_t* L_15 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_16 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_15, _stringLiteral3E63A20FD24D82D9E81A5F39CCDC550B85A2182A, /*hidden argument*/NULL); V_2 = L_16; } IL_0060: { int32_t L_17 = ___folder0; switch (L_17) { case 0: { goto IL_0167; } case 1: { goto IL_0274; } case 2: { goto IL_0268; } case 3: { goto IL_0274; } case 4: { goto IL_0274; } case 5: { goto IL_0161; } case 6: { goto IL_0214; } case 7: { goto IL_0268; } case 8: { goto IL_0268; } case 9: { goto IL_0268; } case 10: { goto IL_0274; } case 11: { goto IL_0268; } case 12: { goto IL_0274; } case 13: { goto IL_0179; } case 14: { goto IL_01d7; } case 15: { goto IL_0274; } case 16: { goto IL_0167; } case 17: { goto IL_015b; } case 18: { goto IL_0274; } case 19: { goto IL_0268; } case 20: { goto IL_01ef; } case 21: { goto IL_01c5; } case 22: { goto IL_0268; } case 23: { goto IL_0268; } case 24: { goto IL_0268; } case 25: { goto IL_0268; } case 26: { goto IL_0163; } case 27: { goto IL_0268; } case 28: { goto IL_0165; } case 29: { goto IL_0274; } case 30: { goto IL_0274; } case 31: { goto IL_0274; } case 32: { goto IL_0247; } case 33: { goto IL_0268; } case 34: { goto IL_0268; } case 35: { goto IL_026e; } case 36: { goto IL_0268; } case 37: { goto IL_0268; } case 38: { goto IL_0233; } case 39: { goto IL_019f; } case 40: { goto IL_0266; } case 41: { goto IL_0268; } case 42: { goto IL_0268; } case 43: { goto IL_0268; } case 44: { goto IL_0268; } case 45: { goto IL_01e9; } case 46: { goto IL_0268; } case 47: { goto IL_0268; } case 48: { goto IL_0268; } case 49: { goto IL_0274; } case 50: { goto IL_0274; } case 51: { goto IL_0274; } case 52: { goto IL_0274; } case 53: { goto IL_0268; } case 54: { goto IL_0268; } case 55: { goto IL_0268; } case 56: { goto IL_0268; } case 57: { goto IL_0268; } case 58: { goto IL_0268; } case 59: { goto IL_0268; } } } { goto IL_0274; } IL_015b: { String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_18; } IL_0161: { String_t* L_19 = V_0; return L_19; } IL_0163: { String_t* L_20 = V_2; return L_20; } IL_0165: { String_t* L_21 = V_1; return L_21; } IL_0167: { String_t* L_22 = V_2; String_t* L_23 = V_0; String_t* L_24 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_22, L_23, _stringLiteral758F870D25D935A22E7B6F601A5D67252C7D24A1, _stringLiteral532C67FE1B5AFAE15D2D08FBA7A78DE0F63CC4B5, /*hidden argument*/NULL); return L_24; } IL_0179: { int32_t L_25 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_25) == ((uint32_t)6)))) { goto IL_018d; } } { String_t* L_26 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_27 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_26, _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9, /*hidden argument*/NULL); return L_27; } IL_018d: { String_t* L_28 = V_2; String_t* L_29 = V_0; String_t* L_30 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_28, L_29, _stringLiteral764C1CDCDDB924E02A85EDBA8640D467D06A6FA4, _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9, /*hidden argument*/NULL); return L_30; } IL_019f: { int32_t L_31 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_31) == ((uint32_t)6)))) { goto IL_01b3; } } { String_t* L_32 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_33 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_32, _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C, /*hidden argument*/NULL); return L_33; } IL_01b3: { String_t* L_34 = V_2; String_t* L_35 = V_0; String_t* L_36 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_34, L_35, _stringLiteral9300964C68712BA23F34ACEF429540225754B632, _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C, /*hidden argument*/NULL); return L_36; } IL_01c5: { String_t* L_37 = V_2; String_t* L_38 = V_0; String_t* L_39 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_37, L_38, _stringLiteral33EA80F35FE737B35E1D085138643A2660006847, _stringLiteralF25B700ED9F092123A43ACB205A6869342CF9DD6, /*hidden argument*/NULL); return L_39; } IL_01d7: { String_t* L_40 = V_2; String_t* L_41 = V_0; String_t* L_42 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_40, L_41, _stringLiteralD6D9970C3066A54835E00256D44ECD8153325A03, _stringLiteral56B71E89FB1079CAAADEFD0889E9A22E8B0560E3, /*hidden argument*/NULL); return L_42; } IL_01e9: { return _stringLiteral99D088ED5F1BAC91ECED72079B3134C8258E1646; } IL_01ef: { int32_t L_43 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_43) == ((uint32_t)6)))) { goto IL_0208; } } { String_t* L_44 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_45 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_44, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteralFFE688A5014306635CD935F7169187B7DB387CD5, /*hidden argument*/NULL); return L_45; } IL_0208: { String_t* L_46 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_47 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_46, _stringLiteral8705DFCA077C41F08BF9E2BF4473510D785B14E3, /*hidden argument*/NULL); return L_47; } IL_0214: { int32_t L_48 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_48) == ((uint32_t)6)))) { goto IL_022d; } } { String_t* L_49 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_50 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_49, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteral07B3E447DB02B7CC20A78A57C316FEBAE22ED72B, /*hidden argument*/NULL); return L_50; } IL_022d: { String_t* L_51 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_51; } IL_0233: { int32_t L_52 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_52) == ((uint32_t)6)))) { goto IL_0241; } } { return _stringLiteral4EE7F9F6F091866B32663BB85C3E9589E6A0D50E; } IL_0241: { String_t* L_53 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_53; } IL_0247: { int32_t L_54 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_54) == ((uint32_t)6)))) { goto IL_0260; } } { String_t* L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_56 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_55, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteral26D1D6E68E2EFB43040F5747213A436E201DDBD2, /*hidden argument*/NULL); return L_56; } IL_0260: { String_t* L_57 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_57; } IL_0266: { String_t* L_58 = V_0; return L_58; } IL_0268: { String_t* L_59 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_59; } IL_026e: { return _stringLiteral88CCFACD3FCBE4CCCD76B3480CC051D875ED4591; } IL_0274: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_60 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_60, _stringLiteralF38EA64458B7FBE78C409B9159F322E075AF0B50, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, NULL, Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_RuntimeMethod_var); } } // System.Void System.Environment::FailFast(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176 (String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_0 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_RuntimeMethod_var); } } // System.Void System.Environment::FailFast(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607 (String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t * L_1 = ___exception1; ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * L_2 = (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)il2cpp_codegen_object_new(ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var); ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D(L_2, L_0, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_RuntimeMethod_var); } } // System.Boolean System.Environment::get_Is64BitProcess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_Is64BitProcess_mEEAFF56728363604DEE63AFBDFE97E54A251AEB1 (const RuntimeMethod* method) { { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)8))? 1 : 0); } } // System.Int32 System.Environment::get_ProcessorCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD (const RuntimeMethod* method) { typedef int32_t (*Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD_ftn)mscorlib::System::Environment::get_ProcessorCount) (); } // System.Boolean System.Environment::get_IsRunningOnWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D (const RuntimeMethod* method) { { int32_t L_0 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); return (bool)((((int32_t)L_0) < ((int32_t)4))? 1 : 0); } } // System.String[] System.Environment::GetEnvironmentVariableNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB (const RuntimeMethod* method) { typedef StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* (*Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB_ftn)mscorlib::System::Environment::GetEnvironmentVariableNames) (); } // System.String System.Environment::GetMachineConfigPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C (const RuntimeMethod* method) { typedef String_t* (*Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C_ftn)mscorlib::System::Environment::GetMachineConfigPath) (); } // System.String System.Environment::internalGetHome() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E (const RuntimeMethod* method) { typedef String_t* (*Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E_ftn) (); using namespace il2cpp::icalls; return ((Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E_ftn)mscorlib::System::Environment::internalGetHome) (); } // System.Int32 System.Environment::GetPageSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E (const RuntimeMethod* method) { typedef int32_t (*Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E_ftn)mscorlib::System::Environment::GetPageSize) (); } // System.String System.Environment::GetStackTrace(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B (Exception_t * ___e0, bool ___needFileInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * V_0 = NULL; { Exception_t * L_0 = ___e0; if (L_0) { goto IL_000c; } } { bool L_1 = ___needFileInfo1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_2 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_mCF16893B6C5EEC13841370A064CFF74E9F54E997(L_2, L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_0014; } IL_000c: { Exception_t * L_3 = ___e0; bool L_4 = ___needFileInfo1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_5 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408(L_5, L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; } IL_0014: { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_6 = V_0; NullCheck(L_6); String_t* L_7 = StackTrace_ToString_m1C8457C5B1405CB08B90BEC24F67D636EF5026A5(L_6, 0, /*hidden argument*/NULL); return L_7; } } #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.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.EventArgs::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_0 = (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *)il2cpp_codegen_object_new(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(L_0, /*hidden argument*/NULL); ((EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var))->set_Empty_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.EventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __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.EventHandler::Invoke(System.Object,System.EventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); 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 *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, 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_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, 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 (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, 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 *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } // System.IAsyncResult System.EventHandler::BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventHandler_BeginInvoke_m60A0326EC6963814F98B6D62CA083FACACE82FA9 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___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.EventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_EndInvoke_mDC1492EADF97D0B486622531F5AD06AA15849A24 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __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 // Conversion methods for marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke(const Exception_t& unmarshaled, Exception_t_marshaled_pinvoke& marshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_back(const Exception_t_marshaled_pinvoke& marshaled, Exception_t& unmarshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_cleanup(Exception_t_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_com(const Exception_t& unmarshaled, Exception_t_marshaled_com& marshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } IL2CPP_EXTERN_C void Exception_t_marshal_com_back(const Exception_t_marshaled_com& marshaled, Exception_t& unmarshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_com_cleanup(Exception_t_marshaled_com& marshaled) { } // System.Void System.Exception::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81 (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set__message_2((String_t*)NULL); __this->set__stackTrace_6(NULL); __this->set__dynamicMethods_10(NULL); Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, ((int32_t)-2146233088), /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_0 = (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)il2cpp_codegen_object_new(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var); SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A(L_0, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(L_0); return; } } // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); return; } } // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); String_t* L_0 = ___message0; __this->set__message_2(L_0); return; } } // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); String_t* L_0 = ___message0; __this->set__message_2(L_0); Exception_t * L_1 = ___innerException1; __this->set__innerException_4(L_1); return; } } // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var); } IL_0014: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; NullCheck(L_2); String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39, /*hidden argument*/NULL); __this->set__className_1(L_3); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; NullCheck(L_4); String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00, /*hidden argument*/NULL); __this->set__message_2(L_5); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF(L_6, _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11, L_8, /*hidden argument*/NULL); __this->set__data_3(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6, L_12, /*hidden argument*/NULL); __this->set__innerException_4(((Exception_t *)CastclassClass((RuntimeObject*)L_13, Exception_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; NullCheck(L_14); String_t* L_15 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_14, _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA, /*hidden argument*/NULL); __this->set__helpURL_5(L_15); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0; NullCheck(L_16); String_t* L_17 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_16, _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895, /*hidden argument*/NULL); __this->set__stackTraceString_7(L_17); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; NullCheck(L_18); String_t* L_19 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_18, _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170, /*hidden argument*/NULL); __this->set__remoteStackTraceString_8(L_19); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = ___info0; NullCheck(L_20); int32_t L_21 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_20, _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C, /*hidden argument*/NULL); __this->set__remoteStackIndex_9(L_21); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0; NullCheck(L_22); int32_t L_23 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_22, _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545, /*hidden argument*/NULL); Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, L_23, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_24 = ___info0; NullCheck(L_24); String_t* L_25 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_24, _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F, /*hidden argument*/NULL); __this->set__source_12(L_25); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_26 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); NullCheck(L_26); RuntimeObject * L_29 = SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF(L_26, _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2, L_28, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(((SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)IsInstSealed((RuntimeObject*)L_29, SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var))); String_t* L_30 = __this->get__className_1(); if (!L_30) { goto IL_010c; } } { int32_t L_31 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); if (L_31) { goto IL_011c; } } IL_010c: { String_t* L_32 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_33 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_33, L_32, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, NULL, Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var); } IL_011c: { int32_t L_34 = StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)(&___context1), /*hidden argument*/NULL); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)128))))) { goto IL_0148; } } { String_t* L_35 = __this->get__remoteStackTraceString_8(); String_t* L_36 = __this->get__stackTraceString_7(); String_t* L_37 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_35, L_36, /*hidden argument*/NULL); __this->set__remoteStackTraceString_8(L_37); __this->set__stackTraceString_7((String_t*)NULL); } IL_0148: { return; } } // System.String System.Exception::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get__message_2(); if (L_0) { goto IL_0036; } } { String_t* L_1 = __this->get__className_1(); if (L_1) { goto IL_001c; } } { String_t* L_2 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); __this->set__className_1(L_2); } IL_001c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = __this->get__className_1(); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral587CAF0E2EADCED18EC63C9F5DCB6EB925840F59, L_4, /*hidden argument*/NULL); return L_6; } IL_0036: { String_t* L_7 = __this->get__message_2(); return L_7; } } // System.String System.Exception::GetClassName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__className_1(); if (L_0) { goto IL_0019; } } { Type_t * L_1 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); __this->set__className_1(L_2); } IL_0019: { String_t* L_3 = __this->get__className_1(); return L_3; } } // System.Exception System.Exception::get_InnerException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F (Exception_t * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get__innerException_4(); return L_0; } } // System.String System.Exception::get_StackTrace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_StackTrace_mF54AABBF2569597935F88AAF7BCD29C6639F8306 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0(__this, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::GetStackTrace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0 (Exception_t * __this, bool ___needFileInfo0, const RuntimeMethod* method) { String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = __this->get__stackTraceString_7(); V_0 = L_0; String_t* L_1 = __this->get__remoteStackTraceString_8(); V_1 = L_1; bool L_2 = ___needFileInfo0; if (L_2) { goto IL_0023; } } { String_t* L_3 = V_0; String_t* L_4 = Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1(__this, L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_1; String_t* L_6 = Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1(__this, L_5, (bool)1, /*hidden argument*/NULL); V_1 = L_6; } IL_0023: { String_t* L_7 = V_0; if (!L_7) { goto IL_002e; } } { String_t* L_8 = V_1; String_t* L_9 = V_0; String_t* L_10 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_8, L_9, /*hidden argument*/NULL); return L_10; } IL_002e: { RuntimeObject * L_11 = __this->get__stackTrace_6(); if (L_11) { goto IL_0038; } } { String_t* L_12 = V_1; return L_12; } IL_0038: { bool L_13 = ___needFileInfo0; String_t* L_14 = Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B(__this, L_13, /*hidden argument*/NULL); V_2 = L_14; String_t* L_15 = V_1; String_t* L_16 = V_2; String_t* L_17 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.Void System.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method) { { int32_t L_0 = ___hr0; Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, L_0, /*hidden argument*/NULL); return; } } // System.String System.Exception::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * V_0 = NULL; MethodBase_t * V_1 = NULL; { String_t* L_0 = __this->get__source_12(); if (L_0) { goto IL_004a; } } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_1 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408(L_1, __this, (bool)1, /*hidden argument*/NULL); V_0 = L_1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Diagnostics.StackTrace::get_FrameCount() */, L_2); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_004a; } } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_4 = V_0; NullCheck(L_4); StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 * L_5 = VirtFuncInvoker1< StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 *, int32_t >::Invoke(5 /* System.Diagnostics.StackFrame System.Diagnostics.StackTrace::GetFrame(System.Int32) */, L_4, 0); NullCheck(L_5); MethodBase_t * L_6 = VirtFuncInvoker0< MethodBase_t * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, L_5); V_1 = L_6; MethodBase_t * L_7 = V_1; bool L_8 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_7, (MethodBase_t *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_004a; } } { MethodBase_t * L_9 = V_1; NullCheck(L_9); Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_9); NullCheck(L_10); Assembly_t * L_11 = VirtFuncInvoker0< Assembly_t * >::Invoke(24 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_10); NullCheck(L_11); AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_12 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(19 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_11); NullCheck(L_12); String_t* L_13 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_12, /*hidden argument*/NULL); __this->set__source_12(L_13); } IL_004a: { String_t* L_14 = __this->get__source_12(); return L_14; } } // System.String System.Exception::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m403BC2DBD48C830789D6270B4E917AB2D5E88183 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72(__this, (bool)1, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::ToString(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72 (Exception_t * __this, bool ___needFileLineInfo0, bool ___needMessage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* G_B3_0 = NULL; { bool L_0 = ___needMessage1; if (L_0) { goto IL_0006; } } { G_B3_0 = ((String_t*)(NULL)); goto IL_000c; } IL_0006: { String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); G_B3_0 = L_1; } IL_000c: { V_0 = G_B3_0; String_t* L_2 = V_0; if (!L_2) { goto IL_0019; } } { String_t* L_3 = V_0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_0022; } } IL_0019: { String_t* L_5 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); V_1 = L_5; goto IL_0034; } IL_0022: { String_t* L_6 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); String_t* L_7 = V_0; String_t* L_8 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_6, _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77, L_7, /*hidden argument*/NULL); V_1 = L_8; } IL_0034: { Exception_t * L_9 = __this->get__innerException_4(); if (!L_9) { goto IL_0081; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; String_t* L_12 = V_1; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_12); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_11; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13; Exception_t * L_15 = __this->get__innerException_4(); bool L_16 = ___needFileLineInfo0; bool L_17 = ___needMessage1; NullCheck(L_15); String_t* L_18 = Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72(L_15, L_16, L_17, /*hidden argument*/NULL); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_18); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_18); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_14; String_t* L_20 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_20); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_19; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = L_21; String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral408F64453B908F42FD60655B6602FE9C593982CA, /*hidden argument*/NULL); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_23); String_t* L_24 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_22, /*hidden argument*/NULL); V_1 = L_24; } IL_0081: { bool L_25 = ___needFileLineInfo0; String_t* L_26 = Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0(__this, L_25, /*hidden argument*/NULL); V_2 = L_26; String_t* L_27 = V_2; if (!L_27) { goto IL_0099; } } { String_t* L_28 = V_1; String_t* L_29 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_30 = V_2; String_t* L_31 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_28, L_29, L_30, /*hidden argument*/NULL); V_1 = L_31; } IL_0099: { String_t* L_32 = V_1; return L_32; } } // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = 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, Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_RuntimeMethod_var); } IL_000e: { String_t* L_2 = __this->get__stackTraceString_7(); V_0 = L_2; RuntimeObject * L_3 = __this->get__stackTrace_6(); if (!L_3) { goto IL_0028; } } { String_t* L_4 = V_0; if (L_4) { goto IL_0028; } } { String_t* L_5 = Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B(__this, (bool)1, /*hidden argument*/NULL); V_0 = L_5; } IL_0028: { String_t* L_6 = __this->get__source_12(); if (L_6) { goto IL_003c; } } { String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_Source() */, __this); __this->set__source_12(L_7); } IL_003c: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; String_t* L_9 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); NullCheck(L_8); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_8, _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39, L_9, L_11, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0; String_t* L_13 = __this->get__message_2(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); NullCheck(L_12); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_12, _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00, L_13, L_15, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0; RuntimeObject* L_17 = __this->get__data_3(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) }; Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL); NullCheck(L_16); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_16, _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11, L_17, L_19, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = ___info0; Exception_t * L_21 = __this->get__innerException_4(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) }; Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); NullCheck(L_20); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_20, _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6, L_21, L_23, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_24 = ___info0; String_t* L_25 = __this->get__helpURL_5(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_26 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_27 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_26, /*hidden argument*/NULL); NullCheck(L_24); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_24, _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA, L_25, L_27, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_28 = ___info0; String_t* L_29 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); NullCheck(L_28); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_28, _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895, L_29, L_31, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_32 = ___info0; String_t* L_33 = __this->get__remoteStackTraceString_8(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_34, /*hidden argument*/NULL); NullCheck(L_32); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_32, _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170, L_33, L_35, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_36 = ___info0; int32_t L_37 = __this->get__remoteStackIndex_9(); int32_t L_38 = L_37; RuntimeObject * L_39 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_38); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL); NullCheck(L_36); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_36, _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C, L_39, L_41, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_42 = ___info0; NullCheck(L_42); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_42, _stringLiteralDFE109EFC8BE01B7D637E36D004DD36AD98A1201, NULL, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_43 = ___info0; int32_t L_44 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); NullCheck(L_43); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_43, _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545, L_44, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_45 = ___info0; String_t* L_46 = __this->get__source_12(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); NullCheck(L_45); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_45, _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F, L_46, L_48, /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_49 = __this->get__safeSerializationManager_13(); if (!L_49) { goto IL_018a; } } { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_50 = __this->get__safeSerializationManager_13(); NullCheck(L_50); bool L_51 = SafeSerializationManager_get_IsActive_m66AE1987E10E73E7CB019E3CE14D7FFD7856AD4B(L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_018a; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_52 = ___info0; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_53 = __this->get__safeSerializationManager_13(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_54, /*hidden argument*/NULL); NullCheck(L_52); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_52, _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2, L_53, L_55, /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_56 = __this->get__safeSerializationManager_13(); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_57 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_58 = ___context1; NullCheck(L_56); SafeSerializationManager_CompleteSerialization_mC577DAFEBD7AA3E14807DCA75864D835475231CB(L_56, __this, L_57, L_58, /*hidden argument*/NULL); } IL_018a: { return; } } // System.Void System.Exception::OnDeserialized(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E (Exception_t * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set__stackTrace_6(NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_0 = __this->get__safeSerializationManager_13(); if (L_0) { goto IL_001b; } } { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_1 = (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)il2cpp_codegen_object_new(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var); SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A(L_1, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(L_1); return; } IL_001b: { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_2 = __this->get__safeSerializationManager_13(); NullCheck(L_2); SafeSerializationManager_CompleteDeserialization_mC041209DDA3C3D765E7045DCA34682108858E3B1(L_2, __this, /*hidden argument*/NULL); return; } } // System.String System.Exception::StripFileInfo(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1 (Exception_t * __this, String_t* ___stackTrace0, bool ___isRemoteStackTrace1, const RuntimeMethod* method) { { String_t* L_0 = ___stackTrace0; return L_0; } } // System.Void System.Exception::RestoreExceptionDispatchInfo(System.Runtime.ExceptionServices.ExceptionDispatchInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F (Exception_t * __this, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___exceptionDispatchInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = ___exceptionDispatchInfo0; NullCheck(L_0); RuntimeObject * L_1 = ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline(L_0, /*hidden argument*/NULL); __this->set_captured_traces_14(((StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196*)Castclass((RuntimeObject*)L_1, StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196_il2cpp_TypeInfo_var))); __this->set__stackTrace_6(NULL); __this->set__stackTraceString_7((String_t*)NULL); return; } } // System.Int32 System.Exception::get_HResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502 (Exception_t * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__HResult_11(); return L_0; } } // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99 (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__HResult_11(L_0); return; } } // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method) { { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::GetMessageFromNativeResources(System.Exception_ExceptionMessageKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087 (int32_t ___kind0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___kind0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))) { case 0: { goto IL_0016; } case 1: { goto IL_001c; } case 2: { goto IL_0022; } } } { goto IL_0028; } IL_0016: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_001c: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0022: { return _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA; } IL_0028: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } } // System.Exception System.Exception::FixRemotingException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2 (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* G_B3_0 = NULL; { int32_t L_0 = __this->get__remoteStackIndex_9(); if (!L_0) { goto IL_0014; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralB01F1CC7133E621E07A9C1B376C56F8218636E39, /*hidden argument*/NULL); G_B3_0 = L_1; goto IL_001e; } IL_0014: { String_t* L_2 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral00C5B9DB11398305E81DD934CC30030C1A628291, /*hidden argument*/NULL); G_B3_0 = L_2; } IL_001e: { String_t* L_3 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Exception::get_StackTrace() */, __this); int32_t L_5 = __this->get__remoteStackIndex_9(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); String_t* L_8 = String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99(G_B3_0, L_3, L_4, L_7, /*hidden argument*/NULL); V_0 = L_8; String_t* L_9 = V_0; __this->set__remoteStackTraceString_8(L_9); int32_t L_10 = __this->get__remoteStackIndex_9(); __this->set__remoteStackIndex_9(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); __this->set__stackTraceString_7((String_t*)NULL); return __this; } } // System.Void System.Exception::ReportUnhandledException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086 (Exception_t * ___exception0, const RuntimeMethod* method) { typedef void (*Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086_ftn) (Exception_t *); using namespace il2cpp::icalls; ((Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086_ftn)mscorlib::System::Exception::ReportUnhandledException) (___exception0); } // System.Void System.Exception::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((Exception_t_StaticFields*)il2cpp_codegen_static_fields_for(Exception_t_il2cpp_TypeInfo_var))->set_s_EDILock_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.ExecutionEngineException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDEAE2CA6EAEA43A091674E31DD8E8D250C14C844, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m600655C7E3D06ADB9A435EFAE483BBC05A8C11AC (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_mDB8489BBBC644EB14FDFEA89468A3FC654A299AF (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.FieldAccessException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBB1EEAB40131BAA9BA8E8A7AE56779A8FA7C7A5A, /*hidden argument*/NULL); MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233081), /*hidden argument*/NULL); return; } } // System.Void System.FieldAccessException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_mDBE9806F085E392F4198EE67F7326F5E5E951453 (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233081), /*hidden argument*/NULL); return; } } // System.Void System.FieldAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_m919683E34FF57340F2C91D29D16D1619D931E494 (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.FlagsAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FlagsAttribute__ctor_mDB9F9F47C36D0E9D25218718D1F76C6165B9A66D (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867 * __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.Void System.FormatException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1667A6DBF1A3F8146908B8EBC18AF7CDEC1FEFD, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mDC141C414E24BE865FC8853970BF83C5B8C7676C (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.GC::RecordPressure(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA (int64_t ___bytesAllocated0, const RuntimeMethod* method) { typedef void (*GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA_ftn) (int64_t); using namespace il2cpp::icalls; ((GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA_ftn)mscorlib::System::GC::RecordPressure) (___bytesAllocated0); } // System.Void System.GC::register_ephemeron_array(System.Runtime.CompilerServices.Ephemeron[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729 (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___array0, const RuntimeMethod* method) { typedef void (*GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729_ftn) (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*); using namespace il2cpp::icalls; ((GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729_ftn)mscorlib::System::GC::register_ephemeron_array) (___array0); } // System.Object System.GC::get_ephemeron_tombstone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC (const RuntimeMethod* method) { typedef RuntimeObject * (*GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC_ftn) (); using namespace il2cpp::icalls; return ((GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC_ftn)mscorlib::System::GC::get_ephemeron_tombstone) (); } // System.Void System.GC::AddMemoryPressure(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE (int64_t ___bytesAllocated0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___bytesAllocated0; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralF070C8E067F3E2E92524DE3089ACBBEFC81CD862, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE_RuntimeMethod_var); } IL_001a: { int32_t L_3 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((!(((uint32_t)4) == ((uint32_t)L_3)))) { goto IL_0040; } } { int64_t L_4 = ___bytesAllocated0; if ((((int64_t)L_4) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0040; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral76BDE391F8E7164AE2286DF1C9A661FDC5CD88A8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteral3B4C0C6565E036A82BEEF4CF4D00366AF668111F, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, GC_AddMemoryPressure_mF48FE7CA2DC4D23FDD5B7B0A7D0B6C1C598771CE_RuntimeMethod_var); } IL_0040: { int64_t L_7 = ___bytesAllocated0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA(L_7, /*hidden argument*/NULL); return; } } // System.Void System.GC::RemoveMemoryPressure(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704 (int64_t ___bytesAllocated0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___bytesAllocated0; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralF070C8E067F3E2E92524DE3089ACBBEFC81CD862, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704_RuntimeMethod_var); } IL_001a: { int32_t L_3 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((!(((uint32_t)4) == ((uint32_t)L_3)))) { goto IL_0040; } } { int64_t L_4 = ___bytesAllocated0; if ((((int64_t)L_4) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0040; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral76BDE391F8E7164AE2286DF1C9A661FDC5CD88A8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteralF070C8E067F3E2E92524DE3089ACBBEFC81CD862, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, GC_RemoveMemoryPressure_mBA7395DAA88C4F1656648172EE98A14F2E726704_RuntimeMethod_var); } IL_0040: { int64_t L_7 = ___bytesAllocated0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_RecordPressure_mD275B9A0BC09F0DD2086EEE59593488015BCFBEA(((-L_7)), /*hidden argument*/NULL); return; } } // System.Void System.GC::KeepAlive(System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void GC_KeepAlive_mE836EDA45A7C6BFDCEA004B9089FA6B4810BDA89 (RuntimeObject * ___obj0, const RuntimeMethod* method) { { return; } } // System.Void System.GC::_SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8 (RuntimeObject * ___o0, const RuntimeMethod* method) { typedef void (*GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8_ftn) (RuntimeObject *); using namespace il2cpp::icalls; ((GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8_ftn)mscorlib::System::GC::_SuppressFinalize) (___o0); } // System.Void System.GC::SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8(L_2, /*hidden argument*/NULL); return; } } // System.Void System.GC::_ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6 (RuntimeObject * ___o0, const RuntimeMethod* method) { typedef void (*GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6_ftn) (RuntimeObject *); using namespace il2cpp::icalls; ((GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6_ftn)mscorlib::System::GC::_ReRegisterForFinalize) (___o0); } // System.Void System.GC::ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6(L_2, /*hidden argument*/NULL); return; } } // System.Void System.GC::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC(/*hidden argument*/NULL); ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->set_EPHEMERON_TOMBSTONE_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.Bootstring::.ctor(System.Char,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Bootstring__ctor_m850EF79D97E5FE3553C5CC84AF4B14C7B914AE45 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___delimiter0, int32_t ___baseNum1, int32_t ___tmin2, int32_t ___tmax3, int32_t ___skew4, int32_t ___damp5, int32_t ___initialBias6, int32_t ___initialN7, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Il2CppChar L_0 = ___delimiter0; __this->set_delimiter_0(L_0); int32_t L_1 = ___baseNum1; __this->set_base_num_1(L_1); int32_t L_2 = ___tmin2; __this->set_tmin_2(L_2); int32_t L_3 = ___tmax3; __this->set_tmax_3(L_3); int32_t L_4 = ___skew4; __this->set_skew_4(L_4); int32_t L_5 = ___damp5; __this->set_damp_5(L_5); int32_t L_6 = ___initialBias6; __this->set_initial_bias_6(L_6); int32_t L_7 = ___initialN7; __this->set_initial_n_7(L_7); return; } } // System.String System.Globalization.Bootstring::Encode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; StringBuilder_t * V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; Il2CppChar V_10 = 0x0; int32_t V_11 = 0; int32_t V_12 = 0; int32_t V_13 = 0; int32_t G_B24_0 = 0; { int32_t L_0 = __this->get_initial_n_7(); V_0 = L_0; V_1 = 0; int32_t L_1 = __this->get_initial_bias_6(); V_2 = L_1; V_3 = 0; V_4 = 0; StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); V_5 = L_2; V_6 = 0; goto IL_0046; } IL_0021: { String_t* L_3 = ___s0; int32_t L_4 = V_6; NullCheck(L_3); Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL); if ((((int32_t)L_5) >= ((int32_t)((int32_t)128)))) { goto IL_0040; } } { StringBuilder_t * L_6 = V_5; String_t* L_7 = ___s0; int32_t L_8 = V_6; NullCheck(L_7); Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_6, L_9, /*hidden argument*/NULL); } IL_0040: { int32_t L_10 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0046: { int32_t L_11 = V_6; String_t* L_12 = ___s0; NullCheck(L_12); int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL); if ((((int32_t)L_11) < ((int32_t)L_13))) { goto IL_0021; } } { StringBuilder_t * L_14 = V_5; NullCheck(L_14); int32_t L_15 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_14, /*hidden argument*/NULL); int32_t L_16 = L_15; V_4 = L_16; V_3 = L_16; int32_t L_17 = V_3; if ((((int32_t)L_17) <= ((int32_t)0))) { goto IL_01ae; } } { StringBuilder_t * L_18 = V_5; Il2CppChar L_19 = __this->get_delimiter_0(); NullCheck(L_18); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_18, L_19, /*hidden argument*/NULL); goto IL_01ae; } IL_0075: { V_7 = ((int32_t)2147483647LL); V_8 = 0; goto IL_00a8; } IL_0081: { String_t* L_20 = ___s0; int32_t L_21 = V_8; NullCheck(L_20); Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_20, L_21, /*hidden argument*/NULL); int32_t L_23 = V_0; if ((((int32_t)L_22) < ((int32_t)L_23))) { goto IL_00a2; } } { String_t* L_24 = ___s0; int32_t L_25 = V_8; NullCheck(L_24); Il2CppChar L_26 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_24, L_25, /*hidden argument*/NULL); int32_t L_27 = V_7; if ((((int32_t)L_26) >= ((int32_t)L_27))) { goto IL_00a2; } } { String_t* L_28 = ___s0; int32_t L_29 = V_8; NullCheck(L_28); Il2CppChar L_30 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_28, L_29, /*hidden argument*/NULL); V_7 = L_30; } IL_00a2: { int32_t L_31 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); } IL_00a8: { int32_t L_32 = V_8; String_t* L_33 = ___s0; NullCheck(L_33); int32_t L_34 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_33, /*hidden argument*/NULL); if ((((int32_t)L_32) < ((int32_t)L_34))) { goto IL_0081; } } { int32_t L_35 = V_1; int32_t L_36 = V_7; int32_t L_37 = V_0; if (((int64_t)L_36 - (int64_t)L_37 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_36 - (int64_t)L_37 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); int32_t L_38 = V_4; if (((int64_t)L_38 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_38 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); if (((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))))); int32_t L_39 = V_7; V_0 = L_39; V_9 = 0; goto IL_0199; } IL_00c9: { String_t* L_40 = ___s0; int32_t L_41 = V_9; NullCheck(L_40); Il2CppChar L_42 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_40, L_41, /*hidden argument*/NULL); V_10 = L_42; Il2CppChar L_43 = V_10; int32_t L_44 = V_0; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00e1; } } { Il2CppChar L_45 = V_10; if ((((int32_t)L_45) >= ((int32_t)((int32_t)128)))) { goto IL_00e5; } } IL_00e1: { int32_t L_46 = V_1; if (((int64_t)L_46 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_46 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)); } IL_00e5: { Il2CppChar L_47 = V_10; int32_t L_48 = V_0; if ((!(((uint32_t)L_47) == ((uint32_t)L_48)))) { goto IL_0193; } } { int32_t L_49 = V_1; V_11 = L_49; int32_t L_50 = __this->get_base_num_1(); V_12 = L_50; } IL_00f8: { int32_t L_51 = V_12; int32_t L_52 = V_2; int32_t L_53 = __this->get_tmin_2(); if ((((int32_t)L_51) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_53))))) { goto IL_011e; } } { int32_t L_54 = V_12; int32_t L_55 = V_2; int32_t L_56 = __this->get_tmax_3(); if ((((int32_t)L_54) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56))))) { goto IL_0116; } } { int32_t L_57 = V_12; int32_t L_58 = V_2; G_B24_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_57, (int32_t)L_58)); goto IL_0124; } IL_0116: { int32_t L_59 = __this->get_tmax_3(); G_B24_0 = L_59; goto IL_0124; } IL_011e: { int32_t L_60 = __this->get_tmin_2(); G_B24_0 = L_60; } IL_0124: { V_13 = G_B24_0; int32_t L_61 = V_11; int32_t L_62 = V_13; if ((((int32_t)L_61) < ((int32_t)L_62))) { goto IL_016a; } } { StringBuilder_t * L_63 = V_5; int32_t L_64 = V_13; int32_t L_65 = V_11; int32_t L_66 = V_13; int32_t L_67 = __this->get_base_num_1(); int32_t L_68 = V_13; Il2CppChar L_69 = Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66))%(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_67, (int32_t)L_68)))))), /*hidden argument*/NULL); NullCheck(L_63); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_63, L_69, /*hidden argument*/NULL); int32_t L_70 = V_11; int32_t L_71 = V_13; int32_t L_72 = __this->get_base_num_1(); int32_t L_73 = V_13; V_11 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_71))/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)L_73)))); int32_t L_74 = V_12; int32_t L_75 = __this->get_base_num_1(); V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)L_75)); goto IL_00f8; } IL_016a: { StringBuilder_t * L_76 = V_5; int32_t L_77 = V_11; Il2CppChar L_78 = Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C(__this, L_77, /*hidden argument*/NULL); NullCheck(L_76); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_76, L_78, /*hidden argument*/NULL); int32_t L_79 = V_1; int32_t L_80 = V_4; int32_t L_81 = V_4; int32_t L_82 = V_3; int32_t L_83 = Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712(__this, L_79, ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)), (bool)((((int32_t)L_81) == ((int32_t)L_82))? 1 : 0), /*hidden argument*/NULL); V_2 = L_83; V_1 = 0; int32_t L_84 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)1)); } IL_0193: { int32_t L_85 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1)); } IL_0199: { int32_t L_86 = V_9; String_t* L_87 = ___s0; NullCheck(L_87); int32_t L_88 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_87, /*hidden argument*/NULL); if ((((int32_t)L_86) < ((int32_t)L_88))) { goto IL_00c9; } } { int32_t L_89 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1)); int32_t L_90 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1)); } IL_01ae: { int32_t L_91 = V_4; String_t* L_92 = ___s0; NullCheck(L_92); int32_t L_93 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_92, /*hidden argument*/NULL); if ((((int32_t)L_91) < ((int32_t)L_93))) { goto IL_0075; } } { StringBuilder_t * L_94 = V_5; NullCheck(L_94); String_t* L_95 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_94); return L_95; } } // System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___d0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { int32_t L_0 = ___d0; if ((((int32_t)L_0) < ((int32_t)((int32_t)26)))) { goto IL_000e; } } { int32_t L_1 = ___d0; G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)26))), (int32_t)((int32_t)48))); goto IL_0012; } IL_000e: { int32_t L_2 = ___d0; G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)97))); } IL_0012: { return (((int32_t)((uint16_t)G_B3_0))); } } // System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)48)))) < ((int32_t)((int32_t)10)))) { goto IL_0029; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)65)))) < ((int32_t)((int32_t)26)))) { goto IL_0024; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)97)))) < ((int32_t)((int32_t)26)))) { goto IL_001f; } } { int32_t L_3 = __this->get_base_num_1(); return L_3; } IL_001f: { Il2CppChar L_4 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)97))); } IL_0024: { Il2CppChar L_5 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)65))); } IL_0029: { Il2CppChar L_6 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)22))); } } // System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = ___firstTime2; if (!L_0) { goto IL_000f; } } { int32_t L_1 = ___delta0; int32_t L_2 = __this->get_damp_5(); ___delta0 = ((int32_t)((int32_t)L_1/(int32_t)L_2)); goto IL_0014; } IL_000f: { int32_t L_3 = ___delta0; ___delta0 = ((int32_t)((int32_t)L_3/(int32_t)2)); } IL_0014: { int32_t L_4 = ___delta0; int32_t L_5 = ___delta0; int32_t L_6 = ___numPoints1; ___delta0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5/(int32_t)L_6)))); V_0 = 0; goto IL_0039; } IL_001f: { int32_t L_7 = ___delta0; int32_t L_8 = __this->get_base_num_1(); int32_t L_9 = __this->get_tmin_2(); ___delta0 = ((int32_t)((int32_t)L_7/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)))); int32_t L_10 = V_0; int32_t L_11 = __this->get_base_num_1(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); } IL_0039: { int32_t L_12 = ___delta0; int32_t L_13 = __this->get_base_num_1(); int32_t L_14 = __this->get_tmin_2(); int32_t L_15 = __this->get_tmax_3(); if ((((int32_t)L_12) > ((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)L_15))/(int32_t)2))))) { goto IL_001f; } } { int32_t L_16 = V_0; int32_t L_17 = __this->get_base_num_1(); int32_t L_18 = __this->get_tmin_2(); int32_t L_19 = ___delta0; int32_t L_20 = ___delta0; int32_t L_21 = __this->get_skew_4(); return ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)1)), (int32_t)L_19))/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)))))); } } // System.String System.Globalization.Bootstring::Decode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; StringBuilder_t * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t G_B10_0 = 0; int32_t G_B17_0 = 0; { int32_t L_0 = __this->get_initial_n_7(); V_0 = L_0; V_1 = 0; int32_t L_1 = __this->get_initial_bias_6(); V_2 = L_1; V_3 = 0; StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); V_4 = L_2; V_5 = 0; goto IL_0037; } IL_001e: { String_t* L_3 = ___s0; int32_t L_4 = V_5; NullCheck(L_3); Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL); Il2CppChar L_6 = __this->get_delimiter_0(); if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0031; } } { int32_t L_7 = V_5; V_3 = L_7; } IL_0031: { int32_t L_8 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0037: { int32_t L_9 = V_5; String_t* L_10 = ___s0; NullCheck(L_10); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) < ((int32_t)L_11))) { goto IL_001e; } } { int32_t L_12 = V_3; if ((((int32_t)L_12) >= ((int32_t)0))) { goto IL_0047; } } { String_t* L_13 = ___s0; return L_13; } IL_0047: { StringBuilder_t * L_14 = V_4; String_t* L_15 = ___s0; int32_t L_16 = V_3; NullCheck(L_14); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_14, L_15, 0, L_16, /*hidden argument*/NULL); int32_t L_17 = V_3; if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0059; } } { G_B10_0 = 0; goto IL_005c; } IL_0059: { int32_t L_18 = V_3; G_B10_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_005c: { V_6 = G_B10_0; goto IL_0140; } IL_0063: { int32_t L_19 = V_1; V_7 = L_19; V_8 = 1; int32_t L_20 = __this->get_base_num_1(); V_9 = L_20; } IL_0071: { String_t* L_21 = ___s0; int32_t L_22 = V_6; int32_t L_23 = L_22; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); NullCheck(L_21); Il2CppChar L_24 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_21, L_23, /*hidden argument*/NULL); int32_t L_25 = Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47(__this, L_24, /*hidden argument*/NULL); V_10 = L_25; int32_t L_26 = V_1; int32_t L_27 = V_10; int32_t L_28 = V_8; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_27, (int32_t)L_28)))); int32_t L_29 = V_9; int32_t L_30 = V_2; int32_t L_31 = __this->get_tmin_2(); if ((((int32_t)L_29) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31))))) { goto IL_00b4; } } { int32_t L_32 = V_9; int32_t L_33 = V_2; int32_t L_34 = __this->get_tmax_3(); if ((((int32_t)L_32) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34))))) { goto IL_00ac; } } { int32_t L_35 = V_9; int32_t L_36 = V_2; G_B17_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36)); goto IL_00ba; } IL_00ac: { int32_t L_37 = __this->get_tmax_3(); G_B17_0 = L_37; goto IL_00ba; } IL_00b4: { int32_t L_38 = __this->get_tmin_2(); G_B17_0 = L_38; } IL_00ba: { V_11 = G_B17_0; int32_t L_39 = V_10; int32_t L_40 = V_11; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_00dd; } } { int32_t L_41 = V_8; int32_t L_42 = __this->get_base_num_1(); int32_t L_43 = V_11; V_8 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43)))); int32_t L_44 = V_9; int32_t L_45 = __this->get_base_num_1(); V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)L_45)); goto IL_0071; } IL_00dd: { int32_t L_46 = V_1; int32_t L_47 = V_7; StringBuilder_t * L_48 = V_4; NullCheck(L_48); int32_t L_49 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_48, /*hidden argument*/NULL); int32_t L_50 = V_7; int32_t L_51 = Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47)), ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)), (bool)((((int32_t)L_50) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL); V_2 = L_51; int32_t L_52 = V_0; int32_t L_53 = V_1; StringBuilder_t * L_54 = V_4; NullCheck(L_54); int32_t L_55 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_54, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)((int32_t)((int32_t)L_53/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)))))); int32_t L_56 = V_1; StringBuilder_t * L_57 = V_4; NullCheck(L_57); int32_t L_58 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_57, /*hidden argument*/NULL); V_1 = ((int32_t)((int32_t)L_56%(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1)))); int32_t L_59 = V_0; if ((((int32_t)L_59) >= ((int32_t)((int32_t)128)))) { goto IL_0131; } } { int32_t L_60 = ___offset1; int32_t L_61 = V_6; int32_t L_62 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)L_61)); RuntimeObject * L_63 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_62); String_t* L_64 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral172386082086186807F5EDA33088CEC8484F98BF, L_63, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_65 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_65, L_64, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, NULL, Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_RuntimeMethod_var); } IL_0131: { StringBuilder_t * L_66 = V_4; int32_t L_67 = V_1; int32_t L_68 = V_0; NullCheck(L_66); StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1(L_66, L_67, (((int32_t)((uint16_t)L_68))), /*hidden argument*/NULL); int32_t L_69 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)); } IL_0140: { int32_t L_70 = V_6; String_t* L_71 = ___s0; NullCheck(L_71); int32_t L_72 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_71, /*hidden argument*/NULL); if ((((int32_t)L_70) < ((int32_t)L_72))) { goto IL_0063; } } { StringBuilder_t * L_73 = V_4; NullCheck(L_73); String_t* L_74 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_73); return L_74; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime System.Globalization.Calendar::get_MinSupportedDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); return L_0; } } // System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); return L_0; } } // System.Void System.Globalization.Calendar::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar__ctor_m42B02CE161563140340DC5485C7E1B3617FC449B (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { __this->set_m_currentEraValue_38((-1)); __this->set_twoDigitYearMax_41((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Globalization.Calendar::get_ID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_ID_m25069AB91446D167F193B26B006A63AE1754D10E (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { return (-1); } } // System.Int32 System.Globalization.Calendar::get_BaseCalendarID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_BaseCalendarID_m183E5D208E577BBE58D9108832FD95FB6F2961D9 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, __this); return L_0; } } // System.Object System.Globalization.Calendar::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); RuntimeObject * L_1 = L_0; NullCheck(((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 *)CastclassClass((RuntimeObject*)L_1, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var))); Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline(((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 *)CastclassClass((RuntimeObject*)L_1, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method) { { bool L_0 = ___readOnly0; __this->set_m_isReadOnly_39(L_0); return; } } // System.Int32 System.Globalization.Calendar::get_CurrentEraValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_m_currentEraValue_38(); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_001f; } } { int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Globalization.Calendar::get_BaseCalendarID() */, __this); IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_2 = CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904(L_1, /*hidden argument*/NULL); NullCheck(L_2); int32_t L_3 = L_2->get_iCurrentEra_18(); __this->set_m_currentEraValue_38(L_3); } IL_001f: { int32_t L_4 = __this->get_m_currentEraValue_38(); return L_4; } } // System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsLeapYear_m86781F3FF822D348D336009AB1417B0169768B10 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, const RuntimeMethod* method) { { int32_t L_0 = ___year0; bool L_1 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(20 /* System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32,System.Int32) */, __this, L_0, 0); return L_1; } } // System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, int32_t ___era7, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___result8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_0 = ___result8; 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; } IL_000c: try { // begin try (depth: 1) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_2 = ___result8; int32_t L_3 = ___year0; int32_t L_4 = ___month1; int32_t L_5 = ___day2; int32_t L_6 = ___hour3; int32_t L_7 = ___minute4; int32_t L_8 = ___second5; int32_t L_9 = ___millisecond6; int32_t L_10 = ___era7; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = VirtFuncInvoker8< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t >::Invoke(21 /* System.DateTime System.Globalization.Calendar::ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) */, __this, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_2 = L_11; V_0 = (bool)1; goto IL_002f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_002a; throw e; } CATCH_002a: { // begin catch(System.ArgumentException) V_0 = (bool)0; goto IL_002f; } // end catch (depth: 1) IL_002f: { bool L_12 = V_0; return L_12; } } // System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidYear_mA38514E29C503A0A299726C95F31949715A110CA (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___era1, const RuntimeMethod* method) { { int32_t L_0 = ___year0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = VirtFuncInvoker0< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(5 /* System.DateTime System.Globalization.Calendar::get_MinSupportedDateTime() */, __this); int32_t L_2 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_1); if ((((int32_t)L_0) < ((int32_t)L_2))) { goto IL_0022; } } { int32_t L_3 = ___year0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = VirtFuncInvoker0< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(6 /* System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime() */, __this); int32_t L_5 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_4); return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0022: { return (bool)0; } } // System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidMonth_m9123084B2E3F2BD8B1FADC1BFA343C978D63D1A4 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___era2, const RuntimeMethod* method) { { int32_t L_0 = ___year0; int32_t L_1 = ___era2; bool L_2 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(23 /* System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32) */, __this, L_0, L_1); if (!L_2) { goto IL_001d; } } { int32_t L_3 = ___month1; if ((((int32_t)L_3) < ((int32_t)1))) { goto IL_001d; } } { int32_t L_4 = ___month1; int32_t L_5 = ___year0; int32_t L_6 = ___era2; int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(17 /* System.Int32 System.Globalization.Calendar::GetMonthsInYear(System.Int32,System.Int32) */, __this, L_5, L_6); return (bool)((((int32_t)((((int32_t)L_4) > ((int32_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001d: { return (bool)0; } } // System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidDay_mAFA172C4B8EB7CA776BCBD69B0FB782ABC52A900 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___era3, const RuntimeMethod* method) { { int32_t L_0 = ___year0; int32_t L_1 = ___month1; int32_t L_2 = ___era3; bool L_3 = VirtFuncInvoker3< bool, int32_t, int32_t, int32_t >::Invoke(24 /* System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32) */, __this, L_0, L_1, L_2); if (!L_3) { goto IL_0021; } } { int32_t L_4 = ___day2; if ((((int32_t)L_4) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_5 = ___day2; int32_t L_6 = ___year0; int32_t L_7 = ___month1; int32_t L_8 = ___era3; int32_t L_9 = VirtFuncInvoker3< int32_t, int32_t, int32_t, int32_t >::Invoke(13 /* System.Int32 System.Globalization.Calendar::GetDaysInMonth(System.Int32,System.Int32,System.Int32) */, __this, L_6, L_7, L_8); return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0021: { return (bool)0; } } // System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_TwoDigitYearMax_mF7A4A4F23DF96911D4D9A840CCC706997B51EC3D (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_twoDigitYearMax_41(); return L_0; } } // System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; { int32_t L_0 = ___year0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_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, _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_RuntimeMethod_var); } IL_0019: { int32_t L_3 = ___year0; if ((((int32_t)L_3) >= ((int32_t)((int32_t)100)))) { goto IL_003e; } } { int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this); int32_t L_5 = ___year0; int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this); G_B4_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100))); if ((((int32_t)L_5) > ((int32_t)((int32_t)((int32_t)L_6%(int32_t)((int32_t)100)))))) { G_B5_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100))); goto IL_0036; } } { G_B6_0 = 0; G_B6_1 = G_B4_0; goto IL_0037; } IL_0036: { G_B6_0 = 1; G_B6_1 = G_B5_0; } IL_0037: { int32_t L_7 = ___year0; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B6_1, (int32_t)G_B6_0)), (int32_t)((int32_t)100))), (int32_t)L_7)); } IL_003e: { int32_t L_8 = ___year0; return L_8; } } // System.Int32 System.Globalization.Calendar::GetSystemTwoDigitYearSetting(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA (int32_t ___CalID0, int32_t ___defaultYearValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___CalID0; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); int32_t L_1 = CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_000d; } } { int32_t L_3 = ___defaultYearValue1; V_0 = L_3; } IL_000d: { int32_t L_4 = V_0; return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke_back(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke_cleanup(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com_back(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com_cleanup(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled) { } // System.Void System.Globalization.CalendarData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, const RuntimeMethod* method) { { __this->set_iTwoDigitYearMax_17(((int32_t)2029)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Globalization.CalendarData::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * V_0 = NULL; { CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_0 = (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E *)il2cpp_codegen_object_new(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9(L_0, /*hidden argument*/NULL); V_0 = L_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_1 = V_0; NullCheck(L_1); L_1->set_sNativeName_1(_stringLiteral67BBF11A3239F8FE8171FEE7FA8B76D4160D696E); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_2 = V_0; NullCheck(L_2); L_2->set_iTwoDigitYearMax_17(((int32_t)2029)); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_3 = V_0; NullCheck(L_3); L_3->set_iCurrentEra_18(1); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_4 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral7E746D340667E415DE67844CA297722F073C4EB5); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7E746D340667E415DE67844CA297722F073C4EB5); NullCheck(L_4); L_4->set_saShortDates_2(L_7); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_8 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB); NullCheck(L_8); L_8->set_saLongDates_4(L_10); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_11 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573); NullCheck(L_11); L_11->set_saYearMonths_3(L_13); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_14 = V_0; NullCheck(L_14); L_14->set_sMonthDay_5(_stringLiteralB4ED19F6FF6156C7E179A990BF73D02E8D5DF1FD); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_15 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); NullCheck(L_15); L_15->set_saEraNames_6(L_17); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_18 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); NullCheck(L_18); L_18->set_saAbbrevEraNames_7(L_20); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_21 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); NullCheck(L_21); L_21->set_saAbbrevEnglishEraNames_8(L_23); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_24 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral76031DDF92450BA52C1E3945097079807A9065C2); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral76031DDF92450BA52C1E3945097079807A9065C2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6); NullCheck(L_24); L_24->set_saDayNames_9(L_32); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_33 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_40; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD); NullCheck(L_33); L_33->set_saAbbrevDayNames_10(L_41); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_42 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_43 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = L_43; NullCheck(L_44); ArrayElementTypeCheck (L_44, _stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25); (L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = L_44; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = L_45; NullCheck(L_46); ArrayElementTypeCheck (L_46, _stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B); (L_46)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_47 = L_46; NullCheck(L_47); ArrayElementTypeCheck (L_47, _stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198); (L_47)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_50 = L_49; NullCheck(L_50); ArrayElementTypeCheck (L_50, _stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6); (L_50)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6); NullCheck(L_42); L_42->set_saSuperShortDayNames_11(L_50); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_51 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_52 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_53 = L_52; NullCheck(L_53); ArrayElementTypeCheck (L_53, _stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE); (L_53)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_55 = L_54; NullCheck(L_55); ArrayElementTypeCheck (L_55, _stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_56 = L_55; NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_57 = L_56; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_58 = L_57; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_59 = L_58; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = L_59; NullCheck(L_60); ArrayElementTypeCheck (L_60, _stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_61 = L_60; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26); (L_61)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_62 = L_61; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_63 = L_62; NullCheck(L_63); ArrayElementTypeCheck (L_63, _stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_64 = L_63; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85); (L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = L_64; String_t* L_66 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_65); ArrayElementTypeCheck (L_65, L_66); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_66); NullCheck(L_51); L_51->set_saMonthNames_12(L_65); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_67 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_68 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_69 = L_68; NullCheck(L_69); ArrayElementTypeCheck (L_69, _stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258); (L_69)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_70 = L_69; NullCheck(L_70); ArrayElementTypeCheck (L_70, _stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D); (L_70)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_71 = L_70; NullCheck(L_71); ArrayElementTypeCheck (L_71, _stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036); (L_71)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_72 = L_71; NullCheck(L_72); ArrayElementTypeCheck (L_72, _stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6); (L_72)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_73 = L_72; NullCheck(L_73); ArrayElementTypeCheck (L_73, _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); (L_73)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_74 = L_73; NullCheck(L_74); ArrayElementTypeCheck (L_74, _stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_75 = L_74; NullCheck(L_75); ArrayElementTypeCheck (L_75, _stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0); (L_75)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_76 = L_75; NullCheck(L_76); ArrayElementTypeCheck (L_76, _stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285); (L_76)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_77 = L_76; NullCheck(L_77); ArrayElementTypeCheck (L_77, _stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B); (L_77)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_79 = L_78; NullCheck(L_79); ArrayElementTypeCheck (L_79, _stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7); (L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_80 = L_79; NullCheck(L_80); ArrayElementTypeCheck (L_80, _stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44); (L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_81 = L_80; String_t* L_82 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_81); ArrayElementTypeCheck (L_81, L_82); (L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_82); NullCheck(L_67); L_67->set_saAbbrevMonthNames_13(L_81); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_83 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_84 = V_0; NullCheck(L_84); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_85 = L_84->get_saMonthNames_12(); NullCheck(L_83); L_83->set_saMonthGenitiveNames_14(L_85); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_86 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_87 = V_0; NullCheck(L_87); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_88 = L_87->get_saAbbrevMonthNames_13(); NullCheck(L_86); L_86->set_saAbbrevMonthGenitiveNames_15(L_88); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_89 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_90 = V_0; NullCheck(L_90); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_91 = L_90->get_saMonthNames_12(); NullCheck(L_89); L_89->set_saLeapYearMonthNames_16(L_91); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_92 = V_0; NullCheck(L_92); L_92->set_bUseUserOverrides_19((bool)0); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_93 = V_0; ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->set_Invariant_20(L_93); return; } } // System.Void System.Globalization.CalendarData::.ctor(System.String,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, bool ___bUseUserOverrides2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_iTwoDigitYearMax_17(((int32_t)2029)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); bool L_0 = ___bUseUserOverrides2; __this->set_bUseUserOverrides_19(L_0); String_t* L_1 = ___localeName0; int32_t L_2 = ___calendarId1; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); bool L_3 = CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26(__this, L_1, L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0158; } } { String_t* L_4 = __this->get_sNativeName_1(); if (L_4) { goto IL_0038; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_sNativeName_1(L_5); } IL_0038: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = __this->get_saShortDates_2(); if (L_6) { goto IL_0050; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_7 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = L_7->get_saShortDates_2(); __this->set_saShortDates_2(L_8); } IL_0050: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_saYearMonths_3(); if (L_9) { goto IL_0068; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_10 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_10); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10->get_saYearMonths_3(); __this->set_saYearMonths_3(L_11); } IL_0068: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = __this->get_saLongDates_4(); if (L_12) { goto IL_0080; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_13 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_13); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13->get_saLongDates_4(); __this->set_saLongDates_4(L_14); } IL_0080: { String_t* L_15 = __this->get_sMonthDay_5(); if (L_15) { goto IL_0098; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_16 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_16); String_t* L_17 = L_16->get_sMonthDay_5(); __this->set_sMonthDay_5(L_17); } IL_0098: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = __this->get_saEraNames_6(); if (L_18) { goto IL_00b0; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_19 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_19); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19->get_saEraNames_6(); __this->set_saEraNames_6(L_20); } IL_00b0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = __this->get_saAbbrevEraNames_7(); if (L_21) { goto IL_00c8; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_22 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_22); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22->get_saAbbrevEraNames_7(); __this->set_saAbbrevEraNames_7(L_23); } IL_00c8: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = __this->get_saAbbrevEnglishEraNames_8(); if (L_24) { goto IL_00e0; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_25 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25->get_saAbbrevEnglishEraNames_8(); __this->set_saAbbrevEnglishEraNames_8(L_26); } IL_00e0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = __this->get_saDayNames_9(); if (L_27) { goto IL_00f8; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_28 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_28); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28->get_saDayNames_9(); __this->set_saDayNames_9(L_29); } IL_00f8: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = __this->get_saAbbrevDayNames_10(); if (L_30) { goto IL_0110; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_31 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_31); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31->get_saAbbrevDayNames_10(); __this->set_saAbbrevDayNames_10(L_32); } IL_0110: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = __this->get_saSuperShortDayNames_11(); if (L_33) { goto IL_0128; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_34 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_34); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34->get_saSuperShortDayNames_11(); __this->set_saSuperShortDayNames_11(L_35); } IL_0128: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = __this->get_saMonthNames_12(); if (L_36) { goto IL_0140; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_37 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_37); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_37->get_saMonthNames_12(); __this->set_saMonthNames_12(L_38); } IL_0140: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = __this->get_saAbbrevMonthNames_13(); if (L_39) { goto IL_0158; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_40 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_40); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_40->get_saAbbrevMonthNames_13(); __this->set_saAbbrevMonthNames_13(L_41); } IL_0158: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = __this->get_saShortDates_2(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_43 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_42, /*hidden argument*/NULL); __this->set_saShortDates_2(L_43); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = __this->get_saLongDates_4(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_44, /*hidden argument*/NULL); __this->set_saLongDates_4(L_45); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = __this->get_saYearMonths_3(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_47 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_46, /*hidden argument*/NULL); __this->set_saYearMonths_3(L_47); String_t* L_48 = __this->get_sMonthDay_5(); String_t* L_49 = CultureData_ReescapeWin32String_mB6D37FC2C76F8AD4A1ECD365C36F129309FF7ED0(L_48, /*hidden argument*/NULL); __this->set_sMonthDay_5(L_49); int32_t L_50 = ___calendarId1; if ((!(((uint32_t)(((int32_t)((uint16_t)L_50)))) == ((uint32_t)4)))) { goto IL_01c0; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); bool L_51 = ((CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37(); if (!L_51) { goto IL_01b5; } } { __this->set_sNativeName_1(_stringLiteralDAE50AB6C9EE2D4025C53458EFFED3E935ECDF57); goto IL_01c0; } IL_01b5: { String_t* L_52 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_sNativeName_1(L_52); } IL_01c0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_53 = __this->get_saMonthGenitiveNames_14(); if (!L_53) { goto IL_01d7; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = __this->get_saMonthGenitiveNames_14(); NullCheck(L_54); int32_t L_55 = 0; String_t* L_56 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); bool L_57 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_56, /*hidden argument*/NULL); if (!L_57) { goto IL_01e3; } } IL_01d7: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_58 = __this->get_saMonthNames_12(); __this->set_saMonthGenitiveNames_14(L_58); } IL_01e3: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_59 = __this->get_saAbbrevMonthGenitiveNames_15(); if (!L_59) { goto IL_01fa; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = __this->get_saAbbrevMonthGenitiveNames_15(); NullCheck(L_60); int32_t L_61 = 0; String_t* L_62 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_61)); bool L_63 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0206; } } IL_01fa: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_64 = __this->get_saAbbrevMonthNames_13(); __this->set_saAbbrevMonthGenitiveNames_15(L_64); } IL_0206: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = __this->get_saLeapYearMonthNames_16(); if (!L_65) { goto IL_021d; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_66 = __this->get_saLeapYearMonthNames_16(); NullCheck(L_66); int32_t L_67 = 0; String_t* L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67)); bool L_69 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_68, /*hidden argument*/NULL); if (!L_69) { goto IL_0229; } } IL_021d: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_70 = __this->get_saMonthNames_12(); __this->set_saLeapYearMonthNames_16(L_70); } IL_0229: { String_t* L_71 = ___localeName0; int32_t L_72 = ___calendarId1; CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7(__this, L_71, L_72, /*hidden argument*/NULL); String_t* L_73 = ___localeName0; int32_t L_74 = ___calendarId1; CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B(__this, L_73, L_74, /*hidden argument*/NULL); int32_t L_75 = ___calendarId1; if ((!(((uint32_t)L_75) == ((uint32_t)3)))) { goto IL_024a; } } { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_76 = JapaneseCalendar_EnglishEraNames_m1D64240112FDE6C93450D1D136DD0B33FAFC78E1(/*hidden argument*/NULL); __this->set_saAbbrevEnglishEraNames_8(L_76); goto IL_025e; } IL_024a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_77 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); __this->set_saAbbrevEnglishEraNames_8(L_78); } IL_025e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_79 = __this->get_saEraNames_6(); NullCheck(L_79); __this->set_iCurrentEra_18((((int32_t)((int32_t)(((RuntimeArray*)L_79)->max_length))))); return; } } // System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; { int32_t L_0 = ___calendarId1; V_0 = (((int32_t)((uint16_t)L_0))); uint16_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_006c; } case 1: { goto IL_00a4; } case 2: { goto IL_018a; } case 3: { goto IL_012f; } case 4: { goto IL_0160; } case 5: { goto IL_00ce; } case 6: { goto IL_0175; } case 7: { goto IL_00b9; } case 8: { goto IL_011a; } case 9: { goto IL_0105; } case 10: { goto IL_0105; } case 11: { goto IL_0105; } case 12: { goto IL_00a4; } case 13: { goto IL_018a; } case 14: { goto IL_01cb; } case 15: { goto IL_01cb; } case 16: { goto IL_01cb; } case 17: { goto IL_01cb; } case 18: { goto IL_01cb; } case 19: { goto IL_01cb; } case 20: { goto IL_01cb; } case 21: { goto IL_0196; } case 22: { goto IL_00ce; } } } { goto IL_01cb; } IL_006c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_saEraNames_6(); if (!L_2) { goto IL_008f; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = __this->get_saEraNames_6(); NullCheck(L_3); if (!(((RuntimeArray*)L_3)->max_length)) { goto IL_008f; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = __this->get_saEraNames_6(); NullCheck(L_4); int32_t L_5 = 0; String_t* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); bool L_7 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_01db; } } IL_008f: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); __this->set_saEraNames_6(L_9); return; } IL_00a4: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); __this->set_saEraNames_6(L_11); return; } IL_00b9: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C); __this->set_saEraNames_6(L_13); return; } IL_00ce: { String_t* L_14 = ___localeName0; bool L_15 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_14, _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035, /*hidden argument*/NULL); if (!L_15) { goto IL_00f0; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9); __this->set_saEraNames_6(L_17); return; } IL_00f0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578); __this->set_saEraNames_6(L_19); return; } IL_0105: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801); __this->set_saEraNames_6(L_21); return; } IL_011a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E); __this->set_saEraNames_6(L_23); return; } IL_012f: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); bool L_24 = ((CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37(); if (!L_24) { goto IL_014b; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B); __this->set_saEraNames_6(L_26); return; } IL_014b: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_29); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29); __this->set_saEraNames_6(L_28); return; } IL_0160: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E); __this->set_saEraNames_6(L_31); return; } IL_0175: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0); __this->set_saEraNames_6(L_33); return; } IL_018a: { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = JapaneseCalendar_EraNames_mF5A93DD93CB95257E3245D333B117FD089EC88D9(/*hidden argument*/NULL); __this->set_saEraNames_6(L_34); return; } IL_0196: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = __this->get_saEraNames_6(); if (!L_35) { goto IL_01b6; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = __this->get_saEraNames_6(); NullCheck(L_36); if (!(((RuntimeArray*)L_36)->max_length)) { goto IL_01b6; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = __this->get_saEraNames_6(); NullCheck(L_37); int32_t L_38 = 0; String_t* L_39 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_38)); bool L_40 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_01db; } } IL_01b6: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = L_41; NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8); __this->set_saEraNames_6(L_42); return; } IL_01cb: { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_43 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_43); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = L_43->get_saEraNames_6(); __this->set_saEraNames_6(L_44); } IL_01db: { return; } } // System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; { int32_t L_0 = ___calendarId1; V_0 = (((int32_t)((uint16_t)L_0))); uint16_t L_1 = V_0; if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)13))))) { goto IL_0032; } } { uint16_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))) { case 0: { goto IL_0049; } case 1: { goto IL_0081; } case 2: { goto IL_0096; } case 3: { goto IL_00d9; } case 4: { goto IL_014b; } case 5: { goto IL_00a2; } } } { uint16_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)13)))) { goto IL_0081; } } { goto IL_014b; } IL_0032: { uint16_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)14)))) { goto IL_0096; } } { uint16_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)22)))) { goto IL_011e; } } { uint16_t L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)23)))) { goto IL_00a2; } } { goto IL_014b; } IL_0049: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = __this->get_saAbbrevEraNames_7(); if (!L_7) { goto IL_006c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = __this->get_saAbbrevEraNames_7(); NullCheck(L_8); if (!(((RuntimeArray*)L_8)->max_length)) { goto IL_006c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_saAbbrevEraNames_7(); NullCheck(L_9); int32_t L_10 = 0; String_t* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); bool L_12 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0157; } } IL_006c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); __this->set_saAbbrevEraNames_7(L_14); return; } IL_0081: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_15 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); __this->set_saAbbrevEraNames_7(L_16); return; } IL_0096: { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = JapaneseCalendar_AbbrevEraNames_m8F768E0E6C938DBB7657E0EE388A6EA4CCC4AD66(/*hidden argument*/NULL); __this->set_saAbbrevEraNames_7(L_17); return; } IL_00a2: { String_t* L_18 = ___localeName0; bool L_19 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_18, _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035, /*hidden argument*/NULL); if (!L_19) { goto IL_00c4; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2); __this->set_saAbbrevEraNames_7(L_21); return; } IL_00c4: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6); __this->set_saAbbrevEraNames_7(L_23); return; } IL_00d9: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_saAbbrevEraNames_7(L_24); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = __this->get_saEraNames_6(); NullCheck(L_25); int32_t L_26 = 0; String_t* L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26)); NullCheck(L_27); int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL); if ((!(((uint32_t)L_28) == ((uint32_t)4)))) { goto IL_010d; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = __this->get_saAbbrevEraNames_7(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = __this->get_saEraNames_6(); NullCheck(L_30); int32_t L_31 = 0; String_t* L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); NullCheck(L_32); String_t* L_33 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_32, 2, 2, /*hidden argument*/NULL); NullCheck(L_29); ArrayElementTypeCheck (L_29, L_33); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_33); return; } IL_010d: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = __this->get_saAbbrevEraNames_7(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = __this->get_saEraNames_6(); NullCheck(L_35); int32_t L_36 = 0; String_t* L_37 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_37); return; } IL_011e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = __this->get_saAbbrevEraNames_7(); if (!L_38) { goto IL_013e; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = __this->get_saAbbrevEraNames_7(); NullCheck(L_39); if (!(((RuntimeArray*)L_39)->max_length)) { goto IL_013e; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = __this->get_saAbbrevEraNames_7(); NullCheck(L_40); int32_t L_41 = 0; String_t* L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41)); bool L_43 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0157; } } IL_013e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = __this->get_saEraNames_6(); __this->set_saAbbrevEraNames_7(L_44); return; } IL_014b: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = __this->get_saEraNames_6(); __this->set_saAbbrevEraNames_7(L_45); } IL_0157: { return; } } // System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904 (int32_t ___calendarId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___calendarId0; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); String_t* L_1 = CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_1, /*hidden argument*/NULL); NullCheck(L_2); CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * L_3 = L_2->get_m_cultureData_28(); int32_t L_4 = ___calendarId0; NullCheck(L_3); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_5 = CultureData_GetCalendar_mB4F2D5CDF5ACA790475C2BDC168290047AEB6DF5(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B (int32_t ___calendarId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___calendarId0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)2))) { case 0: { goto IL_0062; } case 1: { goto IL_0068; } case 2: { goto IL_006e; } case 3: { goto IL_0074; } case 4: { goto IL_007a; } case 5: { goto IL_0080; } case 6: { goto IL_0086; } case 7: { goto IL_008c; } case 8: { goto IL_007a; } case 9: { goto IL_0092; } case 10: { goto IL_0092; } case 11: { goto IL_0098; } case 12: { goto IL_0098; } case 13: { goto IL_0098; } case 14: { goto IL_0098; } case 15: { goto IL_0098; } case 16: { goto IL_0098; } case 17: { goto IL_0098; } case 18: { goto IL_0098; } case 19: { goto IL_0098; } case 20: { goto IL_0098; } case 21: { goto IL_007a; } } } { goto IL_0098; } IL_0062: { return _stringLiteral1F4876FD676D03AC09FB1856159B448B0D2A55AE; } IL_0068: { return _stringLiteralC525149EB1C2E0B57FE563AD7B4D9E45A646784F; } IL_006e: { return _stringLiteralFB157325FE225946421F77EC1F8BF9F7F98E81B9; } IL_0074: { return _stringLiteral1EBE2C76316035130524FC185DA3EF43943BABBC; } IL_007a: { return _stringLiteralE758F73AF56E73D52D2255C99EF438305E8533BB; } IL_0080: { return _stringLiteralC700DC1C6745C39929C4B490A50F1EF4B6DE67F1; } IL_0086: { return _stringLiteral5E5C4B3CD84D07CDDD5F796A0ED208357AE2B291; } IL_008c: { return _stringLiteral157562C9A22C3136F032CA6820849E34DFEE3370; } IL_0092: { return _stringLiteralB07EE427B13FDA8C265DAACE035CBEF440CB3F7B; } IL_0098: { return _stringLiteral5A7BD4149D0D34D3EC86181CDAB1CB8DD3F441D7; } } // System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB (int32_t ___calID0, const RuntimeMethod* method) { { return (-1); } } // System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method) { { CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_0 = ___data0; String_t* L_1 = ___localeName1; NullCheck(L_1); String_t* L_2 = String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E(L_1, /*hidden argument*/NULL); int32_t L_3 = ___calendarId2; NullCheck(L_0); bool L_4 = CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6(L_0, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method) { typedef bool (*CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6_ftn) (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E *, String_t*, int32_t); using namespace il2cpp::icalls; return ((CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6_ftn)mscorlib::System::Globalization::CalendarData::fill_calendar_data) (__this, ___localeName0, ___datetimeIndex1); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B3_0 = 0; { String_t* L_0 = ___s0; Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral63421775BF8EBC09027CFFC40F85F93CF0EC57EA, /*hidden argument*/NULL); int32_t L_1 = ___index1; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_001d; } } { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); G_B3_0 = ((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0); goto IL_001e; } IL_001d: { G_B3_0 = 0; } IL_001e: { Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)G_B3_0, _stringLiteralDDECD1B789B8A6D1B22C1C2B6E877A82A395F718, /*hidden argument*/NULL); int32_t L_5 = ___index1; String_t* L_6 = ___s0; NullCheck(L_6); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL); if ((((int32_t)L_5) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))))) { goto IL_0079; } } { String_t* L_8 = ___s0; int32_t L_9 = ___index1; NullCheck(L_8); Il2CppChar L_10 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, L_9, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)55296))); int32_t L_11 = V_0; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_12 = V_0; if ((((int32_t)L_12) > ((int32_t)((int32_t)1023)))) { goto IL_0079; } } { String_t* L_13 = ___s0; int32_t L_14 = ___index1; NullCheck(L_13); Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)56320))); int32_t L_16 = V_1; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_17 = V_1; if ((((int32_t)L_17) > ((int32_t)((int32_t)1023)))) { goto IL_0079; } } { int32_t L_18 = V_0; int32_t L_19 = V_1; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)((int32_t)1024))), (int32_t)L_19)), (int32_t)((int32_t)65536))); } IL_0079: { String_t* L_20 = ___s0; int32_t L_21 = ___index1; NullCheck(L_20); Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_20, L_21, /*hidden argument*/NULL); return L_22; } } // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_1 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)11)))) <= ((uint32_t)2)))) { goto IL_0010; } } { return (bool)1; } IL_0010: { return (bool)0; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_1 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_0, /*hidden argument*/NULL); return L_1; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, CharUnicodeInfo_GetUnicodeCategory_m0A7D6F95B25E74A83D25C440EB089151076DF224_RuntimeMethod_var); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_8 = CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68(L_6, L_7, /*hidden argument*/NULL); return L_8; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___ch0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); uint8_t L_1 = CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE(L_0, 0, /*hidden argument*/NULL); return (int32_t)(L_1); } } // System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint16_t* V_1 = NULL; uint8_t* V_2 = NULL; uint8_t V_3 = 0x0; int32_t G_B3_0 = 0; { int32_t L_0 = ___ch0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0011; } } { int32_t L_1 = ___ch0; G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)1114111)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)G_B3_0, _stringLiteral3B45D1AAB32F551A0B6E0607F82512D790385944, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); int32_t L_3 = ___ch0; NullCheck(L_2); int32_t L_4 = ((int32_t)((int32_t)L_3>>(int32_t)8)); uint16_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_6 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); uint16_t L_7 = V_0; int32_t L_8 = ___ch0; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)4))&(int32_t)((int32_t)15))))); uint16_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_0 = L_10; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_11 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); uint16_t L_12 = V_0; NullCheck(L_11); V_1 = (uint16_t*)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))); uint16_t* L_13 = V_1; V_2 = (uint8_t*)(((uintptr_t)L_13)); uint8_t* L_14 = V_2; int32_t L_15 = ___ch0; int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)15)))))); V_3 = (uint8_t)L_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoriesValue_1(); uint8_t L_18 = V_3; int32_t L_19 = ___offset1; NullCheck(L_17); int32_t L_20 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)), (int32_t)L_19)); uint8_t L_21 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); return L_21; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral432F40DA13A412CABAD63F5524F00CC2C8992AC3, /*hidden argument*/NULL); int32_t L_1 = ___index1; String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL); Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0), _stringLiteral9483BDD3D2B438AB667226C5A0CD8CC30D9BAFB2, /*hidden argument*/NULL); String_t* L_4 = ___value0; int32_t L_5 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_6 = CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57(L_4, L_5, /*hidden argument*/NULL); int32_t L_7 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_6, /*hidden argument*/NULL); return L_7; } } // System.Void System.Globalization.CharUnicodeInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10626)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = L_0; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____811A927B7DADD378BE60BBDE794B9277AA9B50EC_47_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pCategoryLevel1Index_0(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)162)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B8864ACB9DD69E3D42151513C840AAE270BF21C8_74_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pCategoriesValue_1(L_4); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_6 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)5807)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_7 = L_6; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F073AA332018FDA0D572E99448FFF1D6422BD520_96_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pNumericLevel1Index_2(L_7); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1080)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = L_9; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pNumericValues_3(L_10); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_12 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)160)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_13 = L_12; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pDigitValues_4(L_13); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.CharUnicodeInfo_Debug::Assert(System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D (bool ___condition0, String_t* ___message1, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.CodePageDataItem::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051 (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, int32_t ___dataIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___dataIndex0; __this->set_m_dataIndex_0(L_0); IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_2 = ___dataIndex0; NullCheck(L_1); uint16_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_uiFamilyCodePage_1(); __this->set_m_uiFamilyCodePage_1(L_3); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_4 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_5 = ___dataIndex0; NullCheck(L_4); uint32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_flags_2(); __this->set_m_flags_5(L_6); return; } } // System.String System.Globalization.CodePageDataItem::CreateString(System.String,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1 (String_t* ___pStrings0, uint32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___pStrings0; NullCheck(L_0); Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)124))))) { goto IL_001a; } } { String_t* L_2 = ___pStrings0; IL2CPP_RUNTIME_CLASS_INIT(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields*)il2cpp_codegen_static_fields_for(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var))->get_sep_6(); NullCheck(L_2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = String_Split_m3E47054D847F0ED0FA2F54757D2BF5F8E15B938A(L_2, L_3, 1, /*hidden argument*/NULL); uint32_t L_5 = ___index1; NullCheck(L_4); uint32_t L_6 = L_5; String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); return L_7; } IL_001a: { String_t* L_8 = ___pStrings0; return L_8; } } // System.String System.Globalization.CodePageDataItem::get_WebName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodePageDataItem_get_WebName_mB509120CBD0AB217D8F390CBD54697B6657D3DB0 (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem_get_WebName_mB509120CBD0AB217D8F390CBD54697B6657D3DB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_m_webName_2(); if (L_0) { goto IL_0029; } } { IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_2 = __this->get_m_dataIndex_0(); NullCheck(L_1); String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_Names_3(); IL2CPP_RUNTIME_CLASS_INIT(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var); String_t* L_4 = CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1(L_3, 0, /*hidden argument*/NULL); __this->set_m_webName_2(L_4); } IL_0029: { String_t* L_5 = __this->get_m_webName_2(); return L_5; } } // System.Int32 System.Globalization.CodePageDataItem::get_UIFamilyCodePage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CodePageDataItem_get_UIFamilyCodePage_m3038CCBDD246346988E83B2D979A5B4A3EB3625A (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_uiFamilyCodePage_1(); return L_0; } } // System.String System.Globalization.CodePageDataItem::get_HeaderName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodePageDataItem_get_HeaderName_m824FBBF5E01F47605BC8C84D6CDF21C945640C6B (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem_get_HeaderName_m824FBBF5E01F47605BC8C84D6CDF21C945640C6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_m_headerName_3(); if (L_0) { goto IL_0029; } } { IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_2 = __this->get_m_dataIndex_0(); NullCheck(L_1); String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_Names_3(); IL2CPP_RUNTIME_CLASS_INIT(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var); String_t* L_4 = CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1(L_3, 1, /*hidden argument*/NULL); __this->set_m_headerName_3(L_4); } IL_0029: { String_t* L_5 = __this->get_m_headerName_3(); return L_5; } } // System.String System.Globalization.CodePageDataItem::get_BodyName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CodePageDataItem_get_BodyName_m12BF8EBE30C6F2F7A80610C46136A1923729D3ED (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem_get_BodyName_m12BF8EBE30C6F2F7A80610C46136A1923729D3ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_m_bodyName_4(); if (L_0) { goto IL_0029; } } { IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_2 = __this->get_m_dataIndex_0(); NullCheck(L_1); String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_Names_3(); IL2CPP_RUNTIME_CLASS_INIT(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var); String_t* L_4 = CodePageDataItem_CreateString_mD0BF9DD058DEE819DA824DA84E9376097EDA31F1(L_3, 2, /*hidden argument*/NULL); __this->set_m_bodyName_4(L_4); } IL_0029: { String_t* L_5 = __this->get_m_bodyName_4(); return L_5; } } // System.UInt32 System.Globalization.CodePageDataItem::get_Flags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t CodePageDataItem_get_Flags_mCC8ED0609F0B33ED88340377D9DA37AE85093466 (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_flags_5(); return L_0; } } // System.Void System.Globalization.CodePageDataItem::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)124)); ((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields*)il2cpp_codegen_static_fields_for(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var))->set_sep_6(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.CompareInfo::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_m40F691A2A633813B265160FDD1976A1F0AF3311D (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; NullCheck(L_0); String_t* L_1 = L_0->get_m_name_13(); __this->set_m_name_3(L_1); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture0; NullCheck(L_2); String_t* L_3 = CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline(L_2, /*hidden argument*/NULL); __this->set_m_sortName_4(L_3); return; } } // System.Globalization.CompareInfo System.Globalization.CompareInfo::GetCompareInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_2, /*hidden argument*/NULL); NullCheck(L_3); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_3); return L_4; } } // System.Void System.Globalization.CompareInfo::OnDeserializing(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserializing_mBD5AA489F136E178A560015523D8002943E247A0 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { { __this->set_m_name_3((String_t*)NULL); return; } } // System.Void System.Globalization.CompareInfo::OnDeserialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_0 = NULL; { String_t* L_0 = __this->get_m_name_3(); if (L_0) { goto IL_0022; } } { int32_t L_1 = __this->get_culture_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_GetCultureInfo_mA907D8B043126761BA2C2ABCD1A3AB503371530C(L_1, /*hidden argument*/NULL); V_0 = L_2; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->get_m_name_13(); __this->set_m_name_3(L_4); goto IL_002e; } IL_0022: { String_t* L_5 = __this->get_m_name_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_5, /*hidden argument*/NULL); V_0 = L_6; } IL_002e: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = V_0; NullCheck(L_7); String_t* L_8 = CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline(L_7, /*hidden argument*/NULL); __this->set_m_sortName_4(L_8); return; } } // System.Void System.Globalization.CompareInfo::OnDeserialized(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_mE0CB0B2DFFDF3C7DD7A6925D6D4F9765F60E9CC3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { { CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B(__this, /*hidden argument*/NULL); return; } } // System.Void System.Globalization.CompareInfo::OnSerializing(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_1); __this->set_culture_6(L_2); return; } } // System.Void System.Globalization.CompareInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC5BD6E336F3B16DAEBA0D3CD79935B224E53D2B0 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { { CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B(__this, /*hidden argument*/NULL); return; } } // System.String System.Globalization.CompareInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_m_name_3(); bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteral4474ABE156E995800F623A46EB81155997101DC5, /*hidden argument*/NULL); if (L_1) { goto IL_0024; } } { String_t* L_2 = __this->get_m_name_3(); bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral16DA788082C4C9A5A70A491C6444E6C78CC150C5, /*hidden argument*/NULL); if (!L_3) { goto IL_002b; } } IL_0024: { String_t* L_4 = __this->get_m_name_3(); return L_4; } IL_002b: { String_t* L_5 = __this->get_m_sortName_4(); return L_5; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m0DD92FC343A9E2E93928B829B592686AA27E1B8E (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, String_t* ___string21, const RuntimeMethod* method) { { String_t* L_0 = ___string10; String_t* L_1 = ___string21; int32_t L_2 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, __this, L_0, L_1, 0); return L_2; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, String_t* ___string21, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___options2; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456))))) { goto IL_0011; } } { String_t* L_1 = ___string10; String_t* L_2 = ___string21; int32_t L_3 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_1, L_2, 5, /*hidden argument*/NULL); return L_3; } IL_0011: { int32_t L_4 = ___options2; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)1073741824)))) { goto IL_003f; } } { int32_t L_5 = ___options2; if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824)))) { goto IL_0037; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992, /*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, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var); } IL_0037: { String_t* L_8 = ___string10; String_t* L_9 = ___string21; int32_t L_10 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_8, L_9, /*hidden argument*/NULL); return L_10; } IL_003f: { int32_t L_11 = ___options2; if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)-536870944)))) { goto IL_005d; } } { String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_13, L_12, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var); } IL_005d: { String_t* L_14 = ___string10; if (L_14) { goto IL_0067; } } { String_t* L_15 = ___string21; if (L_15) { goto IL_0065; } } { return 0; } IL_0065: { return (-1); } IL_0067: { String_t* L_16 = ___string21; if (L_16) { goto IL_006c; } } { return 1; } IL_006c: { String_t* L_17 = ___string10; String_t* L_18 = ___string10; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); String_t* L_20 = ___string21; String_t* L_21 = ___string21; NullCheck(L_21); int32_t L_22 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_21, /*hidden argument*/NULL); int32_t L_23 = ___options2; int32_t L_24 = CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4(__this, L_17, 0, L_19, L_20, 0, L_22, L_23, /*hidden argument*/NULL); return L_24; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B3_0 = 0; String_t* G_B3_1 = NULL; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; int32_t G_B2_0 = 0; String_t* G_B2_1 = NULL; int32_t G_B2_2 = 0; String_t* G_B2_3 = NULL; int32_t G_B4_0 = 0; int32_t G_B4_1 = 0; String_t* G_B4_2 = NULL; int32_t G_B4_3 = 0; String_t* G_B4_4 = NULL; String_t* G_B15_0 = NULL; String_t* G_B21_0 = NULL; int32_t G_B24_0 = 0; int32_t G_B23_0 = 0; int32_t G_B25_0 = 0; int32_t G_B25_1 = 0; int32_t G_B29_0 = 0; int32_t G_B28_0 = 0; int32_t G_B30_0 = 0; int32_t G_B30_1 = 0; { int32_t L_0 = ___options6; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456))))) { goto IL_0033; } } { String_t* L_1 = ___string10; int32_t L_2 = ___offset11; String_t* L_3 = ___string23; int32_t L_4 = ___offset24; int32_t L_5 = ___length12; int32_t L_6 = ___length25; G_B2_0 = L_4; G_B2_1 = L_3; G_B2_2 = L_2; G_B2_3 = L_1; if ((((int32_t)L_5) < ((int32_t)L_6))) { G_B3_0 = L_4; G_B3_1 = L_3; G_B3_2 = L_2; G_B3_3 = L_1; goto IL_0018; } } { int32_t L_7 = ___length25; G_B4_0 = L_7; G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; G_B4_3 = G_B2_2; G_B4_4 = G_B2_3; goto IL_0019; } IL_0018: { int32_t L_8 = ___length12; G_B4_0 = L_8; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; G_B4_3 = G_B3_2; G_B4_4 = G_B3_3; } IL_0019: { int32_t L_9 = String_Compare_m208E4853037D81DD5C91DCA060C339DADC3A6064(G_B4_4, G_B4_3, G_B4_2, G_B4_1, G_B4_0, 5, /*hidden argument*/NULL); V_0 = L_9; int32_t L_10 = ___length12; int32_t L_11 = ___length25; if ((((int32_t)L_10) == ((int32_t)L_11))) { goto IL_0031; } } { int32_t L_12 = V_0; if (L_12) { goto IL_0031; } } { int32_t L_13 = ___length12; int32_t L_14 = ___length25; if ((((int32_t)L_13) > ((int32_t)L_14))) { goto IL_002f; } } { return (-1); } IL_002f: { return 1; } IL_0031: { int32_t L_15 = V_0; return L_15; } IL_0033: { int32_t L_16 = ___length12; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_003c; } } { int32_t L_17 = ___length25; if ((((int32_t)L_17) >= ((int32_t)0))) { goto IL_005c; } } IL_003c: { int32_t L_18 = ___length12; if ((((int32_t)L_18) < ((int32_t)0))) { goto IL_0047; } } { G_B15_0 = _stringLiteral3E84966EDA4965346B1B65E8FF71B6DBD7DB4B73; goto IL_004c; } IL_0047: { G_B15_0 = _stringLiteral4319F745CDC4FD40114E0D897B2013145BAEB728; } IL_004c: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, G_B15_0, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_005c: { int32_t L_21 = ___offset11; if ((((int32_t)L_21) < ((int32_t)0))) { goto IL_0065; } } { int32_t L_22 = ___offset24; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_0085; } } IL_0065: { int32_t L_23 = ___offset11; if ((((int32_t)L_23) < ((int32_t)0))) { goto IL_0070; } } { G_B21_0 = _stringLiteralAB3DFA7772E82AEBC308D16B390DC7A630733224; goto IL_0075; } IL_0070: { G_B21_0 = _stringLiteral333C11801925CEAB22DD74C93D7617C041F0FA70; } IL_0075: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_25 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_25, G_B21_0, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_0085: { int32_t L_26 = ___offset11; String_t* L_27 = ___string10; G_B23_0 = L_26; if (!L_27) { G_B24_0 = L_26; goto IL_0091; } } { String_t* L_28 = ___string10; NullCheck(L_28); int32_t L_29 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_28, /*hidden argument*/NULL); G_B25_0 = L_29; G_B25_1 = G_B23_0; goto IL_0092; } IL_0091: { G_B25_0 = 0; G_B25_1 = G_B24_0; } IL_0092: { int32_t L_30 = ___length12; if ((((int32_t)G_B25_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B25_0, (int32_t)L_30))))) { goto IL_00ab; } } { String_t* L_31 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_32 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_32, _stringLiteral4B35BE0F7818DF6954737AB957F691EB72A389D2, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00ab: { int32_t L_33 = ___offset24; String_t* L_34 = ___string23; G_B28_0 = L_33; if (!L_34) { G_B29_0 = L_33; goto IL_00ba; } } { String_t* L_35 = ___string23; NullCheck(L_35); int32_t L_36 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_35, /*hidden argument*/NULL); G_B30_0 = L_36; G_B30_1 = G_B28_0; goto IL_00bb; } IL_00ba: { G_B30_0 = 0; G_B30_1 = G_B29_0; } IL_00bb: { int32_t L_37 = ___length25; if ((((int32_t)G_B30_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B30_0, (int32_t)L_37))))) { goto IL_00d5; } } { String_t* L_38 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_39 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_39, _stringLiteral62FB1585FD37A03B137AFEEEDAADA345F5537A00, L_38, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00d5: { int32_t L_40 = ___options6; if (!((int32_t)((int32_t)L_40&(int32_t)((int32_t)1073741824)))) { goto IL_00fd; } } { int32_t L_41 = ___options6; if ((((int32_t)L_41) == ((int32_t)((int32_t)1073741824)))) { goto IL_011c; } } { String_t* L_42 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_43 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_43, L_42, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00fd: { int32_t L_44 = ___options6; if (!((int32_t)((int32_t)L_44&(int32_t)((int32_t)-536870944)))) { goto IL_011c; } } { String_t* L_45 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_46 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_46, L_45, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_011c: { String_t* L_47 = ___string10; if (L_47) { goto IL_0127; } } { String_t* L_48 = ___string23; if (L_48) { goto IL_0125; } } { return 0; } IL_0125: { return (-1); } IL_0127: { String_t* L_49 = ___string23; if (L_49) { goto IL_012d; } } { return 1; } IL_012d: { int32_t L_50 = ___options6; if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0145; } } { String_t* L_51 = ___string10; int32_t L_52 = ___offset11; int32_t L_53 = ___length12; String_t* L_54 = ___string23; int32_t L_55 = ___offset24; int32_t L_56 = ___length25; int32_t L_57 = CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E(L_51, L_52, L_53, L_54, L_55, L_56, /*hidden argument*/NULL); return L_57; } IL_0145: { String_t* L_58 = ___string10; int32_t L_59 = ___offset11; int32_t L_60 = ___length12; String_t* L_61 = ___string23; int32_t L_62 = ___offset24; int32_t L_63 = ___length25; int32_t L_64 = ___options6; int32_t L_65 = CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4(__this, L_58, L_59, L_60, L_61, L_62, L_63, L_64, /*hidden argument*/NULL); return L_65; } } // System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B2_0 = 0; String_t* G_B2_1 = NULL; int32_t G_B2_2 = 0; String_t* G_B2_3 = NULL; int32_t G_B1_0 = 0; String_t* G_B1_1 = NULL; int32_t G_B1_2 = 0; String_t* G_B1_3 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; String_t* G_B3_2 = NULL; int32_t G_B3_3 = 0; String_t* G_B3_4 = NULL; { String_t* L_0 = ___string10; int32_t L_1 = ___offset11; String_t* L_2 = ___string23; int32_t L_3 = ___offset24; int32_t L_4 = ___length12; int32_t L_5 = ___length25; G_B1_0 = L_3; G_B1_1 = L_2; G_B1_2 = L_1; G_B1_3 = L_0; if ((((int32_t)L_4) < ((int32_t)L_5))) { G_B2_0 = L_3; G_B2_1 = L_2; G_B2_2 = L_1; G_B2_3 = L_0; goto IL_000e; } } { int32_t L_6 = ___length25; G_B3_0 = L_6; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; goto IL_000f; } IL_000e: { int32_t L_7 = ___length12; G_B3_0 = L_7; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; } IL_000f: { int32_t L_8 = String_nativeCompareOrdinalEx_m64305A55855E6959DFCE962955C9874927D22840(G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); V_0 = L_8; int32_t L_9 = ___length12; int32_t L_10 = ___length25; if ((((int32_t)L_9) == ((int32_t)L_10))) { goto IL_0026; } } { int32_t L_11 = V_0; if (L_11) { goto IL_0026; } } { int32_t L_12 = ___length12; int32_t L_13 = ___length25; if ((((int32_t)L_12) > ((int32_t)L_13))) { goto IL_0024; } } { return (-1); } IL_0024: { return 1; } IL_0026: { int32_t L_14 = V_0; return L_14; } } // System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___prefix1, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B5_0 = NULL; { String_t* L_0 = ___source0; if (!L_0) { goto IL_0006; } } { String_t* L_1 = ___prefix1; if (L_1) { goto IL_0025; } } IL_0006: { String_t* L_2 = ___source0; if (!L_2) { goto IL_0010; } } { G_B5_0 = _stringLiteralB4EBFE34D0FA97F0DD2BB1234FAD8F59805F4E8D; goto IL_0015; } IL_0010: { G_B5_0 = _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; } IL_0015: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var); } IL_0025: { String_t* L_5 = ___prefix1; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002f; } } { return (bool)1; } IL_002f: { int32_t L_7 = ___options2; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456))))) { goto IL_0040; } } { String_t* L_8 = ___source0; String_t* L_9 = ___prefix1; NullCheck(L_8); bool L_10 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_8, L_9, 5, /*hidden argument*/NULL); return L_10; } IL_0040: { int32_t L_11 = ___options2; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0051; } } { String_t* L_12 = ___source0; String_t* L_13 = ___prefix1; NullCheck(L_12); bool L_14 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_12, L_13, 4, /*hidden argument*/NULL); return L_14; } IL_0051: { int32_t L_15 = ___options2; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32)))) { goto IL_006c; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, L_16, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var); } IL_006c: { bool L_18 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_18) { goto IL_0082; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_20 = ___source0; String_t* L_21 = ___prefix1; int32_t L_22 = ___options2; NullCheck(L_19); bool L_23 = SimpleCollator_IsPrefix_m596901F0E55A9B66EF20B0F8057D6B3FE08311F3(L_19, L_20, L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_0082: { String_t* L_24 = ___source0; NullCheck(L_24); int32_t L_25 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_24, /*hidden argument*/NULL); String_t* L_26 = ___prefix1; NullCheck(L_26); int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL); if ((((int32_t)L_25) >= ((int32_t)L_27))) { goto IL_0092; } } { return (bool)0; } IL_0092: { String_t* L_28 = ___source0; String_t* L_29 = ___prefix1; NullCheck(L_29); int32_t L_30 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_29, /*hidden argument*/NULL); String_t* L_31 = ___prefix1; String_t* L_32 = ___prefix1; NullCheck(L_32); int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_32, /*hidden argument*/NULL); int32_t L_34 = ___options2; int32_t L_35 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, 0, L_30, L_31, 0, L_33, L_34); return (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___suffix1, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B5_0 = NULL; { String_t* L_0 = ___source0; if (!L_0) { goto IL_0006; } } { String_t* L_1 = ___suffix1; if (L_1) { goto IL_0025; } } IL_0006: { String_t* L_2 = ___source0; if (!L_2) { goto IL_0010; } } { G_B5_0 = _stringLiteralEC87FACA4CBAD909219BBCEA9DBBE370A9F8C690; goto IL_0015; } IL_0010: { G_B5_0 = _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; } IL_0015: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var); } IL_0025: { String_t* L_5 = ___suffix1; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002f; } } { return (bool)1; } IL_002f: { int32_t L_7 = ___options2; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456))))) { goto IL_0040; } } { String_t* L_8 = ___source0; String_t* L_9 = ___suffix1; NullCheck(L_8); bool L_10 = String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811(L_8, L_9, 5, /*hidden argument*/NULL); return L_10; } IL_0040: { int32_t L_11 = ___options2; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0051; } } { String_t* L_12 = ___source0; String_t* L_13 = ___suffix1; NullCheck(L_12); bool L_14 = String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811(L_12, L_13, 4, /*hidden argument*/NULL); return L_14; } IL_0051: { int32_t L_15 = ___options2; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32)))) { goto IL_006c; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, L_16, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var); } IL_006c: { bool L_18 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_18) { goto IL_0082; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_20 = ___source0; String_t* L_21 = ___suffix1; int32_t L_22 = ___options2; NullCheck(L_19); bool L_23 = SimpleCollator_IsSuffix_m64ABA9957E9682D391102722BE959AC52602E7A2(L_19, L_20, L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_0082: { String_t* L_24 = ___source0; NullCheck(L_24); int32_t L_25 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_24, /*hidden argument*/NULL); String_t* L_26 = ___suffix1; NullCheck(L_26); int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL); if ((((int32_t)L_25) >= ((int32_t)L_27))) { goto IL_0092; } } { return (bool)0; } IL_0092: { String_t* L_28 = ___source0; String_t* L_29 = ___source0; NullCheck(L_29); int32_t L_30 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_29, /*hidden argument*/NULL); String_t* L_31 = ___suffix1; NullCheck(L_31); int32_t L_32 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_31, /*hidden argument*/NULL); String_t* L_33 = ___suffix1; NullCheck(L_33); int32_t L_34 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_33, /*hidden argument*/NULL); String_t* L_35 = ___suffix1; String_t* L_36 = ___suffix1; NullCheck(L_36); int32_t L_37 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_36, /*hidden argument*/NULL); int32_t L_38 = ___options2; int32_t L_39 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_32)), L_34, L_35, 0, L_37, L_38); return (bool)((((int32_t)L_39) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___value1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___startIndex2; String_t* L_5 = ___source0; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)L_6))) { goto IL_003a; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_003a: { String_t* L_9 = ___source0; NullCheck(L_9); int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_004e; } } { String_t* L_11 = ___value1; NullCheck(L_11); int32_t L_12 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_004c; } } { return 0; } IL_004c: { return (-1); } IL_004e: { int32_t L_13 = ___startIndex2; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_0067; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_0067: { int32_t L_16 = ___count3; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0078; } } { int32_t L_17 = ___startIndex2; String_t* L_18 = ___source0; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); int32_t L_20 = ___count3; if ((((int32_t)L_17) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20))))) { goto IL_008d; } } IL_0078: { String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_22 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_22, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_008d: { int32_t L_23 = ___options4; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)268435456))))) { goto IL_00a2; } } { String_t* L_24 = ___source0; String_t* L_25 = ___value1; int32_t L_26 = ___startIndex2; int32_t L_27 = ___count3; NullCheck(L_24); int32_t L_28 = String_IndexOf_mDACE3FE07E6B127A9E01E6F0DB10C288AB49CEEC(L_24, L_25, L_26, L_27, 5, /*hidden argument*/NULL); return L_28; } IL_00a2: { int32_t L_29 = ___options4; if (!((int32_t)((int32_t)L_29&(int32_t)((int32_t)-32)))) { goto IL_00c7; } } { int32_t L_30 = ___options4; if ((((int32_t)L_30) == ((int32_t)((int32_t)1073741824)))) { goto IL_00c7; } } { String_t* L_31 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_32, L_31, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_00c7: { String_t* L_33 = ___source0; int32_t L_34 = ___startIndex2; int32_t L_35 = ___count3; String_t* L_36 = ___value1; int32_t L_37 = ___options4; int32_t L_38 = CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27(__this, L_33, L_34, L_35, L_36, L_37, (bool)1, /*hidden argument*/NULL); return L_38; } } // System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___value1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___options4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)-32)))) { goto IL_004a; } } { int32_t L_5 = ___options4; if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824)))) { goto IL_004a; } } { int32_t L_6 = ___options4; if ((((int32_t)L_6) == ((int32_t)((int32_t)268435456)))) { goto IL_004a; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_8, L_7, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_004a: { String_t* L_9 = ___source0; NullCheck(L_9); int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } { int32_t L_11 = ___startIndex2; if ((((int32_t)L_11) == ((int32_t)(-1)))) { goto IL_0059; } } { int32_t L_12 = ___startIndex2; if (L_12) { goto IL_0065; } } IL_0059: { String_t* L_13 = ___value1; NullCheck(L_13); int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0063; } } { return (-1); } IL_0063: { return 0; } IL_0065: { int32_t L_15 = ___startIndex2; if ((((int32_t)L_15) < ((int32_t)0))) { goto IL_0072; } } { int32_t L_16 = ___startIndex2; String_t* L_17 = ___source0; NullCheck(L_17); int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_17, /*hidden argument*/NULL); if ((((int32_t)L_16) <= ((int32_t)L_18))) { goto IL_0087; } } IL_0072: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_0087: { int32_t L_21 = ___startIndex2; String_t* L_22 = ___source0; NullCheck(L_22); int32_t L_23 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_22, /*hidden argument*/NULL); if ((!(((uint32_t)L_21) == ((uint32_t)L_23)))) { goto IL_00b8; } } { int32_t L_24 = ___startIndex2; ___startIndex2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); int32_t L_25 = ___count3; if ((((int32_t)L_25) <= ((int32_t)0))) { goto IL_00a0; } } { int32_t L_26 = ___count3; ___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); } IL_00a0: { String_t* L_27 = ___value1; NullCheck(L_27); int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL); if (L_28) { goto IL_00b8; } } { int32_t L_29 = ___count3; if ((((int32_t)L_29) < ((int32_t)0))) { goto IL_00b8; } } { int32_t L_30 = ___startIndex2; int32_t L_31 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1))) < ((int32_t)0))) { goto IL_00b8; } } { int32_t L_32 = ___startIndex2; return L_32; } IL_00b8: { int32_t L_33 = ___count3; if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_00c6; } } { int32_t L_34 = ___startIndex2; int32_t L_35 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)), (int32_t)1))) >= ((int32_t)0))) { goto IL_00db; } } IL_00c6: { String_t* L_36 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_37 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_37, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_00db: { int32_t L_38 = ___options4; if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)268435456))))) { goto IL_00f0; } } { String_t* L_39 = ___source0; String_t* L_40 = ___value1; int32_t L_41 = ___startIndex2; int32_t L_42 = ___count3; NullCheck(L_39); int32_t L_43 = String_LastIndexOf_m074A70E0C63246B664CC26F4D0B5203424B2BCF7(L_39, L_40, L_41, L_42, 5, /*hidden argument*/NULL); return L_43; } IL_00f0: { String_t* L_44 = ___source0; int32_t L_45 = ___startIndex2; int32_t L_46 = ___count3; String_t* L_47 = ___value1; int32_t L_48 = ___options4; int32_t L_49 = CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27(__this, L_44, L_45, L_46, L_47, L_48, (bool)0, /*hidden argument*/NULL); return L_49; } } // System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_GetSortKey_m04E8E036BF5C113110681966EC4F444ABEBB5478 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { { String_t* L_0 = ___source0; int32_t L_1 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_2 = CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___options1; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-536870944)))) { goto IL_002c; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*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, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var); } IL_002c: { String_t* L_5 = ___source0; bool L_6 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_003b; } } { ___source0 = _stringLiteral5BA93C9DB0CFF93F52B521D7420E43F6EDA2784F; } IL_003b: { String_t* L_7 = ___source0; int32_t L_8 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8(__this, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.Globalization.CompareInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C_MetadataUsageId); s_Il2CppMethodInitialized = true; } CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * V_0 = NULL; { RuntimeObject * L_0 = ___value0; V_0 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *)IsInstClass((RuntimeObject*)L_0, CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var)); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_3 = V_0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, L_3); bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_4, /*hidden argument*/NULL); return L_5; } IL_001c: { return (bool)0; } } // System.Int32 System.Globalization.CompareInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCode_m49D4FC2C50E5DF1C2FB30234D8B1D5F624393EE7 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); return L_1; } } // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m91DE0691957416A2BBC9AADD8D4AE2A2885A5AB3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { { String_t* L_0 = ___source0; int32_t L_1 = ___options1; int32_t L_2 = CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142(__this, L_0, L_1, (bool)0, (((int64_t)((int64_t)0))), /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___options1; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-32)))) { goto IL_0029; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*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, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var); } IL_0029: { String_t* L_5 = ___source0; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0033; } } { return 0; } IL_0033: { String_t* L_7 = ___source0; int32_t L_8 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = VirtFuncInvoker2< SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 *, String_t*, int32_t >::Invoke(13 /* System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions) */, __this, L_7, L_8); NullCheck(L_9); int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_9); return L_10; } } // System.String System.Globalization.CompareInfo::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); String_t* L_1 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralD9977C4ABA9BD29906A95DAC37967CFF847F0EC5, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { bool L_0 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_managedCollationChecked_24(); if (L_0) { goto IL_0030; } } { String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral9377E60A3330B8DCBA93D22F00E784D5E303A292, /*hidden argument*/NULL); bool L_2 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_1, _stringLiteralFB360F9C09AC8C5EDB2F18BE5DE4E80EA4C430D0, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var); bool L_3 = MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline(/*hidden argument*/NULL); G_B4_0 = ((int32_t)(L_3)); goto IL_0025; } IL_0024: { G_B4_0 = 0; } IL_0025: { ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->set_managedCollation_23((bool)G_B4_0); ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->set_managedCollationChecked_24((bool)1); } IL_0030: { bool L_4 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_managedCollation_23(); return L_4; } } // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_0 = __this->get_collator_21(); if (!L_0) { goto IL_000f; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = __this->get_collator_21(); return L_1; } IL_000f: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_2 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); if (L_2) { goto IL_002c; } } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_3 = StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline(/*hidden argument*/NULL); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_4 = (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *)il2cpp_codegen_object_new(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3_il2cpp_TypeInfo_var); Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43(L_4, L_3, /*hidden argument*/Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43_RuntimeMethod_var); InterlockedCompareExchangeImpl<Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *>((Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 **)(((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_address_of_collators_22()), L_4, (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *)NULL); } IL_002c: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_5 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); V_0 = L_5; V_1 = (bool)0; } IL_0034: try { // begin try (depth: 1) { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_6 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_6, (bool*)(&V_1), /*hidden argument*/NULL); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_7 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); String_t* L_8 = __this->get_m_sortName_4(); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** L_9 = __this->get_address_of_collator_21(); NullCheck(L_7); bool L_10 = Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51(L_7, L_8, (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 **)L_9, /*hidden argument*/Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51_RuntimeMethod_var); if (L_10) { goto IL_0080; } } IL_0054: { String_t* L_11 = __this->get_m_name_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_11, /*hidden argument*/NULL); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_13 = (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 *)il2cpp_codegen_object_new(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_il2cpp_TypeInfo_var); SimpleCollator__ctor_m425CCCFC8354699C91043D289C2DD7A20F437298(L_13, L_12, /*hidden argument*/NULL); __this->set_collator_21(L_13); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_14 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); String_t* L_15 = __this->get_m_sortName_4(); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_16 = __this->get_collator_21(); NullCheck(L_14); Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1(L_14, L_15, L_16, /*hidden argument*/Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1_RuntimeMethod_var); } IL_0080: { IL2CPP_LEAVE(0x8C, FINALLY_0082); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0082; } FINALLY_0082: { // begin finally (depth: 1) { bool L_17 = V_1; if (!L_17) { goto IL_008b; } } IL_0085: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_18 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_18, /*hidden argument*/NULL); } IL_008b: { IL2CPP_END_FINALLY(130) } } // end finally (depth: 1) IL2CPP_CLEANUP(130) { IL2CPP_JUMP_TBL(0x8C, IL_008c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008c: { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = __this->get_collator_21(); return L_19; } } // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * V_0 = NULL; { bool L_0 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_2 = ___source0; int32_t L_3 = ___options1; NullCheck(L_1); SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_4 = SimpleCollator_GetSortKey_m016BF061CEA62BF2E99B122B913C43FB1643F1A0(L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0015: { int32_t L_5 = __this->get_culture_6(); String_t* L_6 = ___source0; int32_t L_7 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_8 = (SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 *)il2cpp_codegen_object_new(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_il2cpp_TypeInfo_var); SortKey__ctor_m9DDF38B93F6C34DD3F7FF538B7C4E1BC9629CCF3(L_8, L_5, L_6, L_7, /*hidden argument*/NULL); V_0 = L_8; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = V_0; String_t* L_10 = ___source0; int32_t L_11 = ___options1; CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC(__this, L_9, L_10, L_11, /*hidden argument*/NULL); SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_12 = V_0; return L_12; } } // System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method) { { int32_t L_0 = ___opt4; bool L_1 = ___first5; if (!((int32_t)((int32_t)((((int32_t)L_0) == ((int32_t)((int32_t)1073741824)))? 1 : 0)&(int32_t)L_1))) { goto IL_0019; } } { String_t* L_2 = ___s10; String_t* L_3 = ___s23; int32_t L_4 = ___sindex1; int32_t L_5 = ___count2; NullCheck(L_2); int32_t L_6 = String_IndexOfUnchecked_m372BBB8A4722BFDE7CF4856F0EE0B4A197C5AFB0(L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0019: { bool L_7 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (L_7) { goto IL_0030; } } { String_t* L_8 = ___s10; int32_t L_9 = ___sindex1; int32_t L_10 = ___count2; String_t* L_11 = ___s23; int32_t L_12 = ___opt4; bool L_13 = ___first5; int32_t L_14 = CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA(__this, L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_0030: { String_t* L_15 = ___s10; int32_t L_16 = ___sindex1; int32_t L_17 = ___count2; String_t* L_18 = ___s23; int32_t L_19 = ___opt4; bool L_20 = ___first5; int32_t L_21 = CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196(__this, L_15, L_16, L_17, L_18, L_19, L_20, /*hidden argument*/NULL); return L_21; } } // System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { { bool L_0 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { String_t* L_1 = ___str10; int32_t L_2 = ___offset11; int32_t L_3 = ___length12; String_t* L_4 = ___str23; int32_t L_5 = ___offset24; int32_t L_6 = ___length25; int32_t L_7 = ___options6; int32_t L_8 = CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE(__this, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } IL_0019: { String_t* L_9 = ___str10; int32_t L_10 = ___offset11; int32_t L_11 = ___length12; String_t* L_12 = ___str23; int32_t L_13 = ___offset24; int32_t L_14 = ___length25; int32_t L_15 = ___options6; int32_t L_16 = CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607(__this, L_9, L_10, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL); return L_16; } } // System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_0 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_1 = ___str10; int32_t L_2 = ___offset11; int32_t L_3 = ___length12; String_t* L_4 = ___str23; int32_t L_5 = ___offset24; int32_t L_6 = ___length25; int32_t L_7 = ___options6; NullCheck(L_0); int32_t L_8 = SimpleCollator_Compare_mEDE295E6D8B3ACB2378D50267659C9203ACBD795(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } } // System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method) { { bool L_0 = ___first5; if (L_0) { goto IL_0017; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_2 = ___s10; String_t* L_3 = ___s23; int32_t L_4 = ___sindex1; int32_t L_5 = ___count2; int32_t L_6 = ___opt4; NullCheck(L_1); int32_t L_7 = SimpleCollator_LastIndexOf_m86547689DF681227BFE04C802D2BFB8560F9EE84(L_1, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } IL_0017: { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_8 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_9 = ___s10; String_t* L_10 = ___s23; int32_t L_11 = ___sindex1; int32_t L_12 = ___count2; int32_t L_13 = ___opt4; NullCheck(L_8); int32_t L_14 = SimpleCollator_IndexOf_mD91169E7D477C503B2DED708B19CE36FF63C6856(L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); return L_14; } } // System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method) { typedef void (*CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, RuntimeObject *, String_t*, int32_t); using namespace il2cpp::icalls; ((CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC_ftn)mscorlib::System::Globalization::CompareInfo::assign_sortkey) (__this, ___key0, ___source1, ___options2); } // System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { typedef int32_t (*CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t); using namespace il2cpp::icalls; return ((CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE_ftn)mscorlib::System::Globalization::CompareInfo::internal_compare) (__this, ___str10, ___offset11, ___length12, ___str23, ___offset24, ___length25, ___options6); } // System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method) { typedef int32_t (*CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, String_t*, int32_t, int32_t, String_t*, int32_t, bool); using namespace il2cpp::icalls; return ((CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA_ftn)mscorlib::System::Globalization::CompareInfo::internal_index) (__this, ___source0, ___sindex1, ___count2, ___value3, ___options4, ___first5); } // System.Void System.Globalization.CompareInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_MetadataUsageId); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_m_Size_1(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_enabled_8(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_level_4(); return (int32_t)(L_0); } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_m_anyKeywordMask_5(); return (int64_t)(L_0); } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CEventIdU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_U3CVersionU3Ek__BackingField_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CLevelU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CMessageU3Ek__BackingField_5(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_U3CKeywordsU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_opcode_8(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTaskU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBmscorlib4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinal_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_keywords_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CTagsU3Ek__BackingField_3(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline (EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_U3CKeywordsU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__HResult_11(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__HResult_11(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_state_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_stackTrace_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method) { { bool L_0 = ___readOnly0; __this->set_m_isReadOnly_39(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_name_13(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294mscorlib4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var); bool L_0 = ((MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var))->get_isReady_18(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { { uint64_t L_0 = (uint64_t)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return L_0; } }
[ "DabeerM@hotmail.com" ]
DabeerM@hotmail.com
867bc480a587fc17e70fb35381ef6c8a2bc359ab
2f221a3cc6b46d4782970d5283dca60e12b5e16b
/wk6306/test01.cpp
0448425987b04487e8de6e1d01d35a65f5cffd09
[]
no_license
Eudaemonal/C-17
9ad1533cc3bb54b5c7f7b0b039c6478b8c651d72
94ae7e9b692c06ad8b279a05a7262a065f83b5ad
refs/heads/master
2021-09-15T08:10:07.957732
2018-05-29T01:47:00
2018-05-29T01:47:00
113,742,841
0
0
null
null
null
null
UTF-8
C++
false
false
909
cpp
#include <iostream> #include <string> #include <thread> #include <mutex> #include <condition_variable> std::mutex m; std::condition_variable cv; std::string data; bool ready = false; bool processed = false; void worker_thread(){ std::unique_lock<std::mutex> lk(m); cv.wait(lk, []{return ready;}); std::cout << "Worker thread is processing data\n"; data += " after processing"; processed = true; std::cout << "Worker thread signals data processing completed\n"; lk.unlock(); cv.notify_one(); } int main(int argc, char *argv[]){ std::thread worker(worker_thread); data = "Example data"; { std::lock_guard<std::mutex> lk(m); ready = true; std::cout << "main() signals data ready for processing\n"; } cv.notify_one(); { std::unique_lock<std::mutex> lk(m); cv.wait(lk, []{return processed;}); } std::cout << "Back in main(), data = " << data << "\n"; worker.join(); return 0; }
[ "eudaemonal@gmail.com" ]
eudaemonal@gmail.com
d35d22ea698d0c85eb37d41d9e00981aa43a806f
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_18755.cpp
72757910e629c14a361c46452b042c6dc89a319c
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
775
cpp
{ #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD__ >= 10) static int no_accept4; if (no_accept4) goto skip; peerfd = uv__accept4(sockfd, NULL, NULL, UV__SOCK_NONBLOCK|UV__SOCK_CLOEXEC); if (peerfd != -1) return peerfd; if (errno == EINTR) continue; if (errno != ENOSYS) return -errno; no_accept4 = 1; skip: #endif peerfd = accept(sockfd, NULL, NULL); if (peerfd == -1) { if (errno == EINTR) continue; return -errno; } err = uv__cloexec(peerfd, 1); if (err == 0) err = uv__nonblock(peerfd, 1); if (err) { uv__close(peerfd); return err; } return peerfd; }
[ "993273596@qq.com" ]
993273596@qq.com
821865309117c10a8173ff007bff6345e372bfb7
47c052112c248d2d5d9a16d8fdd6f8dc9838fad3
/nfc/Nfc.h
84f214902e3115ad49813ad7a82987800c9346ee
[]
no_license
dlasdl/android_device_A7010a48
227d5cc89affcea8d30ca08970cc97a42590fc37
198102aa9a7fe3ee9c45ecfb7b50dc8586ce529f
refs/heads/master
2020-04-17T13:29:39.540273
2018-02-28T20:33:03
2018-02-28T20:33:03
166,618,161
0
1
null
2019-01-20T03:14:17
2019-01-20T03:14:16
null
UTF-8
C++
false
false
2,618
h
#ifndef ANDROID_HARDWARE_NFC_V1_0_NFC_H #define ANDROID_HARDWARE_NFC_V1_0_NFC_H #include <android/hardware/nfc/1.0/INfc.h> #include <hidl/Status.h> #include <hardware/hardware.h> #include <hardware/nfc.h> namespace android { namespace hardware { namespace nfc { namespace V1_0 { namespace implementation { using ::android::hardware::nfc::V1_0::INfc; using ::android::hardware::nfc::V1_0::INfcClientCallback; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::hardware::hidl_vec; using ::android::hardware::hidl_string; using ::android::sp; struct NfcDeathRecipient : hidl_death_recipient { NfcDeathRecipient(const sp<INfc> nfc) : mNfc(nfc) { } virtual void serviceDied(uint64_t /*cookie*/, const wp<::android::hidl::base::V1_0::IBase>& /*who*/) { mNfc->close(); } sp<INfc> mNfc; }; struct Nfc : public INfc { Nfc(nfc_nci_device_t* device); ::android::hardware::Return<NfcStatus> open(const sp<INfcClientCallback>& clientCallback) override; ::android::hardware::Return<uint32_t> write(const hidl_vec<uint8_t>& data) override; ::android::hardware::Return<NfcStatus> coreInitialized(const hidl_vec<uint8_t>& data) override; ::android::hardware::Return<NfcStatus> prediscover() override; ::android::hardware::Return<NfcStatus> close() override; ::android::hardware::Return<NfcStatus> controlGranted() override; ::android::hardware::Return<NfcStatus> powerCycle() override; static void eventCallback(uint8_t event, uint8_t status) { if (mCallback != nullptr) { auto ret = mCallback->sendEvent( (::android::hardware::nfc::V1_0::NfcEvent) event, (::android::hardware::nfc::V1_0::NfcStatus) status); if (!ret.isOk()) { ALOGW("Failed to call back into NFC process."); } } } static void dataCallback(uint16_t data_len, uint8_t* p_data) { hidl_vec<uint8_t> data; data.setToExternal(p_data, data_len); if (mCallback != nullptr) { auto ret = mCallback->sendData(data); if (!ret.isOk()) { ALOGW("Failed to call back into NFC process."); } } } private: static sp<INfcClientCallback> mCallback; const nfc_nci_device_t* mDevice; sp<NfcDeathRecipient> mDeathRecipient; }; #define NFC_NCI_MT6605_HARDWARE_MODULE_ID "nfc_nci.mt6605" extern "C" INfc* HIDL_FETCH_INfc(const char* name); } // namespace implementation } // namespace V1_0 } // namespace nfc } // namespace hardware } // namespace android #endif // ANDROID_HARDWARE_NFC_V1_0_NFC_H
[ "gabro2003@gmail.com" ]
gabro2003@gmail.com
93426193f5b829c0c2a3a64febc099f09e229252
793c8848753f530aab28076a4077deac815af5ac
/src/dskphone/uilogic/talkuilogic/uilogicacdcallinfouibase.h
01c705c1a6bafd12c17ef1efed5e6929cad64065
[]
no_license
Parantido/sipphone
4c1b9b18a7a6e478514fe0aadb79335e734bc016
f402efb088bb42900867608cc9ccf15d9b946d7d
refs/heads/master
2021-09-10T20:12:36.553640
2018-03-30T12:44:13
2018-03-30T12:44:13
263,628,242
1
0
null
2020-05-13T12:49:19
2020-05-13T12:49:18
null
UTF-8
C++
false
false
576
h
#ifndef _UILOGIC_ACDCALLINFO_UIBASE_H #define _UILOGIC_ACDCALLINFO_UIBASE_H #include "uilogicbasetalkui.h" #include "acdcallinfoprocessor.h" class CUILogicACDCallInfoUIBase: public CUILogicBaseTalkUI { public: CUILogicACDCallInfoUIBase(void); virtual ~CUILogicACDCallInfoUIBase(void); public: //获取绑定的processor virtual CBaseTalkUIProcessor * GetBindUIProcessor(); //绑定processor virtual void BindProcessor(CBaseTalkUIProcessor * pBindProcessor); protected: //保存的processor CACDCallInfoProcessor * m_pProcessor; }; #endif
[ "rongxx@yealink.com" ]
rongxx@yealink.com
809e676ad9813b6426305934276ab74d957d07a0
62510fa67d0ca78082109a861b6948206252c885
/hihope_neptune-oh_hid/00_src/v0.1/foundation/multimedia/media_lite/frameworks/player_lite/player_control/player/fsm/src/hi_state.h
e498fb8c4e650fd0de4b559cf4b262b877aa9129
[ "Apache-2.0" ]
permissive
dawmlight/vendor_oh_fun
a869e7efb761e54a62f509b25921e019e237219b
bc9fb50920f06cd4c27399f60076f5793043c77d
refs/heads/master
2023-08-05T09:25:33.485332
2021-09-10T10:57:48
2021-09-10T10:57:48
406,236,565
1
0
null
null
null
null
UTF-8
C++
false
false
1,289
h
/* * Copyright (c) 2020-2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef HI_STATE_H #define HI_STATE_H #include <string> #include <vector> #include <map> #include "message.h" namespace OHOS { class HiState { public: explicit HiState(std::string name); virtual ~HiState(); virtual void AddTransition(int32_t event, HiState &state); virtual HiState *FindTransition(int32_t event); virtual int32_t HandleMessage(const MsgInfo &msg) = 0; virtual int32_t Enter(); virtual int32_t Exit(); std::string Name() const; bool operator==(const HiState &state); friend class HiStateMachine; private: std::map<int32_t, HiState *> m_transitionMap; std::string m_name; }; }; #endif // HI_STATE_H
[ "liu_xiyao@hoperun.com" ]
liu_xiyao@hoperun.com
216cd252859c6c501129e33c719f5df1a0baecf0
ae001b199ad749b056b016966b56b2f555a95116
/src/cpp/shared/combat/army.cpp
0f1498948c6af0323fb7817b3061aeb693d98e4d
[]
no_license
DarkAtom77/project-ironfist
203022524461a1154a5bd33c6c862b5089b1521b
bf6b02010ccbec8e4e718827c987b22a81f86757
refs/heads/master
2020-04-13T23:27:55.946458
2018-11-04T03:44:55
2018-11-04T03:44:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
94,067
cpp
#include "artifacts.h" #include "combat/army.h" #include "combat/combat.h" #include "resource/resourceManager.h" #include "scripting/callback.h" #include "sound/sound.h" #include "spell/spells.h" #include "expansions.h" #include <set> #include <vector> extern ironfistExtra gIronfistExtra; extern char *cMonFilename[]; // it's inside creature.cpp extern char *cArmyFrameFileNames[]; // it's inside creature.cpp extern char *cArmyProjectileFileNames[]; // it's inside creature.cpp extern icon *gCurLoadedSpellIcon; extern int gCurLoadedSpellEffect; extern int gCurSpellEffectFrame; extern int gbGenieHalf; extern int gbRemoteOn; extern int giWalkingFrom; extern int giWalkingFrom2; extern int giWalkingTo; extern int giWalkingTo2; extern int giWalkingYMod; extern int gbComputeExtent; extern int gbSaveBiggestExtent; extern int gbReturnAfterComputeExtent; extern int gbCurrArmyDrawn; extern int gbLimitToExtent; extern unsigned __int8 moatCell[]; extern float gfBattleStat[]; extern float gfSSArcheryMod[]; bool gCloseMove; // ironfist var to differentiate between close/from a distance attack bool gMoveAttack; // ironfist var to differentiate between move/move and attack bool gChargePathDamage; bool gCharging; char *gCombatFxNames[34] = { "", "magic01.icn", "magic02.icn", "magic03.icn", "magic04.icn", "magic05.icn", "magic06.icn", "magic07.icn", "magic08.icn", "rainbluk.icn", "cloudluk.icn", "moraleg.icn", "moraleb.icn", "reddeath.icn", "redfire.icn", "sparks.icn", "electric.icn", "physical.icn", "bluefire.icn", "icecloud.icn", "lichclod.icn", "bless.icn", "berzerk.icn", "shield.icn", "haste.icn", "paralyze.icn", "hypnotiz.icn", "dragslay.icn", "blind.icn", "curse.icn", "stonskin.icn", "stelskin.icn", "plasmblast.icn", "shdwmark.icn" }; unsigned __int8 giNumPowFrames[34] = { 10u, 10u, 10u, 10u, 10u, 10u, 10u, 10u, 10u, 8u, 8u, 10u, 10u, 10u, 10u, 15u, 10u, 10u, 10u, 10u, 10u, 16u, 16u, 14u, 19u, 22u, 10u, 17u, 10u, 12u, 11u, 16u, 7u, 8u }; void OccupyHexes(army *a) { if (!(a->creature.creature_flags & TWO_HEXER)) return; if (a->facingRight == 1) a->occupiedHex--; else a->occupiedHex++; } int __fastcall OppositeDirection(signed int hex) { int result; if (hex == 6) { result = 7; } else if (hex > 6) { result = 6; } else { result = (hex + 3) % 6; } return result; } void DoAttackBattleMessage(army *attacker, army *target, int creaturesKilled, int damageDone) { char *attackingCreature, *targetCreature; if (attacker->quantity <= 1) attackingCreature = GetCreatureName(attacker->creatureIdx); else attackingCreature = GetCreaturePluralName(attacker->creatureIdx); if (creaturesKilled <= 1) targetCreature = GetCreatureName(target->creatureIdx); else targetCreature = GetCreaturePluralName(target->creatureIdx); if (damageDone == -1) { sprintf(gText, "The mirror image is destroyed!"); } else if (damageDone == -2) { sprintf(gText, "Cyber Shadow Assasins dodge the attack!"); } else if (gbGenieHalf) { sprintf(gText, "%s %s half the enemy troops!", attackingCreature, (attacker->quantity > 1) ? "damage" : "damages"); } else if (creaturesKilled <= 0) { sprintf(gText, "%s %s %d damage.", attackingCreature, (attacker->quantity > 1) ? "do" : "does", damageDone); } else { sprintf( gText, "%s %s %d damage.\n%d %s %s.", attackingCreature, (attacker->quantity > 1) ? "do" : "does", damageDone, creaturesKilled, targetCreature, (creaturesKilled > 1) ? "perish" : "perishes"); } gText[0] = toupper(gText[0]); gpCombatManager->CombatMessage(gText, 1, 1, 0); } void army::SetChargingMoveAnimation(CHARGING_DIRECTION dir) { if(this->creatureIdx == CREATURE_CYBER_PLASMA_LANCER) { int inAirFrame; switch(dir) { case CHARGING_FORWARD: inAirFrame = 17; break; case CHARGING_UP: inAirFrame = 96; break; case CHARGING_DOWN: inAirFrame = 97; break; } this->creature.creature_flags |= FLYER; for(int i = 0; i < 8; i++) { this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][i] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WALKING][i] = inAirFrame; } this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_STANDING][0] = inAirFrame; } } void army::RevertChargingMoveAnimation() { if(this->creatureIdx == CREATURE_CYBER_PLASMA_LANCER) { this->frameInfo.animationLengths[ANIMATION_TYPE_WALKING] = 8; for(int i = 0; i < 8; i++) { this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WALKING][i] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][i] = 46 + i; } this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_STANDING][0] = 69; this->creature.creature_flags &= ~FLYER; } } void army::SetJumpingAnimation() { if(this->creatureIdx == CREATURE_CYBER_PLASMA_BERSERKER) { this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS] = 1; this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN] = 2; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS][0] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS][0] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS][0] = 34; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN][0] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN][0] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN][0] = 35; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN][1] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN][1] = this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN][1] = 36; } } void army::RevertJumpingAnimation() { if(this->creatureIdx == CREATURE_CYBER_PLASMA_BERSERKER) { this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS] = 4; this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN] = this->frameInfo.animationLengths[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN] = 2; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS][0] = 17; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS][0] = 10; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS][0] = 24; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN][0] = 21; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN][0] = 14; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN][0] = 28; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN][1] = 22; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN][1] = 15; this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN][1] = 29; } } void army::ChargingDamage(std::vector<int> affectedHexes) { if(!affectedHexes.size()) return; int oldFacingRight = this->facingRight; int totalDamage = 0; int totalCreaturesKilled = 0; gChargePathDamage = true; for(auto i : affectedHexes) { int targHex = i; army *primaryTarget = &gpCombatManager->creatures[gpCombatManager->combatGrid[targHex].unitOwner][gpCombatManager->combatGrid[targHex].stackIdx]; int creaturesKilled = 0; int damDone; this->DamageEnemy(primaryTarget, &damDone, (int *)&creaturesKilled, 0, 0); if(damDone > 0) totalDamage += damDone; totalCreaturesKilled += creaturesKilled; if(primaryTarget->creatureIdx == CREATURE_CYBER_SHADOW_ASSASSIN) { // astral dodge animations if(gIronfistExtra.combat.stack.abilityNowAnimating[primaryTarget][ASTRAL_DODGE]) { int dodgeAnimLen = 7; primaryTarget->frameInfo.animationLengths[ANIMATION_TYPE_WINCE] = dodgeAnimLen; for (int p = 0; p < dodgeAnimLen; p++) { primaryTarget->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WINCE][p] = 34 + p; } gIronfistExtra.combat.stack.abilityNowAnimating[primaryTarget][ASTRAL_DODGE] = false; } else { // revert to usual animations after the first received attack int winceAnimLen = 1; primaryTarget->frameInfo.animationLengths[ANIMATION_TYPE_WINCE] = winceAnimLen; primaryTarget->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WINCE][0] = 50; } } } gChargePathDamage = false; // Battle message char *attackingCreature, *targetCreature; if (this->quantity <= 1) attackingCreature = GetCreatureName(this->creatureIdx); else attackingCreature = GetCreaturePluralName(this->creatureIdx); if(totalDamage > 0) { if (totalCreaturesKilled <= 0) { sprintf(gText, "%s %s %d damage.", attackingCreature, (this->quantity > 1) ? "do" : "does", totalDamage); } else { sprintf( gText, "%s %s %d damage.\n%d creatures %s.", attackingCreature, (this->quantity > 1) ? "do" : "does", totalDamage, totalCreaturesKilled, (totalCreaturesKilled > 1) ? "perish" : "perishes"); } gText[0] = toupper(gText[0]); gpCombatManager->CombatMessage(gText, 1, 1, 0); } gpCombatManager->limitCreature[this->owningSide][this->stackIdx] = 1; if (this->facingRight != oldFacingRight) { if (!(this->creature.creature_flags & DEAD)) { this->facingRight = oldFacingRight; OccupyHexes(this); } // Kert: Not sure if this is needed /*for(auto targetHex : affectedHexes) { army *primaryTarget = &gpCombatManager->creatures[gpCombatManager->combatGrid[targetHex].unitOwner][gpCombatManager->combatGrid[targetHex].stackIdx]; int targetOldFacingRight = primaryTarget->facingRight; if(!(primaryTarget->creature.creature_flags & DEAD)) { if(primaryTarget->facingRight != targetOldFacingRight) { primaryTarget->facingRight = targetOldFacingRight; OccupyHexes(primaryTarget); } } }*/ } } void army::DoAttack(int isRetaliation) { army* primaryTarget = &gpCombatManager->creatures[gpCombatManager->combatGrid[targetHex].unitOwner][gpCombatManager->combatGrid[targetHex].stackIdx]; if (gpCombatManager->combatGrid[targetHex].unitOwner < 0 || gpCombatManager->combatGrid[targetHex].stackIdx < 0) primaryTarget = this; ScriptCallback("OnBattleMeleeAttack", this, primaryTarget, isRetaliation); if(isRetaliation) gCloseMove = true; primaryTarget = 0; this->field_6 = 3; int creaturesKilled = 0; army *secondHexTarget = nullptr; int oldFacingRight = this->facingRight; if (isRetaliation) gpCombatManager->currentActionSide = 1 - gpCombatManager->currentActionSide; if (this->creatureIdx == CREATURE_HYDRA) { this->DoHydraAttack(isRetaliation); } else { int tmpTargetNeighborIdx = this->targetNeighborIdx; int targetHex = this->occupiedHex; if (this->creature.creature_flags & TWO_HEXER && (!this->facingRight && this->targetNeighborIdx >= 3 || this->facingRight == 1 && (this->targetNeighborIdx <= 2 || this->targetNeighborIdx >= 6))) { if (oldFacingRight) targetHex = this->occupiedHex + 1; else targetHex = this->occupiedHex - 1; } targetHex = this->GetAdjacentCellIndex(targetHex, this->targetNeighborIdx); primaryTarget = &gpCombatManager->creatures[gpCombatManager->combatGrid[targetHex].unitOwner][gpCombatManager->combatGrid[targetHex].stackIdx]; if (this->creature.creature_flags & TWO_HEX_ATTACKER) { int secondTargetHex = this->GetAdjacentCellIndex(targetHex, this->targetNeighborIdx); if (ValidHex(secondTargetHex)) { if (gpCombatManager->combatGrid[secondTargetHex].unitOwner >= 0 && gpCombatManager->combatGrid[secondTargetHex].stackIdx >= 0 && (gpCombatManager->combatGrid[secondTargetHex].unitOwner != primaryTarget->owningSide || gpCombatManager->combatGrid[secondTargetHex].stackIdx != primaryTarget->stackIdx)) secondHexTarget = &gpCombatManager->creatures[gpCombatManager->combatGrid[secondTargetHex].unitOwner][gpCombatManager->combatGrid[secondTargetHex].stackIdx]; } } gpCombatManager->ResetLimitCreature(); int v2 = 80 * this->owningSide + 4 * this->stackIdx; ++*(signed int *)((char *)gpCombatManager->limitCreature[0] + v2); int v3 = 80 * primaryTarget->owningSide + 4 * primaryTarget->stackIdx; ++*(signed int *)((char *)gpCombatManager->limitCreature[0] + v3); if (secondHexTarget) { int v4 = 80 * secondHexTarget->owningSide + 4 * secondHexTarget->stackIdx; ++*(signed int *)((char *)gpCombatManager->limitCreature[0] + v4); } gpCombatManager->DrawFrame(0, 1, 0, 1, 75, 1, 1); int targetOldFacingRight = primaryTarget->facingRight; int shouldFaceRight; if (this->targetNeighborIdx > 2) { if (this->targetNeighborIdx > 5) shouldFaceRight = this->facingRight; else shouldFaceRight = 0; } else { shouldFaceRight = 1; } if (this->facingRight != shouldFaceRight) { this->facingRight = shouldFaceRight; if (this->creature.creature_flags & TWO_HEXER) { if (shouldFaceRight == 1) --this->occupiedHex; else ++this->occupiedHex; } primaryTarget->facingRight = 1 - this->facingRight; if (primaryTarget->facingRight != targetOldFacingRight) OccupyHexes(primaryTarget); } this->CheckLuck(); this->mightBeIsAttacking = 1; if (this->targetNeighborIdx != 6 && this->targetNeighborIdx != 5 && this->targetNeighborIdx) { if (this->targetNeighborIdx != 1 && this->targetNeighborIdx != 4) this->mightBeAttackAnimIdx = 24; else this->mightBeAttackAnimIdx = 20; } else { this->mightBeAttackAnimIdx = 16; } if (secondHexTarget) this->mightBeAttackAnimIdx += 2; gpSoundManager->MemorySample(this->combatSounds[1]); int damDone; this->DamageEnemy(primaryTarget, &damDone, (int *)&creaturesKilled, 0, isRetaliation); int v13 = 0; // unused if (secondHexTarget) this->DamageEnemy(secondHexTarget, &v13, &v13, 0, isRetaliation); if(CreatureHasAttribute(this->creatureIdx, CHARGER)) gCharging = false; DoAttackBattleMessage(this, primaryTarget, creaturesKilled, damDone); int enemyIncapacitated = 0; switch (this->creatureIdx) { case CREATURE_CYCLOPS: if (primaryTarget->quantity > 0 && (!secondHexTarget || secondHexTarget->quantity > 0)) { if (SRandom(1, 100) >= 20) { if (SRandom(1, 100) < 20 && secondHexTarget && secondHexTarget->SpellCastWorks(SPELL_PARALYZE)) secondHexTarget->spellEnemyCreatureAbilityIsCasting = SPELL_PARALYZE; } else if (primaryTarget && primaryTarget->SpellCastWorks(SPELL_PARALYZE)) { primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_PARALYZE; enemyIncapacitated = 1; } } break; case CREATURE_UNICORN: if (SRandom(1, 100) < 20 && primaryTarget && primaryTarget->SpellCastWorks(SPELL_BLIND)) { primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_BLIND; enemyIncapacitated = 1; } break; case CREATURE_MEDUSA: if (SRandom(1, 100) < 20 && primaryTarget && primaryTarget->SpellCastWorks(SPELL_MEDUSA_PETRIFY)) { primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_MEDUSA_PETRIFY; enemyIncapacitated = 1; } break; case CREATURE_MUMMY: case CREATURE_ROYAL_MUMMY: int chance; if (this->creatureIdx == CREATURE_MUMMY) chance = 20; else chance = 30; if (SRandom(1, 100) < chance) if (primaryTarget && primaryTarget->SpellCastWorks(SPELL_CURSE)) primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_CURSE; break; case CREATURE_ARCHMAGE: if (SRandom(1, 100) < 20 && primaryTarget && primaryTarget->SpellCastWorks(SPELL_ARCHMAGI_DISPEL)) primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_ARCHMAGI_DISPEL; break; case CREATURE_GHOST: gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner] = creaturesKilled; break; case CREATURE_VAMPIRE_LORD: gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner] = creaturesKilled * primaryTarget->creature.hp; break; } if(CreatureHasAttribute(this->creatureIdx, SHADOW_MARK)) { if (primaryTarget->SpellCastWorks(SPELL_SHADOW_MARK)) { primaryTarget->spellEnemyCreatureAbilityIsCasting = SPELL_SHADOW_MARK; } } if(primaryTarget->creatureIdx == CREATURE_CYBER_SHADOW_ASSASSIN) { // astral dodge animations if(gIronfistExtra.combat.stack.abilityNowAnimating[primaryTarget][ASTRAL_DODGE]) { int dodgeAnimLen = 7; primaryTarget->frameInfo.animationLengths[ANIMATION_TYPE_WINCE] = dodgeAnimLen; for (int p = 0; p < dodgeAnimLen; p++) { primaryTarget->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WINCE][p] = 34 + p; } gIronfistExtra.combat.stack.abilityNowAnimating[primaryTarget][ASTRAL_DODGE] = false; } else { // revert to usual animations after the first received attack int winceAnimLen = 1; primaryTarget->frameInfo.animationLengths[ANIMATION_TYPE_WINCE] = winceAnimLen; primaryTarget->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_WINCE][0] = 50; } } if(gIronfistExtra.combat.stack.abilityNowAnimating[this][JUMPER]) { SetJumpingAnimation(); gIronfistExtra.combat.stack.abilityNowAnimating[this][JUMPER] = false; } else { RevertJumpingAnimation(); } this->PowEffect(-1, 0, -1, -1); gpCombatManager->limitCreature[this->owningSide][this->stackIdx] = 1; if (this->creatureIdx == CREATURE_GHOST) this->quantity += gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner]; if (this->creatureIdx == CREATURE_VAMPIRE_LORD) { if (gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner] >= this->damage) { int v5 = gpCombatManager->combatGrid[this->occupiedHex].unitOwner; gpCombatManager->ghostAndVampireAbilityStrength[v5] -= this->damage; this->damage = 0; int v11 = gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner] / this->creature.hp; if (this->initialQuantity - this->quantity <= v11) this->quantity = this->initialQuantity; else this->quantity += v11; } else { this->damage -= gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[this->occupiedHex].unitOwner]; } } if (primaryTarget && primaryTarget->quantity > 0 && !primaryTarget->effectStrengths[EFFECT_PARALYZE] && !primaryTarget->effectStrengths[EFFECT_PETRIFY] && (primaryTarget->creatureIdx == CREATURE_GRIFFIN || !(primaryTarget->creature.creature_flags & RETALIATED)) && this->creatureIdx != CREATURE_ROGUE && this->creatureIdx != CREATURE_SPRITE && this->creatureIdx != CREATURE_VAMPIRE && this->creatureIdx != CREATURE_VAMPIRE_LORD && !(CreatureHasAttribute(this->creatureIdx, TELEPORTER) && !gCloseMove) && !enemyIncapacitated && !isRetaliation) { DelayMilli((signed __int64)(gfCombatSpeedMod[giCombatSpeed] * 150.0)); primaryTarget->targetNeighborIdx = OppositeDirection(this->targetNeighborIdx); if (primaryTarget->creature.creature_flags & TWO_HEXER) { if (this->occupiedHex == this->GetAdjacentCellIndex(primaryTarget->occupiedHex, (unsigned int)(primaryTarget->facingRight - 1) < 1 ? 0 : 5)) primaryTarget->targetNeighborIdx = 6; if (this->occupiedHex == this->GetAdjacentCellIndex(primaryTarget->occupiedHex, 3 - ((unsigned int)(primaryTarget->facingRight - 1) < 1))) primaryTarget->targetNeighborIdx = 7; } primaryTarget->DoAttack(1); primaryTarget->creature.creature_flags |= RETALIATED; if (gbRemoteOn && gpCombatManager->involvedInBadMorale[0] && gpCombatManager->involvedInBadMorale[1] && primaryTarget->creatureIdx == CREATURE_GHOST) primaryTarget->quantity += gpCombatManager->ghostAndVampireAbilityStrength[gpCombatManager->combatGrid[primaryTarget->occupiedHex].unitOwner]; } if ((this->creatureIdx == CREATURE_WOLF || this->creatureIdx == CREATURE_PALADIN || this->creatureIdx == CREATURE_CRUSADER) && primaryTarget && primaryTarget->quantity > 0 && !isRetaliation && !this->effectStrengths[EFFECT_PARALYZE] && !this->effectStrengths[EFFECT_PETRIFY] && !this->effectStrengths[EFFECT_BLIND] && this->quantity > 0) { DelayMilli((signed __int64)(gfCombatSpeedMod[giCombatSpeed] * 100.0)); int v16 = this->targetNeighborIdx; this->targetNeighborIdx = tmpTargetNeighborIdx; this->DoAttack(1); this->targetNeighborIdx = v16; } if (this->facingRight != oldFacingRight) { if (!(this->creature.creature_flags & DEAD)) { this->facingRight = oldFacingRight; OccupyHexes(this); } if (!(primaryTarget->creature.creature_flags & DEAD)) { if (primaryTarget->facingRight != targetOldFacingRight) { primaryTarget->facingRight = targetOldFacingRight; OccupyHexes(primaryTarget); } } } } if (!isRetaliation && (this->effectStrengths[EFFECT_BERSERKER] || this->effectStrengths[EFFECT_HYPNOTIZE])) { this->CancelSpellType(1); gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); } this->targetOwner = -1; if (isRetaliation) gpCombatManager->currentActionSide = 1 - gpCombatManager->currentActionSide; } void army::Walk(signed int dir, int last, int notFirst) { int targCell = this->GetAdjacentCellIndex(this->occupiedHex, dir); gCloseMove = IsCloseMove(targCell); // Bridge opening if (this->owningSide == 1 && gpCombatManager->isCastleBattle && (targCell == 58 || targCell == 59 || targCell == 60 && this->owningSide == 1 && this->creature.creature_flags & TWO_HEXER) && gpCombatManager->drawBridgePosition == BRIDGE_CLOSED) { this->animationType = ANIMATION_TYPE_STANDING; this->animationFrame = 0; gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); gpCombatManager->LowerDoor(); notFirst = 0; } giWalkingFrom = this->occupiedHex; giWalkingTo = targCell; if (this->creature.creature_flags & TWO_HEXER) { giWalkingFrom2 = this->occupiedHex + ((unsigned int)(this->facingRight - 1) < 1 ? 1 : -1); giWalkingTo2 = targCell + ((unsigned int)(this->facingRight - 1) < 1 ? 1 : -1); } else { giWalkingFrom2 = -1; giWalkingTo2 = -1; } giWalkingYMod = 0; BuildTempWalkSeq(&this->frameInfo, last, notFirst); this->field_8A = dir; if (!notFirst) { giMinExtentY = 640; giMinExtentX = 640; giMaxExtentY = 0; giMaxExtentX = 0; gbComputeExtent = 1; gbSaveBiggestExtent = 1; gbReturnAfterComputeExtent = 1; this->DrawToBuffer(gpCombatManager->combatGrid[this->occupiedHex].centerX, gpCombatManager->combatGrid[this->occupiedHex].occupyingCreatureBottomY, 0); gbReturnAfterComputeExtent = 0; gbSaveBiggestExtent = 0; gbComputeExtent = 0; } if (giMinExtentX < 0) giMinExtentX = 0; if (giMinExtentY < 0) giMinExtentY = 0; if (giMaxExtentX > 639) giMaxExtentX = 639; if (giMaxExtentY > 442) giMaxExtentY = 442; int offsetX = giMinExtentX; int offsetY = giMinExtentY; int v12 = giMaxExtentX; int v6 = giMaxExtentY; this->field_8E = 0; if (dir >= 3) { if (this->facingRight == 1) { this->field_8E = 1; this->facingRight = 1 - this->facingRight; if (this->creature.creature_flags & TWO_HEXER) ++this->occupiedHex; } } else if (!this->facingRight) { this->field_8E = 1; this->facingRight = 1 - this->facingRight; if (this->creature.creature_flags & TWO_HEXER) --this->occupiedHex; } if (!dir || dir == 5) this->field_6 = 0; if (dir == 2 || dir == 3) this->field_6 = 3; this->animationFrame = 0; this->animationType = ANIMATION_TYPE_WALKING; if (!gbNoShowCombat) gpSoundManager->MemorySample(this->combatSounds[0]); if (!notFirst) { gpCombatManager->combatGrid[this->occupiedHex].unitOwner = -1; gpCombatManager->DrawFrame(0, 0, 0, 0, 75, 1, 1); gpCombatManager->combatGrid[this->occupiedHex].unitOwner = gpCombatManager->otherCurrentSideThing; if (!gbNoShowCombat) gpWindowManager->screenBuffer->CopyTo(gpCombatManager->probablyBitmapForCombatScreen, 0, 0, 0, 0, 0x280u, 443); gpCombatManager->zeroedAfterAnimatingDeathAndHolySpells = 0; } if (!gbNoShowCombat) { for (int i = 0; this->frameInfo.animationLengths[6] > i; ++i) { this->animationFrame = i; if (notFirst || i) { gpCombatManager->probablyBitmapForCombatScreen->CopyTo( gpWindowManager->screenBuffer, giMinExtentX, giMinExtentY, giMinExtentX, giMinExtentY, giMaxExtentX - giMinExtentX + 1, giMaxExtentY - giMinExtentY + 1); if (giMinExtentX < 0) giMinExtentX = 0; if (giMinExtentY < 0) giMinExtentY = 0; if (giMaxExtentX > 639) giMaxExtentX = 639; if (giMaxExtentY > 442) giMaxExtentY = 442; offsetX = giMinExtentX; offsetY = giMinExtentY; v12 = giMaxExtentX; v6 = giMaxExtentY; } giMinExtentY = 640; giMinExtentX = 640; giMaxExtentY = 0; giMaxExtentX = 0; gbComputeExtent = 1; gbSaveBiggestExtent = 1; gbReturnAfterComputeExtent = 1; this->DrawToBuffer( gpCombatManager->combatGrid[this->occupiedHex].centerX, gpCombatManager->combatGrid[this->occupiedHex].occupyingCreatureBottomY, 0); gbReturnAfterComputeExtent = 0; gbComputeExtent = 0; gbSaveBiggestExtent = 0; if (giMinExtentX < 0) giMinExtentX = 0; if (giMinExtentY < 0) giMinExtentY = 0; if (giMaxExtentX > 639) giMaxExtentX = 639; if (giMaxExtentY > 442) giMaxExtentY = 442; gbCurrArmyDrawn = 0; gbComputeExtent = 1; gbLimitToExtent = 1; this->field_11D = 0; gpCombatManager->DrawFrame(0, 0, 0, 0, 75, 0, 1); this->field_11D = 1; gbLimitToExtent = 0; gbComputeExtent = 0; gbCurrArmyDrawn = 1; if (giMinExtentX < offsetX) offsetX = giMinExtentX; if (offsetY > giMinExtentY) offsetY = giMinExtentY; if (giMaxExtentX > v12) v12 = giMaxExtentX; if (giMaxExtentY > v6) v6 = giMaxExtentY; DelayTil(&glTimers); glTimers = (signed __int64)((double)KBTickCount() + (double)this->frameInfo.stepTime * gfCombatSpeedMod[giCombatSpeed] / (double)this->frameInfo.animationLengths[6]); gpWindowManager->UpdateScreenRegion(offsetX, offsetY, v12 - offsetX + 1, v6 - offsetY + 1); } } int adjCell = this->GetAdjacentCellIndex(this->occupiedHex, dir); gpCombatManager->combatGrid[this->occupiedHex].stackIdx = -1; gpCombatManager->combatGrid[this->occupiedHex].unitOwner = -1; gpCombatManager->combatGrid[this->occupiedHex].occupiersOtherHexIsToLeft = -1; if (this->creature.creature_flags & TWO_HEXER) { int v4 = this->occupiedHex + ((unsigned int)(this->facingRight - 1) < 1 ? 1 : -1); gpCombatManager->combatGrid[v4].stackIdx = -1; gpCombatManager->combatGrid[v4].unitOwner = -1; gpCombatManager->combatGrid[v4].occupiersOtherHexIsToLeft = -1; } gpCombatManager->combatGrid[adjCell].unitOwner = LOBYTE(this->owningSide); gpCombatManager->combatGrid[adjCell].stackIdx = LOBYTE(this->stackIdx); gpCombatManager->combatGrid[adjCell].occupiersOtherHexIsToLeft = -1; if (this->creature.creature_flags & TWO_HEXER) { int v7 = adjCell + ((unsigned int)(this->facingRight - 1) < 1 ? 1 : -1); gpCombatManager->combatGrid[v7].unitOwner = LOBYTE(this->owningSide); gpCombatManager->combatGrid[v7].stackIdx = LOBYTE(this->stackIdx); gpCombatManager->combatGrid[v7].occupiersOtherHexIsToLeft = adjCell <= v7; gpCombatManager->combatGrid[adjCell].occupiersOtherHexIsToLeft = adjCell >= v7; } this->occupiedHex = adjCell; if (this->field_8E) { this->facingRight = 1 - this->facingRight; OccupyHexes(this); this->field_8E = 0; } giWalkingFrom = -1; giWalkingFrom2 = -1; giWalkingTo = -1; giWalkingTo2 = -1; this->field_6 = 1; if (last == 1) { this->animationType = ANIMATION_TYPE_STANDING; this->animationFrame = 0; gpCombatManager->DrawFrame(1, 1, 0, 0, 75, 1, 1); } } int army::FindPath(int knownHex, int targHex, int speed, int flying, int flag) { int res; std::vector<int> obstacleHexes; if(!IsAICombatTurn() && CreatureHasAttribute(this->creatureIdx, JUMPER) && gIronfistExtra.combat.stack.abilityCounter[this][JUMPER]) { for (int i = 0; i < NUM_HEXES; i++) { if (gpCombatManager->combatGrid[i].isBlocked != 0 && !IsCastleWall(i)) { obstacleHexes.push_back(i); gpCombatManager->combatGrid[i].isBlocked = 0; } } } res = this->FindPath_orig(knownHex, targHex, speed, flying, flag); // pretending we don't see obstacles at all // this does nothing for creatures that don't ignore obstacles for (auto i : obstacleHexes) gpCombatManager->combatGrid[i].isBlocked = 1; return res; } int army::ValidPath(int hex, int flag) { if (ValidHex(hex)) { if (this->creature.creature_flags & FLYER) { return this->ValidFlight(hex, flag); } else if (this->FindPath(this->occupiedHex, hex, this->creature.speed, 0, flag)) { this->targetHex = hex; return 1; } else { return 0; } } return 0; } #pragma pack(push, 1) struct PathfindingInfo { char field_0; char field_1; __int16 field_2; char field_4; int field_5; }; #pragma pack(pop) #pragma pack(push,1) class searchArray { public: int field_0; int field_4; int field_8; char _1[8]; PathfindingInfo mainDataStructure[1024]; PathfindingInfo *field_2414; int field_2418; int field_241C[63]; searchArray(); }; #pragma pack(pop) void army::ArcJump(int fromHex, int toHex) { bool firingLeft = true; float fromX = gpCombatManager->combatGrid[fromHex].centerX; float fromY = gpCombatManager->combatGrid[fromHex].otherY2; float targX = gpCombatManager->combatGrid[toHex].centerX; float targY = gpCombatManager->combatGrid[toHex].otherY2; if(fromX > targX) { this->facingRight = false; firingLeft = false; } else { this->facingRight = true; } // remove from battlefield gpCombatManager->combatGrid[fromHex].stackIdx = -1; gpCombatManager->combatGrid[fromHex].unitOwner = -1; gpCombatManager->combatGrid[fromHex].occupiersOtherHexIsToLeft = -1; gpCombatManager->DrawFrame(0, 0, 0, 0, 75, 1, 1); // temporarily save the screen so we can clear it from the creature sprite later bitmap *savedscreen = new bitmap(0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); gpWindowManager->screenBuffer->CopyTo(savedscreen, 0, 0, 0, 0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][0] = 31; this->animationFrame = 0; this->animationType = ANIMATION_TYPE_MOVE; std::vector<COORD> points; const int NUM_FRAMES = 24; // equals to the number of frames for the whole arc path points = MakeCatapultArc(NUM_FRAMES, firingLeft, fromX, fromY, targX, targY); for(int i = 0; i < (int)points.size(); i++) { if(i == 5) { this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][0] = 32; } else if(i == 12) { this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][0] = 33; } savedscreen->CopyTo(gpWindowManager->screenBuffer, 0, 0, 0, 0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); // clear the screen from the previous creature sprite this->DrawToBuffer(points[i].X, points[i].Y, 0); gpCombatManager->DrawFrame(1, 1, 0, 0, 75, 0, 1); gpWindowManager->UpdateScreenRegion(0, 0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); glTimers = (signed __int64)((double)KBTickCount() + (double)40 * gfCombatSpeedMod[giCombatSpeed]); DelayTil(&glTimers); } // occupy new hex this->occupiedHex = toHex; gpCombatManager->combatGrid[this->occupiedHex].unitOwner = LOBYTE(this->owningSide); gpCombatManager->combatGrid[this->occupiedHex].stackIdx = LOBYTE(this->stackIdx); gpCombatManager->combatGrid[this->occupiedHex].occupiersOtherHexIsToLeft = -1; // reset renderer settings savedscreen->CopyTo(gpWindowManager->screenBuffer, 0, 0, 0, 0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); // clear the screen from the previous creature sprite giMinExtentY = giMinExtentX = giMaxExtentY = giMaxExtentX = 0; // reverting frame this->frameInfo.animationFrameToImgIdx[ANIMATION_TYPE_MOVE][0] = 1; delete savedscreen; } extern searchArray *gpSearchArray; int army::WalkTo(int hex) { this->targetStackIdx = -1; this->targetOwner = this->targetStackIdx; if (gpCombatManager->hasMoat && this->creature.creature_flags & TWO_HEXER) { bool goingToMoat = false; int moatIdx = 0; for (int i = 0; i < 9; ++i) { if (moatCell[i] == hex) { goingToMoat = true; moatIdx = i; } } if (goingToMoat) { bool onEnemySideOfMoat = false; if (moatIdx == 4 && gpCombatManager->drawBridgePosition != 4) onEnemySideOfMoat = true; if (moatIdx > 0 && *(&giWalkingYMod + moatIdx + 3) == this->occupiedHex// moatCell[moatIdx-1] || moatIdx < 8 && moatCell[moatIdx + 1] == this->occupiedHex) onEnemySideOfMoat = true; for (int j = 0; j < 6; ++j) { if (moatCell[moatIdx] == army::GetAdjacentCellIndex(this->occupiedHex, j)) onEnemySideOfMoat = true; } if (!this->owningSide && moatCell[this->occupiedHex / 13] < this->occupiedHex) onEnemySideOfMoat = true; if (this->owningSide == 1 && moatCell[this->occupiedHex / 13] > this->occupiedHex) onEnemySideOfMoat = true; if (!onEnemySideOfMoat) { if (this->facingRight == 1) --hex; else ++hex; } } } if(this->FindPath(this->occupiedHex, hex, this->creature.speed, 1, 0)) { int traveledHexes = 0; int initialHex = this->occupiedHex; for(int hexIdxb = gpSearchArray->field_8 - 1; hexIdxb >= 0; --hexIdxb) { int dir = *((BYTE *)&gpSearchArray->field_2418 + hexIdxb); int destHex = this->GetAdjacentCellIndex(this->occupiedHex, dir); if(this->creatureIdx == CREATURE_CYBER_PLASMA_BERSERKER && gIronfistExtra.combat.stack.abilityCounter[this][JUMPER]) { if(gMoveAttack && hexIdxb < 4) { // less than 4 hexes from enemy // find last hex for(int h = hexIdxb; h >= 0; --h) { dir = *((BYTE *)&gpSearchArray->field_2418 + h); destHex = this->GetAdjacentCellIndex(this->occupiedHex, dir); this->occupiedHex = destHex; } this->ArcJump(initialHex, destHex); gIronfistExtra.combat.stack.abilityNowAnimating[this][JUMPER] = true; this->CancelSpellType(0); return 0; } else if(gpCombatManager->combatGrid[destHex].isBlocked) { // jumping over obstacle //finding where to land for(int landHex = hexIdxb - 1; landHex >= 0; --landHex) { dir = *((BYTE *)&gpSearchArray->field_2418 + landHex); this->occupiedHex = destHex; destHex = this->GetAdjacentCellIndex(this->occupiedHex, dir); if(!gpCombatManager->combatGrid[destHex].isBlocked) { traveledHexes += hexIdxb - landHex; hexIdxb = landHex; this->ArcJump(initialHex, destHex); break; } } } else { this->Walk(dir, 0, gpSearchArray->field_8 - 1 != hexIdxb); } } else { this->Walk(dir, 0, gpSearchArray->field_8 - 1 != hexIdxb); } traveledHexes++; if(traveledHexes >= this->creature.speed) hexIdxb = -1; initialHex = this->occupiedHex; } this->CancelSpellType(0); this->animationType = ANIMATION_TYPE_STANDING; this->animationFrame = 0; gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); gpCombatManager->TestRaiseDoor(); return 0; } else { return 3; } } int army::AttackTo(int targetHex) { int result; if (this->creature.creature_flags & FLYER || (this->ValidPath(targetHex, 0) == 0 && CreatureHasAttribute(this->creatureIdx, CHARGER))) { if (this->occupiedHex != targetHex) this->FlyTo(targetHex); this->DoAttack(0); result = 0; } else if (this->creature.creature_flags & TWO_HEX_ATTACKER && this->occupiedHex == this->targetHex) { this->DoAttack(0); result = 0; } else if (this->FindPath(this->occupiedHex, targetHex, this->creature.speed, 1, 0)) { if (gpSearchArray->field_8 == 1) { this->targetNeighborIdx = LOBYTE(gpSearchArray->field_2418); gpCombatManager->TestRaiseDoor(); this->DoAttack(0); } else { int traveledHexes = 0; int initialHex = this->occupiedHex; for (int i = gpSearchArray->field_8 - 1; i; --i) { int dir = *((BYTE *)&gpSearchArray->field_2418 + i); int destHex = this->GetAdjacentCellIndex(this->occupiedHex, dir); if(this->creatureIdx == CREATURE_CYBER_PLASMA_BERSERKER && gIronfistExtra.combat.stack.abilityCounter[this][JUMPER]) { if(gMoveAttack && i < 5) { // less than 4 hexes from enemy // find last hex for(int h = i; h >= 1; --h) { dir = *((BYTE *)&gpSearchArray->field_2418 + h); destHex = this->GetAdjacentCellIndex(this->occupiedHex, dir); this->occupiedHex = destHex; } this->ArcJump(initialHex, destHex); gIronfistExtra.combat.stack.abilityNowAnimating[this][JUMPER] = true; break; } else { this->Walk(dir, 0, gpSearchArray->field_8 - 1 != i); } } else { this->Walk(dir, 0, gpSearchArray->field_8 - 1 != i); } ++traveledHexes; int a3 = i == 1 || this->creature.speed <= traveledHexes; if (this->creature.speed <= traveledHexes && i != 1) return 3; initialHex = this->occupiedHex; } this->CancelSpellType(0); this->targetNeighborIdx = LOBYTE(gpSearchArray->field_2418); gpCombatManager->TestRaiseDoor(); this->DoAttack(0); } result = 0; } else { result = 3; } return result; } // ironfist function bool army::IsCloseMove(int toHexIdx) { for (int j = 0; j < 6; j++) { if (this->creature.creature_flags & TWO_HEXER) { if (gpCombatManager->hexNeighbors[this->occupiedHex + 1][j] == toHexIdx) return true; } if (gpCombatManager->hexNeighbors[this->occupiedHex][j] == toHexIdx) return true; } return false; } extern int giNextActionGridIndex; int army::FlyTo(int hexIdx) { gCloseMove = IsCloseMove(hexIdx); if (ValidHex(hexIdx)) { int colDiff = hexIdx % 13 - this->occupiedHex % 13; this->field_8E = 0; if (colDiff <= 0 || this->facingRight) { if (colDiff < 0) { if (this->facingRight == 1) { this->field_8E = 1; this->facingRight = 1 - this->facingRight; if (this->creature.creature_flags & TWO_HEXER) { ++this->occupiedHex; ++hexIdx; } } } } else { this->field_8E = 1; this->facingRight = 1 - this->facingRight; if (this->creature.creature_flags & TWO_HEXER) { --this->occupiedHex; --hexIdx; } } if (this->field_8E) gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); int v19 = gpCombatManager->combatGrid[this->occupiedHex].centerX; int v14 = gpCombatManager->combatGrid[this->occupiedHex].occupyingCreatureBottomY; float currentDrawX = (double)v19; float currentDrawY = (double)v14; int deltaX = gpCombatManager->combatGrid[hexIdx].centerX - v19; int deltaY = gpCombatManager->combatGrid[hexIdx].occupyingCreatureBottomY - v14; int dist = (signed __int64)sqrt((double)(deltaY * deltaY + deltaX * deltaX)); int numFrames = 0; if (this->frameInfo.flightSpeed > 0) numFrames = (dist + (this->frameInfo.flightSpeed >> 1)) / this->frameInfo.flightSpeed; if (numFrames <= 0) numFrames = 1; float stepX = (double)deltaX / (double)numFrames; float stepY = (double)deltaY / (double)numFrames; gpCombatManager->combatGrid[this->occupiedHex].stackIdx = -1; gpCombatManager->combatGrid[this->occupiedHex].unitOwner = -1; gpCombatManager->combatGrid[this->occupiedHex].occupiersOtherHexIsToLeft = -1; if (this->creature.creature_flags & TWO_HEXER) { int v3 = this->occupiedHex + (this->facingRight < 1u ? -1 : 1); gpCombatManager->combatGrid[v3].stackIdx = -1; gpCombatManager->combatGrid[v3].unitOwner = -1; gpCombatManager->combatGrid[v3].occupiersOtherHexIsToLeft = -1; } std::vector<int> chargeAffectedHexes; if (!gbNoShowCombat) { bool closeMove = IsCloseMove(hexIdx); bool teleporter = CreatureHasAttribute(this->creatureIdx, TELEPORTER); gpCombatManager->DrawFrame(0, 0, 0, 0, 75, 1, 1); gpWindowManager->screenBuffer->CopyTo(gpCombatManager->probablyBitmapForCombatScreen, 0, 0, 0, 0, 0x280u, 442); gpCombatManager->zeroedAfterAnimatingDeathAndHolySpells = 0; this->animationType = ANIMATION_TYPE_WALKING; for (int i = 0; numFrames > i; ++i) { if (teleporter) { BuildTeleporterTempWalkSeq(&this->frameInfo, i + 1 == numFrames, i > 0, closeMove); } else { BuildTempWalkSeq(&this->frameInfo, i + 1 == numFrames, i > 0); if(CreatureHasAttribute(this->creatureIdx, CHARGER)) { gCharging = true; CHARGING_DIRECTION chargeDir = CHARGING_FORWARD; double angle = (180.0 / 3.141592653589793238463) * atan2(deltaY, abs(deltaX)); if(angle > 45) chargeDir = CHARGING_DOWN; else if(angle < -45) chargeDir = CHARGING_UP; SetChargingMoveAnimation(chargeDir); } } int startMoveLen = 0; int moveLen = 0; int moveAndSubEndMoveLen; if (numFrames) { if (i <= 0 && (!closeMove && teleporter)) startMoveLen = this->frameInfo.animationLengths[ANIMATION_TYPE_START_MOVE]; moveAndSubEndMoveLen = this->frameInfo.animationLengths[ANIMATION_TYPE_MOVE]; moveLen = this->frameInfo.animationLengths[ANIMATION_TYPE_MOVE]; if (i + 1 < numFrames) moveAndSubEndMoveLen += this->frameInfo.animationLengths[ANIMATION_TYPE_SUB_END_MOVE]; } else { moveAndSubEndMoveLen = this->frameInfo.animationLengths[ANIMATION_TYPE_WALKING]; startMoveLen = 0; } for (this->animationFrame = 0; this->frameInfo.animationLengths[ANIMATION_TYPE_WALKING] > this->animationFrame; ++this->animationFrame) { if (this->animationFrame >= startMoveLen && startMoveLen + moveAndSubEndMoveLen > this->animationFrame) { if (teleporter && !closeMove) { currentDrawX = gpCombatManager->combatGrid[hexIdx].centerX; currentDrawY = gpCombatManager->combatGrid[hexIdx].occupyingCreatureBottomY; } else { currentDrawX += stepX / (double)moveAndSubEndMoveLen; currentDrawY += stepY / (double)moveAndSubEndMoveLen; } } if (this->animationFrame % this->frameInfo.animationLengths[ANIMATION_TYPE_WALKING] == 1) { if (this->creatureIdx != CREATURE_VAMPIRE && this->creatureIdx != CREATURE_VAMPIRE_LORD || i) { if (this->creatureIdx != CREATURE_VAMPIRE && this->creatureIdx != CREATURE_VAMPIRE_LORD || numFrames - 1 != i) gpSoundManager->MemorySample(this->combatSounds[0]); else gpSoundManager->MemorySample(this->combatSounds[6]); } else { gpSoundManager->MemorySample(this->combatSounds[5]); DelayMilli(100); } } int offsetX = 0; int offsetY = 0; int v10 = 639; int v6 = 442; if (i || this->animationFrame) { gpCombatManager->probablyBitmapForCombatScreen->CopyTo( gpWindowManager->screenBuffer, giMinExtentX, giMinExtentY, giMinExtentX, giMinExtentY, giMaxExtentX - giMinExtentX + 1, giMaxExtentY - giMinExtentY + 1); offsetX = giMinExtentX; offsetY = giMinExtentY; v10 = giMaxExtentX; v6 = giMaxExtentY; } giMinExtentY = 640; giMinExtentX = 640; giMaxExtentY = 0; giMaxExtentX = 0; gbComputeExtent = 1; gbSaveBiggestExtent = 1; this->DrawToBuffer((int)currentDrawX, (int)currentDrawY, 0); gbComputeExtent = 0; gbSaveBiggestExtent = 0; if (giMinExtentX < 0) giMinExtentX = 0; if (giMinExtentY < 0) giMinExtentY = 0; if (giMaxExtentX > 639) giMaxExtentX = 639; if (giMaxExtentY > 442) giMaxExtentY = 442; if (offsetX > giMinExtentX) offsetX = giMinExtentX; if (offsetY > giMinExtentY) offsetY = giMinExtentY; if (v10 < giMaxExtentX) v10 = giMaxExtentX; if (giMaxExtentY > v6) v6 = giMaxExtentY; DelayTil(&glTimers); if (this->animationFrame >= startMoveLen && (this->animationFrame + 1 < moveLen || this->creatureIdx != CREATURE_VAMPIRE && this->creatureIdx != CREATURE_VAMPIRE_LORD)) glTimers = (signed __int64)((double)KBTickCount() + (double)this->frameInfo.stepTime * gfCombatSpeedMod[giCombatSpeed] / (double)moveAndSubEndMoveLen); else glTimers = (signed __int64)((double)KBTickCount() + (double)this->frameInfo.stepTime * gfCombatSpeedMod[giCombatSpeed] * 1.3 / (double)moveAndSubEndMoveLen); gpWindowManager->UpdateScreenRegion(offsetX, offsetY, v10 - offsetX + 1, v6 - offsetY + 1); if (this->frameInfo.animationLengths[ANIMATION_TYPE_WALKING] - 1 == this->animationFrame) { currentDrawX = (double)(i + 1) * stepX + (double)v19; currentDrawY = (double)(i + 1) * stepY + (double)v14; } const int CHARGE_SPRITE_OFFSET = 10; int h = gpCombatManager->GetGridIndex(currentDrawX, currentDrawY - CHARGE_SPRITE_OFFSET); if(IsEnemyCreatureHex(h)) chargeAffectedHexes.push_back(h); } } } this->CancelSpellType(0); gpCombatManager->combatGrid[hexIdx].unitOwner = LOBYTE(gpCombatManager->otherCurrentSideThing); gpCombatManager->combatGrid[hexIdx].stackIdx = LOBYTE(gpCombatManager->someSortOfStackIdx); gpCombatManager->combatGrid[hexIdx].occupiersOtherHexIsToLeft = -1; if (this->creature.creature_flags & TWO_HEXER) { int v5 = hexIdx + (this->facingRight < 1u ? -1 : 1); gpCombatManager->combatGrid[v5].unitOwner = LOBYTE(gpCombatManager->otherCurrentSideThing); gpCombatManager->combatGrid[v5].stackIdx = LOBYTE(gpCombatManager->someSortOfStackIdx); gpCombatManager->combatGrid[v5].occupiersOtherHexIsToLeft = v5 >= hexIdx; gpCombatManager->combatGrid[hexIdx].occupiersOtherHexIsToLeft = v5 <= hexIdx; } this->occupiedHex = hexIdx; this->animationType = ANIMATION_TYPE_STANDING; this->animationFrame = 0; if (this->field_8E) { this->facingRight = 1 - this->facingRight; OccupyHexes(this); this->field_8E = 0; } if(CreatureHasAttribute(this->creatureIdx, CHARGER)) { // remove duplicates std::set<int> s(chargeAffectedHexes.begin(), chargeAffectedHexes.end() ); chargeAffectedHexes.assign(s.begin(),s.end()); // don't damage target creature by "charge path damage" auto f = std::find(chargeAffectedHexes.begin(), chargeAffectedHexes.end(), giNextActionGridIndex); if(f != chargeAffectedHexes.end()) chargeAffectedHexes.erase(f); ChargingDamage(chargeAffectedHexes); } gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); if(CreatureHasAttribute(this->creatureIdx, CHARGER)) RevertChargingMoveAnimation(); gpCombatManager->TestRaiseDoor(); return 1; } return 0; } void SpecialAttackBattleMessage(army *attacker, army *target, int creaturesKilled, int damageDone) { char *attackingCreature; if (creaturesKilled <= 0) { if (attacker->quantity <= 1) attackingCreature = GetCreatureName(attacker->creatureIdx); else attackingCreature = GetCreaturePluralName(attacker->creatureIdx); sprintf(gText, "%s %s %d damage.", attackingCreature, (attacker->quantity > 1) ? "do" : "does", damageDone); gText[0] = toupper(gText[0]); } else { if (damageDone == -1) { sprintf(gText, "The mirror image is destroyed!"); } else { char *targetCreature; if (creaturesKilled <= 1) targetCreature = GetCreatureName(target->creatureIdx); else targetCreature = GetCreaturePluralName(target->creatureIdx); if (attacker->quantity <= 1) attackingCreature = GetCreatureName(attacker->creatureIdx); else attackingCreature = GetCreaturePluralName(attacker->creatureIdx); sprintf( gText, "%s %s %d damage.\n%d %s %s.", attackingCreature, (attacker->quantity > 1) ? "do" : "does", damageDone, creaturesKilled, targetCreature, (creaturesKilled > 1) ? "perish" : "perishes"); gText[0] = toupper(gText[0]); } } gpCombatManager->CombatMessage(gText, 1, 1, 0); } void ProcessSecondAttack(army *attacker, army *target) { if (!bSecondAttack && target->quantity > 0) { bSecondAttack = 1; attacker->SpecialAttack(); bSecondAttack = 0; } } void SpecialAttackGraphics(army *attacker, army *target) { gpCombatManager->ResetLimitCreature(); gpCombatManager->limitCreature[attacker->owningSide][attacker->stackIdx]++; gpCombatManager->DrawFrame(0, 1, 0, 1, 75, 1, 1); int targMidX = target->MidX(); int targMidY = target->MidY(); if (attacker->creatureIdx == CREATURE_LICH || attacker->creatureIdx == CREATURE_POWER_LICH) { targMidX = gpCombatManager->combatGrid[target->occupiedHex].centerX; targMidY = gpCombatManager->combatGrid[target->occupiedHex].occupyingCreatureBottomY - 17; } int projStartX; if (attacker->facingRight == 1) projStartX = attacker->frameInfo.projectileStartOffset[1][0] + gpCombatManager->combatGrid[attacker->occupiedHex].centerX; else projStartX = gpCombatManager->combatGrid[attacker->occupiedHex].centerX - attacker->frameInfo.projectileStartOffset[1][0]; int projStartY = attacker->frameInfo.projectileStartOffset[1][1] + gpCombatManager->combatGrid[attacker->occupiedHex].occupyingCreatureBottomY; int totXDiff = targMidX - projStartX; char firingLeft = 0; if (targMidX - projStartX < 0) { firingLeft = 1; totXDiff = -totXDiff; } int yDiff = targMidY - projStartY; float angleDeg; int spriteIdx; if (totXDiff) { float slope = (double)-yDiff / (double)totXDiff; angleDeg = atan(slope) * 180.0 / 3.14159; int i; for (i = 1; attacker->frameInfo.numMissileDirs > i && (*(float *)((char *)&attacker->frameInfo.projectileStartOffset[i + 2] + 1) + attacker->frameInfo.projDirAngle[i]) / 2.0 >= angleDeg; ++i) ; if (attacker->frameInfo.numMissileDirs <= i) spriteIdx = attacker->frameInfo.numMissileDirs - 1; else spriteIdx = i - 1; } else { if (yDiff <= 0) spriteIdx = 0; else spriteIdx = attacker->frameInfo.numMissileDirs - 1; angleDeg = (double)(yDiff <= 0 ? 90 : -90); } int attackDirectionAnimationIdx; if (angleDeg <= 25.0) { if (angleDeg <= -25.0) { attacker->animationType = ANIMATION_TYPE_RANGED_ATTACK_DOWNWARDS; attackDirectionAnimationIdx = 2; } else { attacker->animationType = ANIMATION_TYPE_RANGED_ATTACK_FORWARDS; attackDirectionAnimationIdx = 1; } } else { attacker->animationType = ANIMATION_TYPE_RANGED_ATTACK_UPWARDS; attackDirectionAnimationIdx = 0; } for (attacker->animationFrame = 0; attacker->frameInfo.animationLengths[attacker->animationType] > attacker->animationFrame; ++attacker->animationFrame) { if (attacker->frameInfo.animationLengths[attacker->animationType] - 1 == attacker->animationFrame) gpCombatManager->DrawFrame(0, 1, 0, 0, 75, 1, 1); else gpCombatManager->DrawFrame(1, 1, 0, 0, 75, 1, 1); glTimers = (signed __int64)((double)KBTickCount() + (double)attacker->frameInfo.shootingTime * gfCombatSpeedMod[giCombatSpeed] / (double)attacker->frameInfo.animationLengths[attacker->animationType]); } attacker->animationFrame = attacker->frameInfo.animationLengths[attacker->animationType] - 1; int projIconWidth = 100; int projIconHeight = 100; int v35 = 31; int v22 = 25; int v20 = 0; int offsetX = 639; int v15 = 0; int offsetY = 479; int startX; if (attacker->facingRight == 1) startX = attacker->frameInfo.projectileStartOffset[attackDirectionAnimationIdx][0] + gpCombatManager->combatGrid[attacker->occupiedHex].centerX; else startX = gpCombatManager->combatGrid[attacker->occupiedHex].centerX - attacker->frameInfo.projectileStartOffset[attackDirectionAnimationIdx][0]; int startY = attacker->frameInfo.projectileStartOffset[attackDirectionAnimationIdx][1] + gpCombatManager->combatGrid[attacker->occupiedHex].occupyingCreatureBottomY; int endX = target->MidX(); int endY = target->MidY(); int diffX = endX - startX; int diffY = endY - startY; int distance = (signed __int64)sqrt((double)(diffY * diffY + diffX * diffX)); int v52 = (distance + (v35 / 2)) / v35; if (attacker->creatureIdx == CREATURE_MAGE || attacker->creatureIdx == CREATURE_ARCHMAGE) { gpWindowManager->UpdateScreenRegion(giMinExtentX, giMinExtentY, giMaxExtentX - giMinExtentX + 1, giMaxExtentY - giMinExtentY + 1); DelayMilli((signed __int64)(gfCombatSpeedMod[giCombatSpeed] * 115.0)); gpCombatManager->DoBolt(1, startX, startY, endX, endY, 0, 0, 5, 4, 302, 0, 0, distance / 15 + 15, 1, 0, 10, 0); } else if (attacker->creatureIdx == CREATURE_CYBER_BEHEMOTH) { gpCombatManager->ArcShot(attacker->missileIcon, startX, startY, endX, endY); } else { int v37; int v43; if (v52 <= 1) { v43 = diffX; v37 = diffY; } else { v43 = diffX / (v52 - 1); v37 = diffY / (v52 - 1); } int v44 = startX; int v38 = startY; //from = (bitmap *)operator new(26); bitmap *from = nullptr; from = new bitmap(33, 2 * projIconWidth, 2 * projIconHeight); from->GrabBitmapCareful(gpWindowManager->screenBuffer, v44 - projIconWidth, v38 - projIconHeight); int v59 = v44; int v53 = v38; int x = 0; int y = 0; for (int i = 0; i < v52; ++i) { if (v59 - projIconWidth < offsetX) offsetX = v59 - projIconWidth; if (offsetX < 0) offsetX = 0; if (projIconWidth + v59 > v20) v20 = projIconWidth + v59; if (v20 > 639) v20 = 639; if (v53 - projIconHeight < offsetY) offsetY = v53 - projIconHeight; if (offsetY < 0) offsetY = 0; if (projIconHeight + v53 > v15) v15 = projIconHeight + v53; if (v15 > 442) v15 = 442; if (i) { from->DrawToBufferCareful(x, y); } else { if (giMinExtentX > offsetX) giMinExtentX = offsetX; if (v20 > giMaxExtentX) giMaxExtentX = v20; if (offsetY < giMinExtentY) giMinExtentY = offsetY; if (v15 > giMaxExtentY) giMaxExtentY = v15; } x = v44 - projIconWidth; if (v44 - projIconWidth < 0) x = 0; if (x + (signed int)from->width > 640) x = 640 - from->width; y = v38 - projIconHeight; if (v38 - projIconHeight < 0) y = 0; if (y + (signed int)from->height > 640) y = 640 - from->height; from->GrabBitmapCareful(gpWindowManager->screenBuffer, x, y); attacker->missileIcon->DrawToBuffer(v44, v38, spriteIdx, firingLeft); if (i) { DelayTil(&glTimers); gpWindowManager->UpdateScreenRegion(offsetX, offsetY, v20 - offsetX + 1, v15 - offsetY + 1); } else { gpWindowManager->UpdateScreenRegion(giMinExtentX, giMinExtentY, giMaxExtentX - giMinExtentX + 1, giMaxExtentY - giMinExtentY + 1); } glTimers = (signed __int64)((double)KBTickCount() + (double)v22 * gfCombatSpeedMod[giCombatSpeed]); v59 = v44; v53 = v38; v44 += v43; v38 += v37; offsetX = v44 - projIconWidth; v20 = projIconWidth + v44; offsetY = v38 - projIconHeight; v15 = projIconHeight + v38; } from->DrawToBuffer(x, y); gpWindowManager->UpdateScreenRegion(v59 - projIconWidth, v53 - projIconHeight, 2 * projIconWidth, 2 * projIconHeight); if (from) from->~bitmap(); } } void army::SpecialAttack() { int damageDone = 0; int creaturesKilled = 0; this->field_125 = 0; army *target = &gpCombatManager->creatures[this->targetOwner][this->targetStackIdx]; char targetColumnHex = target->occupiedHex % 13; char targetRowHex = target->occupiedHex / 13; // unused char sourceColumnHex = this->occupiedHex % 13; char sourceRowHex = this->occupiedHex / 13; int tmpFacingRight = this->facingRight; this->facingRight = targetColumnHex > sourceColumnHex || !(sourceRowHex & 1) && targetColumnHex == sourceColumnHex; if (this->facingRight != tmpFacingRight) OccupyHexes(this); gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); this->CheckLuck(); gpSoundManager->MemorySample(this->combatSounds[3]); SpecialAttackGraphics(this, target); // Decrease the number of shots left if (!gpCombatManager->heroes[this->owningSide] || !gpCombatManager->heroes[this->owningSide]->HasArtifact(ARTIFACT_AMMO_CART)) --this->creature.shots; int animIdx = -1; int a4 = -1; int a5 = -1; if (this->creatureIdx == CREATURE_LICH || this->creatureIdx == CREATURE_POWER_LICH) { int possibleTarget; gpCombatManager->ClearEffects(); for (int i = 0; i < 7; ++i) { if (i >= 6) possibleTarget = target->occupiedHex; else possibleTarget = target->GetAdjacentCellIndex(target->occupiedHex, i); if (possibleTarget != -1) { hexcell *targetHex = &gpCombatManager->combatGrid[possibleTarget]; if (targetHex->unitOwner != -1) { army *targ = &gpCombatManager->creatures[targetHex->unitOwner][targetHex->stackIdx]; if (!gArmyEffected[targ->owningSide][targ->stackIdx]) { if (target != targ || i == 6) { gArmyEffected[targ->owningSide][targ->stackIdx] = 1; this->DamageEnemy(targ, &damageDone, &creaturesKilled, 1, 0); } } } } } this->field_FA = 0; animIdx = 20; a4 = gpCombatManager->combatGrid[possibleTarget].centerX; a5 = gpCombatManager->combatGrid[possibleTarget].occupyingCreatureBottomY - 17; gpSoundManager->MemorySample(combatSounds[5]); } else if (CreatureHasAttribute(this->creatureIdx, PLASMA_BLAST)) { int cyberBehemothAttackMask[] = { -27,-26,-25, -14,-13,-12,-11, -2,-1,1,2, 12,13,14,15, 25,26,27 }; gpCombatManager->ClearEffects(); int possibleTarget; for (int j = 0; j < 18; j++) { possibleTarget = target->occupiedHex + cyberBehemothAttackMask[j]; if (possibleTarget >= 0 && possibleTarget < 116) { hexcell *targetHex = &gpCombatManager->combatGrid[possibleTarget]; if (targetHex->unitOwner != -1) { army *targ = &gpCombatManager->creatures[targetHex->unitOwner][targetHex->stackIdx]; if (!gArmyEffected[targ->owningSide][targ->stackIdx]) { if (target != targ) { gArmyEffected[targ->owningSide][targ->stackIdx] = 1; this->DamageEnemy(targ, &damageDone, &creaturesKilled, 1, 0); } } } } } possibleTarget = target->occupiedHex; if (possibleTarget != -1) { hexcell *targetHex = &gpCombatManager->combatGrid[possibleTarget]; if (targetHex->unitOwner != -1) { army *targ = &gpCombatManager->creatures[targetHex->unitOwner][targetHex->stackIdx]; if (!gArmyEffected[targ->owningSide][targ->stackIdx]) { gArmyEffected[targ->owningSide][targ->stackIdx] = 1; this->DamageEnemy(targ, &damageDone, &creaturesKilled, 1, 0); } } } this->field_FA = 0; animIdx = 32; a4 = gpCombatManager->combatGrid[target->occupiedHex].centerX; a5 = gpCombatManager->combatGrid[target->occupiedHex].occupyingCreatureBottomY - 17; //gpSoundManager->MemorySample(combatSounds[5]); } else { this->DamageEnemy(target, &damageDone, &creaturesKilled, 1, 0); } SpecialAttackBattleMessage(this, target, creaturesKilled, damageDone); if (this->creatureIdx == CREATURE_ARCHMAGE) { if (SRandom(1, 100) < 20) { if (target) { if (target->SpellCastWorks(SPELL_ARCHMAGI_DISPEL)) target->spellEnemyCreatureAbilityIsCasting = 102; } } } this->PowEffect(animIdx, 0, a4, a5); if (this->facingRight != tmpFacingRight) { OccupyHexes(this); this->facingRight = tmpFacingRight; } if (this->creatureIdx == CREATURE_ELF || this->creatureIdx == CREATURE_GRAND_ELF || this->creatureIdx == CREATURE_RANGER) ProcessSecondAttack(this, target); // Block mind spells if (this->effectStrengths[EFFECT_BERSERKER] || this->effectStrengths[EFFECT_HYPNOTIZE]) { this->CancelSpellType(1); gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); } } void army::LoadResources() { if (!gbNoShowCombat) { int creatureID = this->creatureIdx; int formFileID = gpResourceManager->MakeId(cArmyFrameFileNames[creatureID], 1); gpResourceManager->PointToFile(formFileID); gpResourceManager->ReadBlock((signed char*)&this->frameInfo, 821u); ModifyFrameInfo(&this->frameInfo, (CREATURES)creatureID); this->field_B2 = this->frameInfo.stepTime; std::string shortName = this->creature.short_name; this->combatSounds[0] = gpResourceManager->GetSample(shortName + "move.82M"); this->combatSounds[1] = gpResourceManager->GetSample(shortName + "attk.82M"); this->combatSounds[2] = gpResourceManager->GetSample(shortName + "wnce.82M"); this->combatSounds[4] = gpResourceManager->GetSample(shortName + "kill.82M"); if (this->creature.creature_flags & SHOOTER) { this->combatSounds[3] = gpResourceManager->GetSample(shortName + "shot.82M"); } switch (creatureID) { case CREATURE_VAMPIRE: case CREATURE_VAMPIRE_LORD: { this->combatSounds[5] = gpResourceManager->GetSample(shortName + "ext1.82M"); this->combatSounds[6] = gpResourceManager->GetSample(shortName + "ext2.82M"); break; } case CREATURE_LICH: case CREATURE_POWER_LICH: { this->combatSounds[5] = gpResourceManager->GetSample(shortName + "expl.82M"); } } this->creatureIcon = gpResourceManager->GetIcon(cMonFilename[creatureID]); // Loading projectiles if (this->creature.creature_flags & SHOOTER) { if (!strlen(cArmyProjectileFileNames[creatureID])) this->missileIcon = gpResourceManager->GetIcon("elf__msl.icn"); else this->missileIcon = gpResourceManager->GetIcon(cArmyProjectileFileNames[creatureID]); } else { this->combatSounds[3] = 0; this->missileIcon = 0; } for (int i = 0; i < 5; ++i) { if (this->combatSounds[i]) { this->combatSounds[i]->field_28 = 64; this->combatSounds[i]->codeThing = 3; this->combatSounds[i]->loopCount = 1; } } } } void army::PowEffect(int animIdx, int a3, int a4, int a5) { int specialCaseOverlapWeirdness = 1; if (this->creatureIdx == CREATURE_PALADIN || this->creatureIdx == CREATURE_CRUSADER) specialCaseOverlapWeirdness = 0; if (this->creatureIdx == CREATURE_DWARF || this->creatureIdx == CREATURE_BATTLE_DWARF) specialCaseOverlapWeirdness = 2; bool doCreatureEffect = false; if (a4 == -1) { if (animIdx != -1) { for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { if (gpCombatManager->creatures[i][j].probablyIsNeedDrawSpellEffect) doCreatureEffect = true; } } } } else { doCreatureEffect = true; } if (!gbNoShowCombat && animIdx != -1 && doCreatureEffect && animIdx != gCurLoadedSpellEffect) { gpResourceManager->Dispose((resource *)gCurLoadedSpellIcon); gCurLoadedSpellIcon = gpResourceManager->GetIcon(gCombatFxNames[animIdx]); gCurLoadedSpellEffect = animIdx; } int oneWayAnimLen = 0; int fromAnimLen = 0; int toAnimLen = 0; int maxOneWayAnimLen = 0; int maxFromAnimLen = 0; int maxToAnimLen = 0; int creatureEffectNumFrames = 0; if (doCreatureEffect) creatureEffectNumFrames = giNumPowFrames[gCurLoadedSpellEffect]; for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *othstack = &gpCombatManager->creatures[i][j]; if (othstack->mightBeIsAttacking) { toAnimLen = othstack->frameInfo.animationLengths[this->mightBeAttackAnimIdx]; fromAnimLen = othstack->frameInfo.animationLengths[this->mightBeAttackAnimIdx + 1] + 1; } else if (othstack->dead) { oneWayAnimLen = othstack->frameInfo.animationLengths[ANIMATION_TYPE_DYING]; } else if (othstack->damageTakenDuringSomeTimePeriod) { oneWayAnimLen = othstack->frameInfo.animationLengths[ANIMATION_TYPE_WINCE_RETURN] + othstack->frameInfo.animationLengths[ANIMATION_TYPE_WINCE] + 1; } if (maxToAnimLen <= toAnimLen) maxToAnimLen = toAnimLen; if (maxFromAnimLen <= fromAnimLen) maxFromAnimLen = fromAnimLen; if (maxOneWayAnimLen <= oneWayAnimLen) maxOneWayAnimLen = oneWayAnimLen; } } int maxAnyCreatureAnimLen = maxOneWayAnimLen + maxToAnimLen - specialCaseOverlapWeirdness; if (maxAnyCreatureAnimLen <= maxFromAnimLen + maxToAnimLen) maxAnyCreatureAnimLen = maxFromAnimLen + maxToAnimLen; int maxAnyCreatureAnimLena = maxOneWayAnimLen; if (maxAnyCreatureAnimLena <= maxAnyCreatureAnimLen) maxAnyCreatureAnimLena = maxAnyCreatureAnimLen; int maxAnimLen = creatureEffectNumFrames; if (maxAnimLen <= maxAnyCreatureAnimLena) maxAnimLen = maxAnyCreatureAnimLena; if (a3) gpCombatManager->ResetLimitCreature(); for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *creature = &gpCombatManager->creatures[i][j]; int animType = creature->animationType; if (animType == ANIMATION_TYPE_RANGED_ATTACK_UPWARDS || animType == ANIMATION_TYPE_RANGED_ATTACK_FORWARDS || animType == ANIMATION_TYPE_RANGED_ATTACK_DOWNWARDS) creature->animatingRangedAttack = true; else creature->animatingRangedAttack = false; if ((creature->damageTakenDuringSomeTimePeriod || creature->mightBeIsAttacking || creature->animatingRangedAttack) && !gpCombatManager->limitCreature[i][j]) gpCombatManager->limitCreature[i][j]++; } } gpCombatManager->DrawFrame(0, 1, 0, 1, 75, 1, 1); if (a4 != -1) { for (int i = 0; gCurLoadedSpellIcon->numSprites > i; i++) { IconEntry *animICNHeader = &gCurLoadedSpellIcon->headersAndImageData[i]; giMinExtentX = a4 + animICNHeader->offsetX; if (giMinExtentX >= giMinExtentX) giMinExtentX = giMinExtentX; giMinExtentY = a5 + animICNHeader->offsetY; if (giMinExtentY >= giMinExtentY) giMinExtentY = giMinExtentY; giMaxExtentX = a4 + animICNHeader->offsetX + animICNHeader->width - 1; if (giMaxExtentX <= giMaxExtentX) giMaxExtentX = giMaxExtentX; giMaxExtentY = a5 + animICNHeader->height + animICNHeader->offsetY - 1; if (giMaxExtentY <= giMaxExtentY) giMaxExtentY = giMaxExtentY; } if (giMinExtentX <= 0) giMinExtentX = 0; if (giMinExtentY <= 0) giMinExtentY = 0; if (giMaxExtentX >= 639) giMaxExtentX = 639; if (giMaxExtentY >= 442) giMaxExtentY = 442; } for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *creature = &gpCombatManager->creatures[i][j]; creature->field_3 = -1; creature->field_4 = -1; creature->effectStrengths[15] = 0; if (creature->damageTakenDuringSomeTimePeriod || creature->mightBeIsAttacking) { if (creature->mightBeIsAttacking) { creature->field_3 = this->mightBeAttackAnimIdx; creature->field_4 = this->mightBeAttackAnimIdx + 1; } else if (creature->dead) { creature->field_3 = ANIMATION_TYPE_DYING; } else { creature->field_3 = ANIMATION_TYPE_WINCE; creature->field_4 = ANIMATION_TYPE_WINCE_RETURN; } if (creature->field_3 == ANIMATION_TYPE_DYING) creature->field_5 = creature->frameInfo.animationLengths[ANIMATION_TYPE_DYING]; else creature->field_5 = creature->frameInfo.animationLengths[creature->field_3] + creature->frameInfo.animationLengths[creature->field_3 + 1]; if (creature->field_3 == creature->animationType) --creature->field_5; if (this->field_6 < 2) this->field_6 = 2; } } } for (int k = 0; maxAnimLen > k; k++) { for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *creature = &gpCombatManager->creatures[i][j]; if (creature->animatingRangedAttack) { if (creature->animationType != ANIMATION_TYPE_RANGED_ATTACK_UPWARDS && creature->animationType != ANIMATION_TYPE_RANGED_ATTACK_FORWARDS && creature->animationType != ANIMATION_TYPE_RANGED_ATTACK_DOWNWARDS) { if (creature->animationType != ANIMATION_TYPE_STANDING) { if (creature->frameInfo.animationLengths[creature->animationType] <= creature->animationFrame + 1) { creature->animationType = ANIMATION_TYPE_STANDING; creature->animationFrame = 0; } else { ++creature->animationFrame; } } } else { ++creature->animationType; creature->animationFrame = 0; } } if (creature->field_3 != -1 && !creature->effectStrengths[15] && (creature->mightBeIsAttacking || creature->field_5 >= maxAnimLen - k - 1 || maxToAnimLen && maxToAnimLen - 1 <= k || !maxToAnimLen && creature->animationType != ANIMATION_TYPE_WINCE_RETURN && (creature->animationType != ANIMATION_TYPE_WINCE || creature->frameInfo.animationLengths[creature->animationType] > creature->animationFrame + 1))) { if (creature->field_3 == creature->animationType || creature->field_4 == creature->animationType) { if (creature->frameInfo.animationLengths[creature->animationType] <= creature->animationFrame + 1) { if (creature->field_4 == creature->animationType || creature->field_4 == -1) { if (creature->animationType != ANIMATION_TYPE_STANDING && creature->animationType != ANIMATION_TYPE_DYING) { creature->animationType = ANIMATION_TYPE_STANDING; creature->animationFrame = 0; creature->effectStrengths[15] = 1; } } else { creature->animationType = creature->field_4; creature->animationFrame = 0; } } else { creature->animationFrame++; } } else { if (!gbNoShowCombat && creature->field_3 == ANIMATION_TYPE_WINCE) gpSoundManager->MemorySample(creature->combatSounds[2]); if (!gbNoShowCombat && creature->field_3 == ANIMATION_TYPE_DYING) gpSoundManager->MemorySample(creature->combatSounds[4]); creature->animationType = creature->field_3; creature->animationFrame = 0; } } } } glTimers = (signed __int64)((double)KBTickCount() + (double)120 * gfCombatSpeedMod[giCombatSpeed]); if (doCreatureEffect && giNumPowFrames[gCurLoadedSpellEffect] > k) gCurSpellEffectFrame = k; gpCombatManager->DrawFrame(0, 0, 0, 0, 75, 1, 1); if (a4 != -1 && giNumPowFrames[gCurLoadedSpellEffect] > k) gCurLoadedSpellIcon->CombatClipDrawToBuffer(a4, a5 + this->field_FA, gCurSpellEffectFrame, &this->effectAnimationBounds, 0, 0, 0, 0); gpWindowManager->UpdateScreenRegion(0, 0, INTERNAL_WINDOW_WIDTH, INTERNAL_WINDOW_HEIGHT); DelayTil(&glTimers); } for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *creature = &gpCombatManager->creatures[i][j]; if (creature->damageTakenDuringSomeTimePeriod && creature->spellEnemyCreatureAbilityIsCasting != -1 && creature->spellEnemyCreatureAbilityIsCasting != 101) { gpCombatManager->CastSpell((Spell)creature->spellEnemyCreatureAbilityIsCasting, creature->occupiedHex, 1, -1); creature->spellEnemyCreatureAbilityIsCasting = -1; } } } bool v41 = true; while (v41) { v41 = false; for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *thisf = &gpCombatManager->creatures[i][j]; int animType = thisf->animationType; if (animType != ANIMATION_TYPE_WINCE && animType != ANIMATION_TYPE_MELEE_ATTACK_UPWARDS && animType != ANIMATION_TYPE_MELEE_ATTACK_FORWARDS && animType != ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS && animType != ANIMATION_TYPE_TWO_HEX_ATTACK_UPWARDS && animType != ANIMATION_TYPE_TWO_HEX_ATTACK_FORWARDS && animType != ANIMATION_TYPE_TWO_HEX_ATTACK_DOWNWARDS && animType != ANIMATION_TYPE_RANGED_ATTACK_UPWARDS && animType != ANIMATION_TYPE_RANGED_ATTACK_FORWARDS && animType != ANIMATION_TYPE_RANGED_ATTACK_DOWNWARDS) { if (animType == ANIMATION_TYPE_DYING || animType == ANIMATION_TYPE_WINCE_RETURN || animType == ANIMATION_TYPE_MELEE_ATTACK_UPWARDS_RETURN || animType == ANIMATION_TYPE_MELEE_ATTACK_FORWARDS_RETURN || animType == ANIMATION_TYPE_MELEE_ATTACK_DOWNWARDS_RETURN || animType == ANIMATION_TYPE_TWO_HEX_ATTACK_UPWARDS_RETURN || animType == ANIMATION_TYPE_TWO_HEX_ATTACK_FORWARDS_RETURN || animType == ANIMATION_TYPE_TWO_HEX_ATTACK_DOWNWARDS_RETURN || animType == ANIMATION_TYPE_RANGED_ATTACK_UPWARDS_RETURN || animType == ANIMATION_TYPE_RANGED_ATTACK_FORWARDS_RETURN || animType == ANIMATION_TYPE_RANGED_ATTACK_DOWNWARDS_RETURN) { if (thisf->frameInfo.animationLengths[animType] <= thisf->animationFrame + 1) { if (animType != ANIMATION_TYPE_DYING) { thisf->animationType = ANIMATION_TYPE_STANDING; thisf->animationFrame = 0; v41 = true; } } else { thisf->animationFrame++; v41 = true; } } } else { thisf->animationType++; thisf->animationFrame = 0; v41 = true; } } } if (v41) { glTimers = (signed __int64)((double)KBTickCount() + (double)120 * gfCombatSpeedMod[giCombatSpeed]); gpCombatManager->DrawFrame(1, 1, 0, 0, 75, 1, 1); } } if (a3) gpCombatManager->ResetLimitCreature(); memset(gpCombatManager->shouldVanish, 0, 0x28u); gpCombatManager->anyStacksShouldVanish = 0; for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { if (gpCombatManager->creatures[i][j].dead) gpCombatManager->creatures[i][j].ProcessDeath(0); } } if (gpCombatManager->anyStacksShouldVanish) gpCombatManager->MakeCreaturesVanish(); for (int i = 0; i < 2; i++) { for (int j = 0; gpCombatManager->numCreatures[i] > j; j++) { army *creature = &gpCombatManager->creatures[i][j]; if (creature->damageTakenDuringSomeTimePeriod && creature->spellEnemyCreatureAbilityIsCasting == 101) { gpCombatManager->CastSpell((Spell)creature->spellEnemyCreatureAbilityIsCasting, creature->occupiedHex, 1, -1); creature->spellEnemyCreatureAbilityIsCasting = -1; } creature->probablyIsNeedDrawSpellEffect = 0; creature->damageTakenDuringSomeTimePeriod = 0; creature->hasTakenLosses = 0; creature->field_6 = 1; creature->mightBeIsAttacking = 0; creature->previousQuantity = -1; } } gpCombatManager->DrawFrame(1, 0, 0, 0, 75, 1, 1); } void army::DamageEnemy(army *targ, int *damageDone, int *creaturesKilled, int isRanged, int isRetaliation) { if (!targ) return; int attackDiff = this->creature.attack - targ->creature.defense; if (this->effectStrengths[EFFECT_DRAGON_SLAYER] && (targ->creatureIdx == CREATURE_GREEN_DRAGON || targ->creatureIdx == CREATURE_RED_DRAGON || targ->creatureIdx == CREATURE_BLACK_DRAGON || targ->creatureIdx == CREATURE_BONE_DRAGON)) attackDiff += 5; if (gpCombatManager->hasMoat) { int othHex = -1; if (targ->creature.creature_flags & TWO_HEXER) othHex = targ->occupiedHex + ((unsigned int)(targ->facingRight - 1) < 1 ? 1 : -1); for (int j = 0; j < 9; ++j) { if (moatCell[j] == targ->occupiedHex || moatCell[j] == othHex) attackDiff += 3; } } if (attackDiff > 20) attackDiff = 20; if (attackDiff < -20) attackDiff = -20; float damagePerUnit = 0.0; for (int i = 0; this->quantity > i; ++i) { if (this->effectStrengths[EFFECT_BLESS]) { damagePerUnit += (double)this->creature.max_damage; } else if (this->effectStrengths[EFFECT_CURSE]) { damagePerUnit += (double)this->creature.min_damage; } else { damagePerUnit += (double)SRandom(this->creature.min_damage, this->creature.max_damage); } } damagePerUnit *= gfBattleStat[attackDiff + 20]; if (this->creatureIdx == CREATURE_CRUSADER && HIBYTE(targ->creature.creature_flags) & ATTR_UNDEAD || this->creatureIdx == CREATURE_EARTH_ELEMENTAL && targ->creatureIdx == CREATURE_AIR_ELEMENTAL || this->creatureIdx == CREATURE_AIR_ELEMENTAL && targ->creatureIdx == CREATURE_EARTH_ELEMENTAL || this->creatureIdx == CREATURE_WATER_ELEMENTAL && targ->creatureIdx == CREATURE_FIRE_ELEMENTAL || this->creatureIdx == CREATURE_FIRE_ELEMENTAL && targ->creatureIdx == CREATURE_WATER_ELEMENTAL) damagePerUnit *= 2.0; if (this->luckStatus > 0) damagePerUnit *= 2.0; if (this->luckStatus < 0) damagePerUnit /= 2.0; this->luckStatus = 0; if (isRanged && gpCombatManager->ShotIsThroughWall(this->owningSide, this->occupiedHex, targ->occupiedHex)) damagePerUnit /= 2.0; hero *owningHero = gpCombatManager->heroes[this->owningSide]; if (owningHero && isRanged) damagePerUnit *= gfSSArcheryMod[owningHero->secondarySkillLevel[1]]; if (this->creature.creature_flags & SHOOTER && !isRanged && this->creatureIdx != CREATURE_TITAN && this->creatureIdx != CREATURE_MAGE && this->creatureIdx != CREATURE_ARCHMAGE && this->creatureIdx != CREATURE_CYBER_BEHEMOTH) damagePerUnit /= 2.0; if (isRanged && targ->effectStrengths[EFFECT_SHIELD]) damagePerUnit /= 2.0; if (this->otherBadLuckThing == 2) damagePerUnit /= 2.0; this->otherBadLuckThing = 0; if (targ->effectStrengths[EFFECT_PETRIFY]) damagePerUnit /= 2.0; if (targ->effectStrengths[EFFECT_SHADOW_MARK]) damagePerUnit *= 1.5; if (CreatureHasAttribute(this->creatureIdx, JUMPER) && !isRetaliation && gIronfistExtra.combat.stack.abilityCounter[this][JUMPER] && gIronfistExtra.combat.stack.abilityNowAnimating[this][JUMPER]) { gIronfistExtra.combat.stack.abilityCounter[this][JUMPER] = 0; damagePerUnit *= SRandom(125, 150) * 0.01; } if(CreatureHasAttribute(this->creatureIdx, CHARGER)) { if(gCharging) { if(gChargePathDamage) damagePerUnit *= 0.5; else damagePerUnit *= 1.25; } } int baseDam; if(!gCloseMove && CreatureHasAttribute(this->creatureIdx, TELEPORTER)) { baseDam = (signed __int64)(damagePerUnit * 1.25 + 0.5); } else { baseDam = (signed __int64)(damagePerUnit + 0.5); } gbGenieHalf = 0; if (this->creatureIdx == CREATURE_GENIE) { if (SRandom(1, 5) == 2) { int tmp = targ->creature.hp * ((targ->quantity + 1) / 2); if (baseDam < tmp) { gbGenieHalf = 1; baseDam = tmp; } } } if (baseDam <= 0) baseDam = 1; if (HIBYTE(targ->creature.creature_flags) & ATTR_MIRROR_IMAGE) baseDam = -1; if(!isRanged && !isRetaliation) { if(CreatureHasAttribute(targ->creatureIdx, ASTRAL_DODGE) && gIronfistExtra.combat.stack.abilityCounter[targ][ASTRAL_DODGE]) { gIronfistExtra.combat.stack.abilityNowAnimating[targ][ASTRAL_DODGE] = true; gIronfistExtra.combat.stack.abilityCounter[targ][ASTRAL_DODGE] = 0; baseDam = -2; } } *damageDone = baseDam; if(baseDam < 0) *creaturesKilled = targ->Damage(0, SPELL_NONE); else *creaturesKilled = targ->Damage(baseDam, SPELL_NONE); } void army::MoveTo(int hexIdx) { if (this->creature.creature_flags & FLYER) { this->targetHex = hexIdx; if (ValidFlight(this->targetHex, 0)) FlyTo(this->targetHex); } else { WalkTo(hexIdx); } } bool army::TargetOnStraightLine(int targHex) { int deltaY = gpCombatManager->combatGrid[targHex].occupyingCreatureBottomY - gpCombatManager->combatGrid[this->occupiedHex].occupyingCreatureBottomY; int deltaX = gpCombatManager->combatGrid[targHex].centerX - gpCombatManager->combatGrid[this->occupiedHex].centerX; double angle = abs((180.0 / 3.141592653589793238463) * atan2(deltaY, abs(deltaX))); return angle == 0 || angle == 62.354024636261322; } int army::GetStraightLineDirection(int targHex) { int deltaY = gpCombatManager->combatGrid[targHex].occupyingCreatureBottomY - gpCombatManager->combatGrid[this->occupiedHex].occupyingCreatureBottomY; int deltaX = gpCombatManager->combatGrid[targHex].centerX - gpCombatManager->combatGrid[this->occupiedHex].centerX; double angle = (180.0 / 3.141592653589793238463) * atan2(deltaY, deltaX); if(angle >= -62.4 && angle <= -62.3) return 0; if(angle == 0) return 1; if(angle >= 62.3 && angle <= 62.4) return 2; if(angle >= 117.6 && angle <= 117.7) return 3; if(angle == 180) return 4; if(angle >= -117.7 && angle <= -117.6) return 5; return -1; } void army::MoveAttackNonFlyer(int startHex, int attackMask) { int attackMask2; if(this->effectStrengths[5]) attackMask2 = GetAttackMask(this->occupiedHex, 2, -1); else attackMask2 = GetAttackMask(this->occupiedHex, 1, -1); if(attackMask2 != 0xFF || this->creature.shots <= 0) { if(attackMask == 0xFF) { AttackTo(); } else { for(int i = 0; i < 8; ++i) { if(i < 6 || this->creature.creature_flags & TWO_HEXER) { int knownHex = this->occupiedHex; if(this->creature.creature_flags & TWO_HEXER && this->facingRight == 1 && i >= 0 && i <= 2) ++knownHex; if(this->creature.creature_flags & TWO_HEXER && !this->facingRight && i >= 3 && i <= 5) --knownHex; if(i >= 6) { if(this->facingRight == 1) ++knownHex; else --knownHex; } int adjCell = GetAdjacentCellIndex(knownHex, i); if(ValidHex(adjCell) && gpCombatManager->combatGrid[adjCell].unitOwner == this->targetOwner && gpCombatManager->combatGrid[adjCell].stackIdx == this->targetStackIdx) this->targetNeighborIdx = i; } } DoAttack(0); } } else { SpecialAttack(); } if (!(this->creature.creature_flags & DEAD) && CreatureHasAttribute(this->creatureIdx, STRIKE_AND_RETURN)) { MoveTo(startHex); } } void army::MoveAttack(int targHex, int x) { char targetOwner = gpCombatManager->combatGrid[targHex].unitOwner; char targetStack = gpCombatManager->combatGrid[targHex].stackIdx; gMoveAttack = false; // when "x" is 1 - moveattack, when "x" is 0 - just move. It doesn't apply to AI moves! if(x == 1 || (!x && targetOwner != -1)) gMoveAttack = true; int startHex = this->occupiedHex; while(1) { gpCombatManager->field_F2B7 = 0; this->targetOwner = -1; this->targetStackIdx = -1; if(!ValidHex(targHex)) break; if(targetOwner == -1 || targetOwner == gpCombatManager->otherCurrentSideThing && targetStack == gpCombatManager->someSortOfStackIdx) { if(this->creature.creature_flags & FLYER || (CreatureHasAttribute(this->creatureIdx, CHARGER) && gMoveAttack && TargetOnStraightLine(giNextActionGridIndex) && TargetOnStraightLine(targHex))) { this->targetHex = targHex; if(!ValidFlight(this->targetHex, 0)) return; FlyTo(this->targetHex); } else { WalkTo(targHex); } gpCombatManager->field_F2B7 = 1; return; } if(x) return; this->targetOwner = targetOwner; this->targetStackIdx = targetStack; this->targetHex = targHex; int attackMask = GetAttackMask(this->occupiedHex, 0, -1); if(!(this->creature.creature_flags & FLYER || (CreatureHasAttribute(this->creatureIdx, CHARGER) && TargetOnStraightLine(targHex))) || attackMask != 255) { MoveAttackNonFlyer(startHex, attackMask); gpCombatManager->field_F2B7 = 1; return; } if(this->occupiedHex != this->targetHex && !ValidFlight(this->targetHex, 0)) return; if(CreatureHasAttribute(this->creatureIdx, CHARGER)) { if(TargetOnStraightLine(this->targetHex)) { FlyTo(this->targetHex); } else { MoveAttackNonFlyer(startHex, attackMask); gpCombatManager->field_F2B7 = 1; return; } } else { FlyTo(this->targetHex); } } } void army::DecrementSpellRounds() { for (int effect = 0; effect < NUM_SPELL_EFFECTS; ++effect) { if (this->effectStrengths[effect]) { if (this->effectStrengths[effect] == 1) this->CancelIndividualSpell(effect); else this->effectStrengths[effect]--; } } if (this->lifespan > 0) this->lifespan--; } int army::AddActiveEffect(int effectType, int strength) { ++this->numActiveEffects; this->effectStrengths[effectType] = strength; return 1; } signed int army::SetSpellInfluence(int effectType, signed int strength) { signed int result; __int64 v4; int effect; if (this->effectStrengths[effectType]) { if (this->effectStrengths[effectType] < strength) this->effectStrengths[effectType] = strength; return 0; } else { switch (effectType) { case EFFECT_HASTE: this->CancelIndividualSpell(EFFECT_SLOW); this->creature.speed += 2; this->frameInfo.stepTime = (signed __int64)((double)this->frameInfo.stepTime * 0.65); break; case EFFECT_SLOW: this->CancelIndividualSpell(0); v4 = (signed int)this->creature.speed + 1; this->creature.speed = ((signed int)v4 - v4) >> 1; if (this->creature.creature_flags & 2) this->creature.creature_flags -= 2; this->frameInfo.stepTime = (signed __int64)((double)this->frameInfo.stepTime * 1.5); break; case EFFECT_BLESS: this->CancelIndividualSpell(EFFECT_CURSE); break; case EFFECT_CURSE: this->CancelIndividualSpell(EFFECT_BLESS); break; case EFFECT_BERSERKER: this->CancelIndividualSpell(EFFECT_HYPNOTIZE); break; case EFFECT_HYPNOTIZE: this->CancelIndividualSpell(EFFECT_BERSERKER); break; case EFFECT_BLOOD_LUST: this->creature.attack += 3; break; case EFFECT_ANTI_MAGIC: for (effect = 0; (signed int)effect < 15; ++effect) this->CancelIndividualSpell(effect); break; case EFFECT_STONESKIN: if (this->effectStrengths[EFFECT_STEELSKIN]) { return 0; } else { this->creature.defense += 3; break; } case EFFECT_STEELSKIN: this->CancelIndividualSpell(EFFECT_STONESKIN); this->creature.defense += 5; break; case EFFECT_BLIND: case EFFECT_PARALYZE: case EFFECT_DRAGON_SLAYER: case EFFECT_SHIELD: case EFFECT_PETRIFY: break; case EFFECT_SHADOW_MARK: break; } return this->AddActiveEffect(effectType, strength); } } void army::CancelIndividualSpell(int effect) { if (this->effectStrengths[effect]) { --this->numActiveEffects; this->effectStrengths[effect] = 0; switch (effect) { case EFFECT_HASTE: case EFFECT_SLOW: this->creature.speed = LOBYTE(this->speed); this->frameInfo.stepTime = this->field_B2; this->creature.creature_flags |= gMonsterDatabase[this->creatureIdx].creature_flags & FLYER; break; case EFFECT_BLOOD_LUST: this->creature.attack -= 3; break; case EFFECT_STONESKIN: this->creature.defense -= 3; break; case EFFECT_STEELSKIN: this->creature.defense -= 5; break; case EFFECT_SHADOW_MARK: break; case EFFECT_BLIND: case EFFECT_BLESS: case EFFECT_CURSE: case EFFECT_BERSERKER: case EFFECT_PARALYZE: case EFFECT_HYPNOTIZE: case EFFECT_DRAGON_SLAYER: case EFFECT_SHIELD: case EFFECT_PETRIFY: case EFFECT_ANTI_MAGIC: return; } } } extern std::vector<std::string> ironfistAttributeNames; void army::Init(int creatureIdx, int quantity, int owner, int stackIdx, int startHex, int armyIdx) { Init_orig(creatureIdx, quantity, owner, stackIdx, startHex, armyIdx); for(auto &i : ironfistAttributeNames) { if(CreatureHasAttribute(this->creatureIdx, i)) gIronfistExtra.combat.stack.abilityCounter[this][i] = 1; } } void army::InitClean() { for (int i = 0; i < 7; ++i) this->combatSounds[i] = 0; this->lifespan = -1; this->numActiveEffects = 0; for(int i = 0; i < NUM_SPELL_EFFECTS; i++) { this->effectStrengths[i] = 0; } this->baseFidgetTime = KBTickCount(); this->field_11D = 1; this->creatureIcon = 0; this->probablyIsNeedDrawSpellEffect = 0; this->spellEnemyCreatureAbilityIsCasting = -1; this->mirroredIdx = -1; this->mirrorIdx = -1; this->armyIdx = -1; this->previousQuantity = -1; for(auto &i : ironfistAttributeNames) { if(CreatureHasAttribute(this->creatureIdx, i)) gIronfistExtra.combat.stack.abilityCounter[this][i] = 1; } } bool army::FlightThroughObstacles(int toHex) { double x1, x2, y1, y2, dx, dy; x1 = this->MidX(); y1 = this->MidY(); x2 = gpCombatManager->combatGrid[toHex].centerX; y2 = gpCombatManager->combatGrid[toHex].occupyingCreatureBottomY; dx = x2 - x1; dy = y2 - y1; int x = x1; int endX = x2; if(x1 > x2) { x = x2; endX = x1; } while(x < endX) { int y = y1 + dy * (x - x1) / dx; int cellIndex = gpCombatManager->GetGridIndex(x, y); if(gpCombatManager->combatGrid[cellIndex].isBlocked) return true; x++; } return false; } bool army::IsEnemyCreatureHex(int hex) { return (gpCombatManager->combatGrid[hex].stackIdx != -1) && (gpCombatManager->combatGrid[hex].unitOwner != this->owningSide); } int army::GetStraightLineDistanceToHex(int hex) { int dir = this->GetStraightLineDirection(hex); if(dir == -1) return 999; int tempHex = this->occupiedHex; int distance = 0; while(tempHex != hex) { tempHex = this->GetAdjacentCellIndex(tempHex, dir); distance++; if(tempHex > 113 || tempHex < 0) { return 999; } } return distance; }
[ "kertwaii@gmail.com" ]
kertwaii@gmail.com
7536c3940499daddd052ed636494dfc24c858c70
1754a20778101b8971c057ec6c358d6b45ed940b
/src/bench/mempool_eviction.cpp
3523f7af3cb2eaa75c17d98b50249c7d244cb68e
[ "MIT" ]
permissive
valeamoris/platopia
33ad24e97fa77f09cab94a35705f2180d9904064
563c616db768f813aa4482d39d8ed1d8aacaad4f
refs/heads/master
2020-04-11T06:48:50.911653
2018-05-15T06:15:27
2018-05-15T06:15:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,434
cpp
// Copyright (c) 2011-2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "bench.h" #include "policy/policy.h" #include "txmempool.h" #include <list> #include <vector> static void AddTx(const CTransaction &tx, const CAmount &nFee, CTxMemPool &pool) { int64_t nTime = 0; double dPriority = 10.0; unsigned int nHeight = 1; bool spendsCoinbase = false; unsigned int sigOpCost = 4; LockPoints lp; pool.addUnchecked(tx.GetId(), CTxMemPoolEntry(MakeTransactionRef(tx), nFee, nTime, dPriority, nHeight, tx.GetValueOut(), spendsCoinbase, sigOpCost, lp)); } // Right now this is only testing eviction performance in an extremely small // mempool. Code needs to be written to generate a much wider variety of // unique transactions for a more meaningful performance measurement. static void MempoolEviction(benchmark::State &state) { CMutableTransaction tx1 = CMutableTransaction(); tx1.vin.resize(1); tx1.vin[0].scriptSig = CScript() << OP_1; tx1.vout.resize(1); tx1.vout[0].scriptPubKey = CScript() << OP_1 << OP_EQUAL; tx1.vout[0].nValue = 10 * COIN; CMutableTransaction tx2 = CMutableTransaction(); tx2.vin.resize(1); tx2.vin[0].scriptSig = CScript() << OP_2; tx2.vout.resize(1); tx2.vout[0].scriptPubKey = CScript() << OP_2 << OP_EQUAL; tx2.vout[0].nValue = 10 * COIN; CMutableTransaction tx3 = CMutableTransaction(); tx3.vin.resize(1); tx3.vin[0].prevout = COutPoint(tx2.GetId(), 0); tx3.vin[0].scriptSig = CScript() << OP_2; tx3.vout.resize(1); tx3.vout[0].scriptPubKey = CScript() << OP_3 << OP_EQUAL; tx3.vout[0].nValue = 10 * COIN; CMutableTransaction tx4 = CMutableTransaction(); tx4.vin.resize(2); tx4.vin[0].prevout.SetNull(); tx4.vin[0].scriptSig = CScript() << OP_4; tx4.vin[1].prevout.SetNull(); tx4.vin[1].scriptSig = CScript() << OP_4; tx4.vout.resize(2); tx4.vout[0].scriptPubKey = CScript() << OP_4 << OP_EQUAL; tx4.vout[0].nValue = 10 * COIN; tx4.vout[1].scriptPubKey = CScript() << OP_4 << OP_EQUAL; tx4.vout[1].nValue = 10 * COIN; CMutableTransaction tx5 = CMutableTransaction(); tx5.vin.resize(2); tx5.vin[0].prevout = COutPoint(tx4.GetId(), 0); tx5.vin[0].scriptSig = CScript() << OP_4; tx5.vin[1].prevout.SetNull(); tx5.vin[1].scriptSig = CScript() << OP_5; tx5.vout.resize(2); tx5.vout[0].scriptPubKey = CScript() << OP_5 << OP_EQUAL; tx5.vout[0].nValue = 10 * COIN; tx5.vout[1].scriptPubKey = CScript() << OP_5 << OP_EQUAL; tx5.vout[1].nValue = 10 * COIN; CMutableTransaction tx6 = CMutableTransaction(); tx6.vin.resize(2); tx6.vin[0].prevout = COutPoint(tx4.GetId(), 1); tx6.vin[0].scriptSig = CScript() << OP_4; tx6.vin[1].prevout.SetNull(); tx6.vin[1].scriptSig = CScript() << OP_6; tx6.vout.resize(2); tx6.vout[0].scriptPubKey = CScript() << OP_6 << OP_EQUAL; tx6.vout[0].nValue = 10 * COIN; tx6.vout[1].scriptPubKey = CScript() << OP_6 << OP_EQUAL; tx6.vout[1].nValue = 10 * COIN; CMutableTransaction tx7 = CMutableTransaction(); tx7.vin.resize(2); tx7.vin[0].prevout = COutPoint(tx5.GetId(), 0); tx7.vin[0].scriptSig = CScript() << OP_5; tx7.vin[1].prevout = COutPoint(tx6.GetId(), 0); tx7.vin[1].scriptSig = CScript() << OP_6; tx7.vout.resize(2); tx7.vout[0].scriptPubKey = CScript() << OP_7 << OP_EQUAL; tx7.vout[0].nValue = 10 * COIN; tx7.vout[1].scriptPubKey = CScript() << OP_7 << OP_EQUAL; tx7.vout[1].nValue = 10 * COIN; CTxMemPool pool(CFeeRate(CAmount(1000))); while (state.KeepRunning()) { AddTx(tx1, CAmount(10000LL), pool); AddTx(tx2, CAmount(5000LL), pool); AddTx(tx3, CAmount(20000LL), pool); AddTx(tx4, CAmount(7000LL), pool); AddTx(tx5, CAmount(1000LL), pool); AddTx(tx6, CAmount(1100LL), pool); AddTx(tx7, CAmount(9000LL), pool); pool.TrimToSize(pool.DynamicMemoryUsage() * 3 / 4); pool.TrimToSize(GetTransactionSize(tx1)); } } BENCHMARK(MempoolEviction);
[ "d4ptakr@gmail.com" ]
d4ptakr@gmail.com
2da590584ce1e2c83cafcbeeb8f463df25f11f28
0fa04fd99d626dbc8c8440a05a85c2ee7b7d4e86
/src/shape_signatures/hks.h
5fe78e52933393a0a1c566b666e7914e71e08bc5
[ "MIT" ]
permissive
chatyan/self_similarity
9fd1319a93e0a584c83940806c9947192b5feef6
c032daa3009f60fdc8a52c437a07c6e3ba2efe4b
refs/heads/master
2022-12-11T09:40:28.857449
2020-09-21T23:53:55
2020-09-21T23:53:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
893
h
#ifndef HKS_H_ #define HKS_H_ #include <Eigen/Dense> #include <Eigen/Sparse> #include <Eigen/Core> template <typename DerivedVal, typename DerivedVec, typename DerivedHKS> inline bool hks( const Eigen::MatrixBase<DerivedVal>& eVecs, const Eigen::MatrixBase<DerivedVec>& eVals, double tmin, double tmax, unsigned int steps, Eigen::MatrixBase<DerivedHKS>& HKS); template <typename DerivedVal, typename DerivedVec, typename DerivedHKS> inline bool hks( const Eigen::MatrixBase<DerivedVal>& eVecs, const Eigen::MatrixBase<DerivedVec>& eVals, double t, Eigen::MatrixBase<DerivedHKS>& HKS); template <typename DerivedV, typename DerivedF, typename DerivedHKS> inline bool hks( const Eigen::MatrixBase<DerivedV>& eVecs, const Eigen::MatrixBase<DerivedF>& eVals, Eigen::MatrixBase<DerivedHKS>& HKS, int steps = -1); #include "hks.cpp" #endif
[ "jgraus@gmu.edu" ]
jgraus@gmu.edu
7638cbaac9a8733ecc4ec3141fd604c460ba4319
538b5058d7279ed988cd4e35c0ea89ffb1f9c006
/cr18_act_ctrl/Drivers/ros_lib/ros.h
ae7ee1ab162a78e37a95a600c83b639892a1f6f5
[]
no_license
yskhara/cr18_act_ctrl
481ce3c6ba466d3487f8fc7d3f60a27c873c9df5
6f30093184131035233306927a0224bc0f1446fb
refs/heads/master
2020-03-25T22:00:27.961958
2018-10-03T13:21:43
2018-10-03T13:21:43
144,200,685
1
1
null
null
null
null
UTF-8
C++
false
false
361
h
/* * ros.h * * Created on: Aug 15, 2018 * Author: yusaku */ #ifndef ROSSERIAL_CLIENT_SRC_ROS_LIB_ROS_H_ #define ROSSERIAL_CLIENT_SRC_ROS_LIB_ROS_H_ #include "ros/node_handle.h" #include "STM32Hardware.h" namespace ros { typedef NodeHandle_<STM32Hardware, 25, 25, BUF_SIZE, BUF_SIZE> NodeHandle; } #endif /* ROSSERIAL_CLIENT_SRC_ROS_LIB_ROS_H_ */
[ "yusaku@yusaku-T460s" ]
yusaku@yusaku-T460s
897cee4e58dfdebb8fe3c2b3048adb66a9244ee0
b5da292572a88a82fa960acb6aa560aea4feeace
/src/sba_file_io.cpp
8308a45020e684ae065bb986c7a7630dae0056ed
[ "BSD-3-Clause" ]
permissive
Adlink-ROS/sparse_bundle_adjustment_ros2
aff18132e11a691d301cb681516f34bdd50fad4b
91b29a76e4076b677ef4a4af6dead1b31f62bcb9
refs/heads/master
2021-07-19T23:05:50.783329
2020-04-20T12:46:19
2020-04-20T12:46:19
137,312,840
0
1
null
null
null
null
UTF-8
C++
false
false
32,620
cpp
#include "sparse_bundle_adjustment/sba_file_io.h" #include <map> using namespace sba; using namespace Eigen; using namespace frame_common; using namespace std; int sba::readBundlerFile(const char *filename, SysSBA& sbaout) { // Create vectors to hold the data from the bundler file. vector< Vector3d, Eigen::aligned_allocator<Vector3d> > camps; // cam params <f d1 d2> vector< Matrix3d, Eigen::aligned_allocator<Matrix3d> > camRs; // cam rotation matrix vector< Vector3d, Eigen::aligned_allocator<Vector3d> > camts; // cam translation vector< Vector3d, Eigen::aligned_allocator<Vector3d> > ptps; // point position vector< Vector3i, Eigen::aligned_allocator<Vector3i> > ptcs; // point color vector< vector< Vector4d, Eigen::aligned_allocator<Vector4d> > > ptts; // point tracks - each vector is <camera_index kp_idex u v> int ret = ParseBundlerFile(filename, camps, camRs, camts, ptps, ptcs, ptts); if (ret < 0) return -1; int ncams = camps.size(); int npts = ptps.size(); int nprjs = 0; for (int i=0; i<npts; i++) nprjs += (int)ptts[i].size(); /* cout << "Points: " << npts << " Tracks: " << ptts.size() << " Projections: " << nprjs << endl; */ cout << "Setting up nodes..." << flush; for (int i=0; i<ncams; i++) { // camera params Vector3d &camp = camps[i]; CamParams cpars = {camp[0],camp[0],0,0,0}; // set focal length, no offset // // NOTE: Bundler camera coords are rotated 180 deg around the X axis of // the camera, so Z points opposite the camera viewing ray (OpenGL). // Note quite sure, but I think this gives the camera pose as // [-R' -R'*t] // rotation matrix Matrix3d m180x; // rotate 180 deg around X axis, to convert Bundler frames to SBA frames m180x << 1, 0, 0, 0, -1, 0, 0, 0, -1; Matrix3d camR = m180x * camRs[i]; // rotation matrix Quaternion<double> frq(camR.transpose()); // camera frame rotation, from Bundler docs if (frq.w() < 0.0) // w negative, change to positive { frq.x() = -frq.x(); frq.y() = -frq.y(); frq.z() = -frq.z(); frq.w() = -frq.w(); } frq.normalize(); // translation Vector3d &camt = camts[i]; Vector4d frt; frt.head<3>() = -camRs[i].transpose() * camt; // camera frame translation, from Bundler docs frt[3] = 1.0; Node nd; sbaout.addNode(frt, frq, cpars); } // cout << "done" << endl; // set up points cout << "Setting up points..." << flush; for (int i=0; i<npts; i++) { // point Vector3d &ptp = ptps[i]; Point pt; pt.head<3>() = ptp; pt[3] = 1.0; sbaout.addPoint(pt); } // cout << "done" << endl; sbaout.useLocalAngles = true; // use local angles sbaout.nFixed = 1; // set up projections int ntot = 0; cout << "Setting up projections..." << flush; for (int i=0; i<npts; i++) { // track vector<Vector4d, Eigen::aligned_allocator<Vector4d> > &ptt = ptts[i]; int nprjs = ptt.size(); for (int j=0; j<nprjs; j++) { // projection Vector4d &prj = ptt[j]; int cami = (int)prj[0]; Vector2d pt = prj.segment<2>(2); pt[1] = -pt[1]; // NOTE: Bundler image Y is reversed if (cami >= ncams) cout << "*** Cam index exceeds bounds: " << cami << endl; sbaout.addMonoProj(cami,i,pt); // Monocular projections ntot++; } } cout << "done" << endl; return 0; } int sba::writeBundlerFile(const char *filename, SysSBA& sbain) { ofstream outfile(filename, ios_base::trunc); if (!outfile) // for c++11 { cout << "Can't open file " << filename << endl; return -1; } outfile.precision(10); outfile.setf(ios_base::scientific); unsigned int i = 0; outfile << "# Bundle file v0.3" << endl; // First line is number of cameras and number of points. outfile << sbain.nodes.size() << ' ' << sbain.tracks.size() << endl; // Set up transform matrix for camera parameters Matrix3d m180x; // rotate 180 deg around X axis, to convert Bundler frames to SBA frames m180x << 1, 0, 0, 0, -1, 0, 0, 0, -1; // Then goes information about each camera, in <f> <k1> <k2>\n<R>\n<t> format. for (i = 0; i < sbain.nodes.size(); i++) { // Assuming fx = fy and using fx. Don't use k1 or k2. outfile << sbain.nodes[i].Kcam(0, 0) << ' ' << 0.0 << ' ' << 0.0 << endl; Quaternion<double> quat(sbain.nodes[i].qrot); /* cout << "\nQuat: [ " << sbain.nodes[i].qrot << " ]\n"; */ quat.normalize(); Matrix3d rotmat = m180x * quat.toRotationMatrix().transpose(); outfile << rotmat(0, 0) << ' ' << rotmat(0, 1) << ' ' << rotmat(0, 2) << endl; outfile << rotmat(1, 0) << ' ' << rotmat(1, 1) << ' ' << rotmat(1, 2) << endl; outfile << rotmat(2, 0) << ' ' << rotmat(2, 1) << ' ' << rotmat(2, 2) << endl; Vector3d trans = sbain.nodes[i].trans.head<3>(); trans = -rotmat*trans; outfile << trans(0) << ' ' << trans(1) << ' ' << trans(2) << endl; } outfile.setf(ios_base::fixed); // Then goes information about each point. <pos>\n<color>\n<viewlist> for (i = 0; i < sbain.tracks.size(); i++) { // World <x y z> outfile << sbain.tracks[i].point(0) << ' ' << sbain.tracks[i].point(1) << ' ' << sbain.tracks[i].point(2) << endl; // Color <r g b> (Just say white instead) outfile << "255 255 255" << endl; // View list: <list_length><camera_index key u v>\n<camera_index key u v> // Key is the keypoint # in SIFT, but we just use point number instead. // We output these as monocular points because the file format does not // support stereo points. ProjMap &prjs = sbain.tracks[i].projections; // List length outfile << prjs.size() << ' '; // Output all the tracks as monocular tracks. for(ProjMap::iterator itr = prjs.begin(); itr != prjs.end(); itr++) { Proj &prj = itr->second; // y is reversed (-y) Node &node = sbain.nodes[prj.ndi]; double cx = node.Kcam(0, 2); double cy = node.Kcam(1, 2); outfile << prj.ndi << ' ' << i << ' ' << prj.kp(0)-cx << ' ' << -(prj.kp(1)-cy) << ' '; } outfile << endl; } return 0; } int sba::ParseBundlerFile(const char *fin, // input file vector< Vector3d, Eigen::aligned_allocator<Vector3d> > &camp, // cam params <f d1 d2> vector< Matrix3d, Eigen::aligned_allocator<Matrix3d> > &camR, // cam rotation matrix vector< Vector3d, Eigen::aligned_allocator<Vector3d> > &camt, // cam translation vector< Vector3d, Eigen::aligned_allocator<Vector3d> > &ptp, // point position vector< Vector3i, Eigen::aligned_allocator<Vector3i> > &ptc, // point color vector< vector< Vector4d, Eigen::aligned_allocator<Vector4d> > > &ptt // point tracks - each vector is <camera_index u v> ) { ifstream ifs(fin); if (!ifs) // for c++11 { cout << "Can't open file " << fin << endl; return -1; } ifs.precision(10); // read header string line; if (!getline(ifs,line) || line != "# Bundle file v0.3") { cout << "Bad header" << endl; return -1; } cout << "Found Bundler 3.0 file" << endl; // read number of cameras and points int ncams, npts; if (!(ifs >> ncams >> npts)) { cout << "Bad header" << endl; return -1; } cout << "Number of cameras: " << ncams << " Number of points: " << npts << endl; cout << "Reading in camera data..." << flush; for (int i=0; i<ncams; i++) { double v1,v2,v3,v4,v5,v6,v7,v8,v9; if (!(ifs >> v1 >> v2 >> v3)) { cout << "Bad camera params at number " << i << endl; return -1; } camp.push_back(Vector3d(v1,v2,v3)); if (!(ifs >> v1 >> v2 >> v3 >> v4 >> v5 >> v6 >> v7 >> v8 >> v9)) { cout << "Bad camera rotation matrix at number " << i << endl; return -1; } Matrix3d m; m << v1,v2,v3,v4,v5,v6,v7,v8,v9; camR.push_back(m); if (!(ifs >> v1 >> v2 >> v3)) { cout << "Bad camera translation at number " << i << endl; return -1; } camt.push_back(Vector3d(v1,v2,v3)); } cout << "done" << endl; ptt.resize(npts); cout << "Reading in pts data..." << flush; for (int i=0; i<npts; i++) { double v1,v2,v3; int i1,i2,i3; if (!(ifs >> v1 >> v2 >> v3)) { cout << "Bad point position at number " << i << endl; return -1; } ptp.push_back(Vector3d(v1,v2,v3)); if (!(ifs >> i1 >> i2 >> i3)) { cout << "Bad point color at number " << i << endl; return -1; } ptc.push_back(Vector3i(i1,i2,i3)); if (!(ifs >> i1)) { cout << "Bad track count at number " << i << endl; return -1; } int nprjs = i1; vector<Vector4d, Eigen::aligned_allocator<Vector4d> > &prjs = ptt[i]; for (int j=0; j<nprjs; j++) { if (!(ifs >> i1 >> i2 >> v1 >> v2)) { cout << "Bad track parameter at number " << i << endl; return -1; } prjs.push_back(Vector4d(i1,i2,v1,v2)); } } // end of pts loop cout << "done" << endl; // print some stats double nprjs = 0; for (int i=0; i<npts; i++) nprjs += ptt[i].size(); cout << "Number of projections: " << (int)nprjs << endl; cout << "Average projections per camera: " << nprjs/(double)ncams << endl; cout << "Average track length: " << nprjs/(double)npts << endl; return 0; } // write out the system in an sba (Lourakis) format // NOTE: Lourakis FAQ is wrong about coordinate systems // Cameras are represented by the w2n transform, converted to // a quaternion and translation vector // void sba::writeLourakisFile(const char *fname, SysSBA& sba) { char name[1024]; sprintf(name,"%s-cams.txt",fname); FILE *fn = fopen(name,"w"); if (!fn) // for c++11 { cout << "[WriteFile] Can't open file " << name << endl; return; } // write out initial camera poses int ncams = sba.nodes.size(); for (int i=0; i<ncams; i++) { Node &nd = sba.nodes[i]; // Why not just use the Quaternion??? Quaternion<double> frq(nd.w2n.block<3,3>(0,0)); // rotation matrix of transform fprintf(fn,"%f %f %f %f ", frq.w(), frq.x(), frq.y(), frq.z()); Vector3d tr = nd.w2n.col(3); fprintf(fn,"%f %f %f\n", tr[0], tr[1], tr[2]); } fclose(fn); sprintf(name,"%s-pts.txt",fname); fn = fopen(name,"w"); if (!fn) // for c++11 { cout << "[WriteFile] Can't open file " << name << endl; return; } fprintf(fn,"# X Y Z nframes frame0 x0 y0 frame1 x1 y1 ...\n"); // write out points for(size_t i=0; i<sba.tracks.size(); i++) { ProjMap &prjs = sba.tracks[i].projections; // Write out point Point &pt = sba.tracks[i].point; fprintf(fn,"%f %f %f ", pt.x(), pt.y(), pt.z()); fprintf(fn,"%d ",(int)prjs.size()); // Write out projections for(ProjMap::iterator itr = prjs.begin(); itr != prjs.end(); itr++) { Proj &prj = itr->second; if (!prj.isValid) continue; int cami = itr->first;//prj.ndi; // NOTE: Lourakis projected y is reversed (???) fprintf(fn," %d %f %f ",cami,prj.kp[0],prj.kp[1]); } fprintf(fn,"\n"); } fclose(fn); // write camera calibartion sprintf(name,"%s-calib.txt",fname); fn = fopen(name,"w"); if (!fn) // for c++11 { cout << "[WriteFile] Can't open file " << name << endl; return; } Matrix3d &K = sba.nodes[0].Kcam; fprintf(fn,"%f %f %f\n", K(0,0), K(0,1), K(0,2)); fprintf(fn,"%f %f %f\n", K(1,0), K(1,1), K(1,2)); fprintf(fn,"%f %f %f\n", K(2,0), K(2,1), K(2,2)); fclose(fn); } // write out the precision matrix void sba::writeA(const char *fname, SysSBA& sba) { ofstream ofs(fname); if (!ofs) // for c++11 { cout << "Can't open file " << fname << endl; return; } // cameras Eigen::IOFormat pfmt(16); ofs << sba.A.format(pfmt) << endl; ofs.close(); } // write out the precision matrix for CSparse void sba::writeSparseA(const char *fname, SysSBA& sba) { char name[1024]; sprintf(name,"%s-A.tri",fname); { ofstream ofs(name); if (!ofs) // for c++11 { cout << "Can't open file " << fname << endl; return; } // cameras Eigen::IOFormat pfmt(16); int nrows = sba.A.rows(); int ncols = sba.A.cols(); cout << "[WriteSparseA] Size: " << nrows << "x" << ncols << endl; // find # nonzeros int nnz = 0; for (int i=0; i<nrows; i++) for (int j=i; j<ncols; j++) { double a = sba.A(i,j); if (a != 0.0) nnz++; } ofs << nrows << " " << ncols << " " << nnz << " 1" << endl; for (int i=0; i<nrows; i++) for (int j=i; j<ncols; j++) { double a = sba.A(i,j); if (a != 0.0) ofs << i << " " << j << " " << setprecision(16) << a << endl; } ofs.close(); } sprintf(name,"%s-B.txt",fname); { ofstream ofs(name); if (!ofs) // for c++11 { cout << "Can't open file " << fname << endl; return; } // cameras Eigen::IOFormat pfmt(16); int nrows = sba.B.rows(); ofs << nrows << " " << 1 << endl; for (int i=0; i<nrows; i++) { double a = sba.B(i); ofs << setprecision(16) << a << endl; } ofs.close(); } } int sba::readGraphFile(const char *filename, SysSBA& sbaout) { // Create vectors to hold the data from the graph file. vector< Vector5d, Eigen::aligned_allocator<Vector5d> > camps; // cam params <f d1 d2> vector< Vector4d, Eigen::aligned_allocator<Vector4d> > camqs; // cam rotation matrix vector< Vector3d, Eigen::aligned_allocator<Vector3d> > camts; // cam translation vector< Vector3d, Eigen::aligned_allocator<Vector3d> > ptps; // point position vector< vector< Vector11d, Eigen::aligned_allocator<Vector11d> > > ptts; // point tracks - each vector is <camera_index kp_idex u v> int ret = ParseGraphFile(filename, camps, camqs, camts, ptps, ptts); if (ret < 0) return -1; int ncams = camps.size(); int npts = ptps.size(); int nprjs = 0; for (int i=0; i<npts; i++) nprjs += (int)ptts[i].size(); // cout << "Points: " << npts << " Tracks: " << ptts.size() // << " Projections: " << nprjs << endl; // cout << "Setting up nodes..." << flush; for (int i=0; i<ncams; i++) { // camera params Vector5d &camp = camps[i]; CamParams cpars = {camp[0],camp[1],camp[2],camp[3],camp[4]}; // set focal length and offsets // note fy is negative... // // NOTE: not sure how graph files parameterize rotations // Quaternion<double> frq(camqs[i]); // quaternion coeffs if (frq.w() < 0.0) // w negative, change to positive { frq.x() = -frq.x(); frq.y() = -frq.y(); frq.z() = -frq.z(); frq.w() = -frq.w(); } frq.normalize(); // translation Vector3d &camt = camts[i]; Vector4d frt; frt.head<3>() = camt; frt[3] = 1.0; Node nd; sbaout.addNode(frt, frq, cpars); } // cout << "done" << endl; // set up points // cout << "Setting up points..." << flush; for (int i=0; i<npts; i++) { // point Vector3d &ptp = ptps[i]; Point pt; pt.head<3>() = ptp; pt[3] = 1.0; sbaout.addPoint(pt); } // cout << "done" << endl; sbaout.useLocalAngles = true; // use local angles sbaout.nFixed = 1; // set up projections int ntot = 0; // cout << "Setting up projections..." << flush; for (int i=0; i<npts; i++) { // track vector<Vector11d, Eigen::aligned_allocator<Vector11d> > &ptt = ptts[i]; int nprjs = ptt.size(); for (int j=0; j<nprjs; j++) { // projection Vector11d &prj = ptt[j]; int cami = (int)prj[0]; if (cami >= ncams) cout << "*** Cam index exceeds bounds: " << cami << endl; if (prj[4] > 0) // stereo { Vector3d pt = prj.segment<3>(2); sbaout.addStereoProj(cami,i,pt); // Monocular projections } else // mono { Vector2d pt = prj.segment<2>(2); sbaout.addMonoProj(cami,i,pt); // Monocular projections } ntot++; } } // cout << "done" << endl; return 0; } // makes a quaternion from fixed Euler RPY angles // see the Wikipedia article on Euler anlges static void make_qrot(double rr, double rp, double ry, Vector4d &v) { double sr = sin(rr/2.0); double cr = cos(rr/2.0); double sp = sin(rp/2.0); double cp = cos(rp/2.0); double sy = sin(ry/2.0); double cy = cos(ry/2.0); v[0] = sr*cp*cy - cr*sp*sy; // qx v[1] = cr*sp*cy + sr*cp*sy; // qy v[2] = cr*cp*sy - sr*sp*cy; // qz v[3] = cr*cp*cy + sr*sp*sy; // qw } int sba::ParseGraphFile(const char *fin, // input file vector< Vector5d, Eigen::aligned_allocator<Vector5d> > &camp, // cam params <fx fy cx cy> vector< Vector4d, Eigen::aligned_allocator<Vector4d> > &camq, // cam rotation quaternion vector< Vector3d, Eigen::aligned_allocator<Vector3d> > &camt, // cam translation vector< Vector3d, Eigen::aligned_allocator<Vector3d> > &ptp, // point position // point tracks - each vector is <camera_index point_index u v d>; // point index is redundant, d is 0 for mono, >0 for stereo vector< vector< Vector11d, Eigen::aligned_allocator<Vector11d> > > &ptts ) { // input stream ifstream ifs(fin); if (!ifs) // for c++11 { cout << "Can't open file " << fin << endl; return -1; } ifs.precision(10); // map of node and point indices map<int,int> nodemap; map<int,int> pointmap; // loop over lines string line; int nline = 0; int nid = 0; // current node id int pid = 0; // current point id while (getline(ifs,line)) { nline++; stringstream ss(line); // make a string stream string type; ss >> type; size_t pos = type.find("#"); if (pos != string::npos) continue; // comment line if (type == "VERTEX_SE3" || type == "VERTEX_CAM") // have a camera node { int n; double tx,ty,tz,qx,qy,qz,qw,fx,fy,cx,cy,bline; if (!(ss >> n >> tx >> ty >> tz >> qx >> qy >> qz >> qw >> fx >> fy >> cx >> cy >> bline)) { cout << "[ReadSPA] Bad VERTEX_SE3 at line " << nline << endl; return -1; } nodemap.insert(pair<int,int>(n,nid)); nid++; camt.push_back(Vector3d(tx,ty,tz)); Vector4d v(qx,qy,qz,qw); // use quaternions // make_qrot(rr,rp,ry,v); camq.push_back(v); // fx,fy,cx,cy Vector5d cp; cp << fx,fy,cx,cy,bline; camp.push_back(cp); } else if (type == "VERTEX_XYZ") // have a point { int n; double tx,ty,tz; if (!(ss >> n >> tx >> ty >> tz)) { cout << "[ReadSPA] Bad VERTEX_XYZ at line " << nline << endl; return -1; } pointmap.insert(pair<int,int>(n,pid)); pid++; ptp.push_back(Vector3d(tx,ty,tz)); } else if (type == "EDGE_PROJECT_XYZ" || type == "EDGE_PROJECT_P2MC" || type == "EDGE_PROJECT_P2SC") // have an edge { int n1,n2; double u,v,d; // projection, including disparity double cv0, cv1, cv2, cv3, cv4, cv5; // covars of point projection, not used cv3 = cv4 =cv5 = 0.0; // indices and measurement d = 0; if (type == "EDGE_PROJECT_P2SC") { if (!(ss >> n1 >> n2 >> u >> v >> d >> cv0 >> cv1 >> cv2 >> cv3 >> cv4 >> cv5)) { cout << "[ReadSPA] Bad EDGE_PROJECT_XYZ at line " << nline << endl; return -1; } } else { if (!(ss >> n1 >> n2 >> u >> v >> cv0 >> cv1 >> cv2)) { cout << "[ReadSPA] Bad EDGE_PROJECT_XYZ at line " << nline << endl; return -1; } } // get true indices map<int,int>::iterator it; it = pointmap.find(n1); if (it == pointmap.end()) { cout << "[ReadSPA] Missing point index " << n1 << " at line " << nline << endl; return -1; } int pi = it->second; if (pi >= (int)ptp.size()) { cout << "[ReadSPA] Point index " << pi << " too large at line " << nline << endl; return -1; } it = nodemap.find(n2); if (it == nodemap.end()) { cout << "[ReadSPA] Missing camera index " << n2 << " at line " << nline << endl; return -1; } int ci = it->second; if (ci >= (int)camp.size()) { cout << "[ReadSPA] Camera index " << ci << " too large at line " << nline << endl; return -1; } // get point track if (ptts.size() < (size_t)pi+1) ptts.resize(pi+1); vector< Vector11d, Eigen::aligned_allocator<Vector11d> > &trk = ptts[pi]; Vector11d tv; tv << ci,pi,u,v,d,cv0,cv1,cv2,cv3,cv4,cv5; trk.push_back(tv); } else { cout << "[ReadSPA] Undefined type <" << type <<"> at line " << nline << endl; return -1; } } // print some stats double nprjs = 0; int ncams = camp.size(); int npts = ptp.size(); for (int i=0; i<npts; i++) nprjs += ptts[i].size(); cout << "Number of cameras: " << ncams << endl; cout << "Number of points: " << npts << endl; cout << "Number of projections: " << (int)nprjs << endl; cout << "Average projections per camera: " << nprjs/(double)ncams << endl; cout << "Average track length: " << nprjs/(double)npts << endl; return 0; } /** * \brief Writes out the current SBA system as an ascii graph file * suitable to be read in by the Freiburg HChol system. * <mono> is true if only monocular projections are desired */ int sba::writeGraphFile(const char *filename, SysSBA& sba, bool mono) { ofstream outfile(filename, ios_base::trunc); if (!outfile) // for c++11 { cout << "Can't open file " << filename << endl; return -1; } outfile.precision(5); // outfile.setf(ios_base::scientific); outfile.setf(ios_base::fixed); unsigned int i = 0; // header, but we skip for now // outfile << "# Bundle file v0.3" << endl; // Info about each camera // VERTEX_CAM n x y z qx qy qz qw fx fy cx cy baseline // <baseline> is 0 for monocular data // <n> is the camera index, heading at 0 int ncams = sba.nodes.size(); for (i = 0; i < (unsigned int)ncams; i++) { outfile << "VERTEX_CAM" << " "; outfile << i << " "; // node number Vector3d trans = sba.nodes[i].trans.head<3>(); // position outfile << trans(0) << ' ' << trans(1) << ' ' << trans(2) << ' '; Vector4d rot = sba.nodes[i].qrot.coeffs(); // rotation outfile << rot(0) << ' ' << rot(1) << ' ' << rot(2) << ' ' << rot(3) << ' '; // cam params outfile << sba.nodes[i].Kcam(0,0) << ' ' << sba.nodes[i].Kcam(1,1) << ' ' << sba.nodes[i].Kcam(0,2) << ' ' << sba.nodes[i].Kcam(1,2) << ' ' << sba.nodes[i].baseline << endl; } // Info about each point // point indices are sba indices plus ncams (so they're unique in the file) // VERTEX_POINT n x y z // after each point comes the projections // EDGE_PROJECT_P2C pt_ind cam_ind u v for (i = 0; i < sba.tracks.size(); i++) { outfile << "VERTEX_XYZ" << ' ' << ncams+i << ' '; // index // World <x y z> outfile << sba.tracks[i].point(0) << ' ' << sba.tracks[i].point(1) << ' ' << sba.tracks[i].point(2) << endl; ProjMap &prjs = sba.tracks[i].projections; // Output all projections // Mono projections have 0 for the disparity for(ProjMap::iterator itr = prjs.begin(); itr != prjs.end(); itr++) { // TODO: output real covariance, if available Proj &prj = itr->second; if (prj.stereo && !mono) { outfile << "EDGE_PROJECT_P2SC "; // stereo edge outfile << ncams+i << ' ' << prj.ndi << ' ' << prj.kp(0) << ' ' << prj.kp(1) << ' ' << prj.kp(2) << ' '; outfile << "1 0 0 0 1 1" << endl; // covariance } else { outfile << "EDGE_PROJECT_P2MC "; // mono edge outfile << ncams+i << ' ' << prj.ndi << ' ' << prj.kp(0) << ' ' << prj.kp(1) << ' '; outfile << "1 0 1" << endl; // covariance } } } return 0; } // // SPA (3D pose graphs) // // // add a single node to the graph, in the position given by the VERTEX2 entry in the file // void addnode(SysSPA &spa, int n, std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > ntrans, // node translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > nqrot, // node rotation std::vector< Eigen::Vector2i, Eigen::aligned_allocator<Eigen::Vector2i> > cind, // constraint indices std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > ctrans, // constraint local translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > cqrot, // constraint local rotation as quaternion std::vector< Eigen::Matrix<double,6,6>, Eigen::aligned_allocator<Eigen::Matrix<double,6,6> > > prec) // constraint covariance { Node nd; // rotation Quaternion<double> frq; frq.coeffs() = nqrot[n]; #if 0 frq.normalize(); if (frq.w() <= 0.0) frq.coeffs() = -frq.coeffs(); nd.qrot = frq.coeffs(); #endif // translation Vector4d v; v.head(3) = ntrans[n]; v(3) = 1.0; spa.addNode(v,frq); #if 0 nd.trans = v; nd.setTransform(); // set up world2node transform nd.setDr(true); // add to system spa.nodes.push_back(nd); #endif // add in constraints for (int i=0; i<(int)ctrans.size(); i++) { ConP2 con; con.ndr = cind[i].x(); con.nd1 = cind[i].y(); if ((con.ndr == n && con.nd1 <= n-1) || (con.nd1 == n && con.ndr <= n-1)) { con.tmean = ctrans[i]; Quaternion<double> qr; qr.coeffs() = cqrot[i]; qr.normalize(); con.qpmean = qr.inverse(); // inverse of the rotation measurement con.prec = prec[i]; // ??? should this be inverted ??? // need a boost for noise-offset system //con.prec.block<3,3>(3,3) *= 10.0; spa.p2cons.push_back(con); } } } int sba::readSPAGraphFile(const char *filename, SysSPA& spaout) { // Create vectors to hold the data from the graph file. std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > ntrans; // node translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > nqrot; // node rotation std::vector< Eigen::Vector2i, Eigen::aligned_allocator<Eigen::Vector2i> > cind; // constraint indices std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > ctrans; // constraint local translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > cqrot; // constraint local rotation as quaternion std::vector< Eigen::Matrix<double,6,6>, Eigen::aligned_allocator<Eigen::Matrix<double,6,6> > > prec; // constraint covariance int ret = ParseSPAGraphFile(filename, ntrans, nqrot, cind, ctrans, cqrot, prec); if (ret < 0) return -1; cout << "# [ReadSPAFile] Found " << (int)ntrans.size() << " nodes and " << (int)cind.size() << " constraints" << endl; int nnodes = ntrans.size(); // add in nodes for (int i=0; i<nnodes; i++) addnode(spaout, i, ntrans, nqrot, cind, ctrans, cqrot, prec); return 0; } // cv is upper triangular void make_covar(double *cv, Matrix<double,6,6> &m) { m.setZero(); int i = 0; m(0,0) = cv[i++]; m(0,1) = cv[i++]; m(0,2) = cv[i++]; m(0,3) = cv[i++]; m(0,4) = cv[i++]; m(0,5) = cv[i++]; m(1,1) = cv[i++]; m(1,2) = cv[i++]; m(1,3) = cv[i++]; m(1,4) = cv[i++]; m(1,5) = cv[i++]; m(2,2) = cv[i++]; m(2,3) = cv[i++]; m(2,4) = cv[i++]; m(2,5) = cv[i++]; m(3,3) = cv[i++]; m(3,4) = cv[i++]; m(3,5) = cv[i++]; m(4,4) = cv[i++]; m(4,5) = cv[i++]; m(5,5) = cv[i++]; // make symmetric Matrix<double,6,6> mt = m.transpose(); mt.diagonal().setZero(); m = m+mt; } int sba::ParseSPAGraphFile(const char *fin, // input file std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > &ntrans, // node translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > &nqrot, // node rotation std::vector< Eigen::Vector2i, Eigen::aligned_allocator<Eigen::Vector2i> > &cind, // constraint indices std::vector< Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d> > &ctrans, // constraint local translation std::vector< Eigen::Vector4d, Eigen::aligned_allocator<Eigen::Vector4d> > &cqrot, // constraint local rotation as quaternion std::vector< Eigen::Matrix<double,6,6>, Eigen::aligned_allocator<Eigen::Matrix<double,6,6> > > &prec) // constraint covariance { ifstream ifs(fin); if (!ifs) // for c++11 { cout << "Can't open file " << fin << endl; return -1; } ifs.precision(10); // loop over lines string line; int nline = 0; bool first = true; while (getline(ifs,line)) { nline++; stringstream ss(line); // make a string stream string type; ss >> type; size_t pos = type.find("#"); if (pos != string::npos) continue; // comment line if (type == "VERTEX_SE3") // have a vertex { int n; double tx,ty,tz,rr,rp,ry; if (!(ss >> n >> tx >> ty >> tz >> rr >> rp >> ry)) { cout << "[ReadSPA] Bad VERTEX_SE3 at line " << nline << endl; return -1; } ntrans.push_back(Vector3d(tx,ty,tz)); Vector4d v; make_qrot(rr,rp,ry,v); nqrot.push_back(v); } if (type == "EDGE_SE3_SE3") // have an edge { int n1,n2; double tx,ty,tz,rr,rp,ry; double cv[21]; // indices and measurement if (!(ss >> n1 >> n2 >> tx >> ty >> tz >> rr >> rp >> ry)) { cout << "[ReadSPA] Bad EDGE_SE3_SE3 at line " << nline << endl; return -1; } cind.push_back(Vector2i(n1,n2)); ctrans.push_back(Vector3d(tx,ty,tz)); Vector4d v; make_qrot(rr,rp,ry,v); cqrot.push_back(v); // covar if (!(ss >> cv[0] >> cv[1] >> cv[2] >> cv[3] >> cv[4] >> cv[5] >> cv[6] >> cv[7] >> cv[8] >> cv[9] >> cv[10] >> cv[11] >> cv[12] >> cv[13] >> cv[14] >> cv[15] >> cv[16] >> cv[17] >> cv[18] >> cv[19] >> cv[20])) { cout << "[ReadSPA] Bad EDGE_SE3_SE3 at line " << nline << endl; return -1; } Matrix<double,6,6> m; make_covar(cv,m); if (first) { //cout << endl; //for (int j=0; j<21; j++); //cout << cv[j] << " "; //cout << endl << endl << << m << endl; first = false; } prec.push_back(m); } } return 0; }
[ "f44006076@gmail.com" ]
f44006076@gmail.com
c96423890cf5cdb767b7ae06b211da265b7a5342
dc3b1b231ee872d5d4d2e2433ed8a2d8fb740307
/chapter16/ex22.cc
52f9baa7c90aeab18e0f59da13c04483a45f7cf3
[]
no_license
coder-e1adbc/CppPrimer
d2b62b49f20892c5e53a78de0c807b168373bfc6
33ffd4fc39f4bccf4e107aec2d8dc6ed4e9d7447
refs/heads/master
2021-01-17T08:54:23.438341
2016-08-13T03:21:08
2016-08-13T03:21:08
61,343,967
0
0
null
2016-06-29T14:37:16
2016-06-17T03:49:23
C++
UTF-8
C++
false
false
1,220
cc
#include "ex22.h" #include <sstream> using std::string; using std::vector; using std::map; using std::set; using std::ifstream; using std::ostream; using std::endl; using std::getline; using std::istringstream; using std::shared_ptr; TextQuery::TextQuery(ifstream &is): file(new vector<string>, DebugDelete()) { string text; while (getline(is, text)) { file->push_back(text); line_no n = file->size() - 1; istringstream line(text); string word; while (line >> word) { auto &lines = wm[word]; if (!lines) lines.reset(new set<line_no>, DebugDelete()); lines->insert(n); } } } QueryResult TextQuery::query(const string &sought) const { static shared_ptr<set<line_no>> nodata(new set<line_no>, DebugDelete()); auto loc = wm.find(sought); if (loc == wm.end()) return QueryResult(sought, nodata, file); else return QueryResult(sought, loc->second, file); } ostream& print(ostream &os, const QueryResult &qr) { os << qr.sought << " occurs " << qr.lines->size() << (qr.lines->size() > 1 ? " times" : " time") << (qr.lines->size() == 0 ? "." : ":") << endl; for (auto num : *qr.lines) os << "\t(line " << num + 1 << ") " << *(qr.file->begin() + num) << endl; return os; }
[ "mengxianghua1995+github@gmail.com" ]
mengxianghua1995+github@gmail.com
c078936997f5a6c149a5104a12604313fef8f288
f4856d61fcc38257f661b8c2117fc80086acc29e
/Recursion&Backtracking/Fibonacci.cpp
31f4563a86a9e0a44539e5609c1352334578019d
[ "Apache-2.0" ]
permissive
abhijay94/CompetitiveProgramming
4e182cd71db74e908309b7795311e30a5310dec2
ba1f05c189750a49ab9f69b10d2aafa60baa4310
refs/heads/master
2020-04-13T19:27:56.851791
2019-01-15T05:27:14
2019-01-15T05:27:14
163,403,550
0
0
null
null
null
null
UTF-8
C++
false
false
357
cpp
#include <bits/stdc++.h> using namespace std; int fib (int n) { if (n == 0 || n == 1) { return 1; } return fib(n - 1) + fib (n - 2); } int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; cout<<fib(n); return 0; }
[ "abhijaynsit@gmail.com" ]
abhijaynsit@gmail.com
66939d7f06c931224ab315564e656ee06d72f1df
8c98a8914794ba30c2741a4e8f43009c528f9928
/arduino/scootButtons/scootButtons.ino
b3d7d18b07070641b4ed0b785f948c89da30edd8
[]
no_license
KyleMagocs/ScootyPoochy
8e96e2b7b6b4b76822e982e8f8c1918244cfa80e
9146cc0e67b809990fbbb34a5afb170ce7f8a3f5
refs/heads/master
2021-01-11T20:19:14.380278
2019-01-02T20:00:43
2019-01-02T20:00:43
79,080,493
3
1
null
2017-08-18T03:13:19
2017-01-16T03:44:25
Python
UTF-8
C++
false
false
791
ino
const int pinBtnLeft = 6; const int pinBtnRight = 10; //Variables for the states of the SNES buttons boolean boolBtnLeft; boolean boolBtnRight; void setup() { pinMode( 13, OUTPUT ); pinMode( pinBtnLeft, INPUT_PULLUP ); pinMode( pinBtnRight, INPUT_PULLUP ); boolBtnLeft = false; boolBtnRight = false; } void loop() { digitalWrite ( 13 , digitalRead(pinBtnLeft)); fcnProcessButtons(); } void fcnProcessButtons() { boolean boolBtnLeft = !digitalRead(pinBtnLeft); if ( boolBtnLeft ) { //Set key1 to the U key Keyboard.press( KEY_F ); } boolean boolBtnRight = !digitalRead(pinBtnRight); if ( boolBtnRight ) { //Set key1 to the U key Keyboard.press( KEY_J ); } //Send all of the set keys. // Keyboard.send_now(); }
[ "kylemagocs@gmail.com" ]
kylemagocs@gmail.com
a746a232cd061276550b6887113cec0e6a1938a1
fe6e3b7fe54ffce519f83d076354f03681b87f94
/src/qt/openuridialog.cpp
fa656ad95de86391653261a5a13c92e3ea8576b0
[ "MIT" ]
permissive
lightpaycashproject/lightpaycash
311ff83dce2f813d52c481e283dde8f9eb5e01ff
d0187fde81b8414077ca863fab50265c0396d3de
refs/heads/master
2020-03-26T00:00:27.706354
2018-08-11T20:51:19
2018-08-11T20:51:19
144,303,030
1
0
null
null
null
null
UTF-8
C++
false
false
1,423
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018 The LightPayCash developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "openuridialog.h" #include "ui_openuridialog.h" #include "guiutil.h" #include "walletmodel.h" #include <QUrl> OpenURIDialog::OpenURIDialog(QWidget* parent) : QDialog(parent), ui(new Ui::OpenURIDialog) { ui->setupUi(this); #if QT_VERSION >= 0x040700 ui->uriEdit->setPlaceholderText("lightpaycash:"); #endif } OpenURIDialog::~OpenURIDialog() { delete ui; } QString OpenURIDialog::getURI() { return ui->uriEdit->text(); } void OpenURIDialog::accept() { SendCoinsRecipient rcp; if (GUIUtil::parseBitcoinURI(getURI(), &rcp)) { /* Only accept value URIs */ QDialog::accept(); } else { ui->uriEdit->setValid(false); } } void OpenURIDialog::on_selectFileButton_clicked() { QString filename = GUIUtil::getOpenFileName(this, tr("Select payment request file to open"), "", "", NULL); if (filename.isEmpty()) return; QUrl fileUri = QUrl::fromLocalFile(filename); ui->uriEdit->setText("lightpaycash:?r=" + QUrl::toPercentEncoding(fileUri.toString())); }
[ "akshaycm@hotmail.com" ]
akshaycm@hotmail.com
77e97d64e44a81843abe47badf86830a9a31f6d4
d161e85db8956d5b1b684dcc3e73ce02f4cf7e4a
/洛谷/p1403.cpp
fe3e03fe34e67b7ad7c44a6cbdaeabfd7f9c9f65
[]
no_license
Yuuoniy/Leetcode
c084fb9a659cf1d68411946328ac17909a44a2b2
bbc6edaa859dc322e55a741d5924d7b2490cb889
refs/heads/master
2022-02-20T18:27:59.438573
2019-09-17T12:48:33
2019-09-17T12:48:33
162,166,989
0
0
null
null
null
null
UTF-8
C++
false
false
180
cpp
#include <iostream> using namespace std; int n; int main(){ cin >> n; int ans = 0; for(int i = 1; i <= n; i++) { ans+=n/i; } cout << ans << endl; return 0; }
[ "linmq006@gmail.com" ]
linmq006@gmail.com
88d5c54b0c211c37ed34f19cdef1ea31a510e7da
bfa95d17eb7ed298f0c1a7e912e475d1b6796760
/p2es1.cpp
900a58f774ee70fb9cfb6aefc1de4b87552d46cb
[]
no_license
M9k/Esempi_P2
89ce4ae9a3f4875d295cc2cc4aa665ac15569076
3177d61a4eea27db1f752c4762a003f2d027a956
refs/heads/master
2020-05-21T08:49:05.383199
2017-02-15T16:42:46
2017-02-15T16:42:46
70,186,444
0
0
null
null
null
null
UTF-8
C++
false
false
1,218
cpp
vector<QAbstractButton*> fun(list<QWidget*>& l, const QSize& q) { vector<QAbstractButton*> rit; for(list<QWidget*>::const_iterator i=l.being(); i!=l.end(); ) { if(dynamic_cast<QCheckBox*>(*i) || dynamic_cast<QPushButton*>(*i)) { rit.push_back(static_cast<QAbstractButton*>(*i)); i = l.erase(i): } else { if((*i) && (*i).sizeHint() == q) l.push_front((*i)->clone()); if((*i) && !dynamic_cast<SAbstractSlider*>(*i) && (*i)->sizeHint() == q) { delete (*i); i = l.erase(i): } else i++; } } return rit; } vector<QAbstractButton*> fun(list<QWidget*>& l, const QSize& q) { vector<QAbstractButton*> rit; list<QWidget*>::const_iterator ultimo = --rit.end(); bool fine = false; for(list<QWidget*>::const_iterator i=l.being(); !fine; ) { if(dynamic_cast<QCheckBox*>(*i) || dynamic_cast<QPushButton*>(*i)) { rit.push_back(static_cast<QAbstractButton*>(*i)); i = l.erase(i): } else { if((*i) && (*i).sizeHint() == q) l.push_back((*i)->clone()); if((*i) && !dynamic_cast<SAbstractSlider*>(*i) && (*i)->sizeHint() == q) { delete (*i); i = l.erase(i): } else i++; } if(i == ultimo) fine = true; } return rit; }
[ "mcailotto96@gmail.com" ]
mcailotto96@gmail.com
63da6dad2b652d5c5df281d2234235f0a0c08e4c
0b0f7e759cb92e8ec435d74ac12b05c9907e0688
/include/hermes/VM/JSObject.h
3c9a57674d6b0a555f96eed2a0169885a955ecf3
[ "MIT" ]
permissive
Usamaliaquat123/hermes
42e1589cca6d3dc08166ca45df566cad816d89bf
67f2bb57ffa374eb984ea6f2fcab0ece41213df6
refs/heads/master
2020-11-26T23:41:40.810031
2019-12-20T07:17:57
2019-12-20T07:19:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
60,794
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifndef HERMES_VM_JSOBJECT_H #define HERMES_VM_JSOBJECT_H #include "hermes/VM/CallResult.h" #include "hermes/VM/Handle.h" #include "hermes/VM/HermesValue-inline.h" #include "hermes/VM/HiddenClass.h" #include "hermes/VM/Operations.h" #include "hermes/VM/PropertyDescriptor.h" #include "hermes/VM/TypesafeFlags.h" #include "hermes/VM/VTable.h" namespace hermes { namespace vm { union DefinePropertyFlags { struct { uint32_t enumerable : 1; uint32_t writable : 1; uint32_t configurable : 1; uint32_t setEnumerable : 1; uint32_t setWritable : 1; uint32_t setConfigurable : 1; uint32_t setGetter : 1; uint32_t setSetter : 1; uint32_t setValue : 1; /// If set, indicates that the \c internalSetter flag must be set to true. /// This is strictly for internal use only, inside the object model. uint32_t enableInternalSetter : 1; }; uint32_t _flags; /// Clear all flags on construction. DefinePropertyFlags() { _flags = 0; } /// \return true if all flags are clear. bool isEmpty() const { return _flags == 0; } /// Clear all bits. void clear() { _flags = 0; } /// \return true if this is an accessor. bool isAccessor() const { return setGetter || setSetter; } /// Return an instance of DefinePropertyFlags initialized for defining a /// "normal" property: writable, enumerable, configurable and setting its /// non-accessor value. static DefinePropertyFlags getDefaultNewPropertyFlags() { DefinePropertyFlags dpf{}; dpf.setEnumerable = 1; dpf.enumerable = 1; dpf.setWritable = 1; dpf.writable = 1; dpf.setConfigurable = 1; dpf.configurable = 1; dpf.setValue = 1; return dpf; } /// Return an instance of DefinePropertyFlags initialized for defining a /// property which is writable, configurable and non-enumerable, and setting /// its non-accessor value. static DefinePropertyFlags getNewNonEnumerableFlags() { DefinePropertyFlags dpf{}; dpf.setEnumerable = 1; dpf.enumerable = 0; dpf.setWritable = 1; dpf.writable = 1; dpf.setConfigurable = 1; dpf.configurable = 1; dpf.setValue = 1; return dpf; } }; /// Flags associated with an object. struct ObjectFlags { /// New properties cannot be added. uint32_t noExtend : 1; /// \c Object.seal() has been invoked on this object, marking all properties /// as non-configurable. When \c Sealed is set, \c NoExtend is always set too. uint32_t sealed : 1; /// \c Object.freeze() has been invoked on this object, marking all properties /// as non-configurable and non-writable. When \c Frozen is set, \c Sealed and /// must \c NoExtend are always set too. uint32_t frozen : 1; /// This object has indexed storage. This flag will not change at runtime, it /// is set at construction and its value never changes. It is not a state. uint32_t indexedStorage : 1; /// This flag is set to true when \c IndexedStorage is true and /// \c class->hasIndexLikeProperties are false. It allows our fast paths to do /// a simple bit check. uint32_t fastIndexProperties : 1; /// This flag indicates this is a special object whose properties are /// managed by C++ code, and not via the standard property storage /// mechanisms. uint32_t hostObject : 1; /// this is lazily created object that must be initialized before it can be /// used. Note that lazy objects must have no properties defined on them, uint32_t lazyObject : 1; static constexpr unsigned kHashWidth = 25; /// A non-zero object id value, assigned lazily. It is 0 before it is /// assigned. If an object started out as lazy, the objectID is the lazy /// object index used to identify when it gets initialized. uint32_t objectID : kHashWidth; ObjectFlags() { ::memset(this, 0, sizeof(*this)); } }; static_assert( sizeof(ObjectFlags) == sizeof(uint32_t), "ObjectFlags must be a single word"); /// \name PropOpFlags /// @{ /// Flags used when performing property access operations. /// /// \name ThrowOnError /// Throw a TypeError exception when one of the following conditions is /// encountered: /// - changing a read-only property /// - reconfigure a non-configurable property /// - adding a new property to non-extensible object /// - deleting a non-configurable property /// /// \name MustExist /// Throw a type error if the property doesn't exist. /// /// \name InternalForce /// Used to insert an internal property, forcing the insertion no matter what. /// @} #define HERMES_VM__LIST_PropOpFlags(FLAG) \ FLAG(ThrowOnError) \ FLAG(MustExist) \ FLAG(InternalForce) HERMES_VM__DECLARE_FLAGS_CLASS(PropOpFlags, HERMES_VM__LIST_PropOpFlags); /// \name OwnKeysFlags /// @{ /// Flags used when performing getOwnPropertyKeys operations. /// /// \name IncludeSymbols /// Include in the result keys which are formally (and in the implementation) /// Symbols. /// /// \name IncludeNonSymbols /// Include in the result keys which are formally Strings. In the /// implementation, these may actually be numbers or other non-String primitive /// types. /// /// \name IncludeNonEnumerable /// Normally only enumerable keys are included in the result. If this is set, /// include non-enumerable keys, too. The keys included will only be of the /// types specified by the above flags. /// /// Either or both of IncludeSymbols and IncludeNonSymbols may be /// specified. If neither is specified, this may cause an assertion /// failure if assertions are enabled. /// @} #define HERMES_VM__LIST_OwnKeysFlags(FLAG) \ FLAG(IncludeSymbols) \ FLAG(IncludeNonSymbols) \ FLAG(IncludeNonEnumerable) HERMES_VM__DECLARE_FLAGS_CLASS(OwnKeysFlags, HERMES_VM__LIST_OwnKeysFlags); // Any method that could potentially invoke the garbage collector, directly or // in-directly, cannot use a direct 'self' pointer and must instead use // Handle<JSObject>. struct ObjectVTable { VTable base; /// \return the range of indexes (end-exclusive) stored in indexed storage. std::pair<uint32_t, uint32_t> ( *getOwnIndexedRange)(JSObject *self, Runtime *runtime); /// Check whether property with index \p index exists in indexed storage and /// \return true if it does. bool (*haveOwnIndexed)(JSObject *self, Runtime *runtime, uint32_t index); /// Check whether property with index \p index exists in indexed storage and /// extract its \c PropertyFlags (if necessary checking whether the object is /// frozen or sealed). Only the \c enumerable, \c writable and /// \c configurable flags must be set in the result. /// \return PropertyFlags if the property exists. OptValue<PropertyFlags> (*getOwnIndexedPropertyFlags)( JSObject *self, Runtime *runtime, uint32_t index); /// Obtain an element from the "indexed storage" of this object. The storage /// itself is implementation dependent. /// \return the value of the element or "empty" if there is no such element. HermesValue ( *getOwnIndexed)(JSObject *self, Runtime *runtime, uint32_t index); /// Set an element in the "indexed storage" of this object. Depending on the /// semantics of the "indexed storage" the storage capacity may need to be /// expanded (e.g. affecting Array.length), or the write may simply be ignored /// (in the case of typed arrays). /// It is the responsibility of the implementation of the method to check /// whether the object is "frozen" and fail. Note that some objects cannot be /// frozen, so they don't need to perform that check. /// \param value the value to be stored. In some cases (like type arrays), it /// may need to be converted to a certain type. If the conversion fails, /// a default value will be stored instead, but the write will succeed /// (unless there was an exception when converting). /// \return true if the write succeeded, false if it was ignored because /// the element is read-only, or exception status. CallResult<bool> (*setOwnIndexed)( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index, Handle<> value); /// Delete an element in the "indexed storage". It is the responsibility of /// the implementation of the method to check whether the object is "sealed" /// and fail appropriately. Some objects cannot be frozen and don't need to /// perform that check at all. /// \return 'true' if the element was successfully deleted, or if it was /// outside of the storage range. 'false' if this storage doesn't support /// "holes"/deletion (e.g. typed arrays) or if the element is read-only. bool (*deleteOwnIndexed)( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index); /// Mode paramater to pass to \c checkAllOwnIndexed(). enum class CheckAllOwnIndexedMode { NonConfigurable, /// Both non-configurable and non-writable. ReadOnly, }; /// Check whether all indexed properties satisfy the requirement specified by /// \p mode. Either whether they are all non-configurable, or whether they are /// all both non-configurable and non-writable. bool (*checkAllOwnIndexed)( JSObject *self, Runtime *runtime, CheckAllOwnIndexedMode mode); }; /// This is the basic JavaScript Object class. All programmer-visible classes in /// JavaScript (like Array, Function, Arguments, Number, String, etc) inherit /// from it. At the highest level it is simply a collection of name/value /// property pairs while subclasses provide additional functionality. /// /// Subclasses can optionally implement "indexed storage". It is an efficient /// mechanism for storing properties whose names are valid array indexes /// according to ES5.1 sec 15.4. In other words, for storing arrays with an /// uint32_t index. If "indexed storage" is available, Object will use it when /// possible. /// /// If indexed storage is available, but a numeric property with unusual flags /// defined (e.g. non-enumerable, non-writable, etc), then the indexed storage /// has to be "shadowed" by a named property. If at least one such property /// exists, all indexed accesses must first check for a named property with the /// same name. It comes with a significant cost, but fortunately such accesses /// should be extremely rare. /// /// All methods for accessing and manipulating properties are split into two /// symmetrical groups: "named" and "computed". /// /// Named accessors require a SymbolID as the property name and can *ONLY* /// be used when either of these is true: /// a) the string representation of the name is not a valid array index /// according to ES5.1 sec 15.4. /// b) the object does not have "indexed storage". /// /// External users of the API cannot rely on b) so in practice "named" accessor /// must be used only when the property name is known in advance (at compile /// time) and is not an array index. Internally Object relies on b) to /// delegate the work to the proper call. /// /// Computed accessors allow any JavaScript value as the property name. /// Conceptually the name is converted to a string (using ToString as defined /// by the spec) and the string is used as a property key. In practice, /// integer values are detected and used with the "indexed storage", if /// available. class JSObject : public GCCell { friend void ObjectBuildMeta(const GCCell *cell, Metadata::Builder &mb); protected: /// A light-weight constructor which performs no GC allocations. Its purpose /// to make sure all fields are initialized according to C++ without writing /// to them twice. template <typename NeedsBarriers> JSObject( Runtime *runtime, const VTable *vtp, JSObject *parent, HiddenClass *clazz, NeedsBarriers needsBarriers) : GCCell(&runtime->getHeap(), vtp), parent_(runtime, parent, &runtime->getHeap(), needsBarriers), clazz_(runtime, clazz, &runtime->getHeap(), needsBarriers), propStorage_(runtime, nullptr, &runtime->getHeap(), needsBarriers) {} /// Until we apply the NeedsBarriers pattern to all subtypes of JSObject, we /// will need versions that do not take the extra NeedsBarrier argument /// (defaulting to NoBarriers). JSObject( Runtime *runtime, const VTable *vtp, JSObject *parent, HiddenClass *clazz) : JSObject(runtime, vtp, parent, clazz, GCPointerBase::NoBarriers()) {} public: #ifdef HERMESVM_SERIALIZE /// A constructor used by deserializeion which performs no GC allocation. JSObject(Deserializer &d, const VTable *vtp); static void serializeObjectImpl(Serializer &s, const GCCell *cell); #endif static ObjectVTable vt; /// Default capacity of indirect property storage. static const PropStorage::size_type DEFAULT_PROPERTY_CAPACITY = 4; /// Number of property slots used by the implementation that are unnamed, /// meaning they are invisible to user code. Child classes should override /// this value by adding to it and defining a constant with the same name. static const PropStorage::size_type ANONYMOUS_PROPERTY_SLOTS = 0; /// Number of property slots used by the implementation that are named, /// meaning they are also visible to user code. Child classes should override /// this value by adding to it and defining a constant with the same name. static const PropStorage::size_type NAMED_PROPERTY_SLOTS = 0; /// Number of property slots allocated directly inside the object. static const PropStorage::size_type DIRECT_PROPERTY_SLOTS = 4; static bool classof(const GCCell *cell) { return kindInRange( cell->getKind(), CellKind::ObjectKind_first, CellKind::ObjectKind_last); } /// Attempts to allocate a JSObject with the given prototype. /// If allocation fails, the GC declares an OOM. static PseudoHandle<JSObject> create( Runtime *runtime, Handle<JSObject> parentHandle); /// Attempts to allocate a JSObject with the standard Object prototype. /// If allocation fails, the GC declares an OOM. static PseudoHandle<JSObject> create(Runtime *runtime); /// Attempts to allocate a JSObject with the standard Object prototype and /// property storage preallocated. If allocation fails, the GC declares an /// OOM. /// \param propertyCount number of property storage slots preallocated. static PseudoHandle<JSObject> create( Runtime *runtime, unsigned propertyCount); /// Allocates a JSObject with the given hidden class and property storage /// preallocated. If allocation fails, the GC declares an /// OOM. /// \param clazz the hidden class for the new object. static PseudoHandle<JSObject> create( Runtime *runtime, Handle<HiddenClass> clazz); /// Attempts to allocate a JSObject and returns whether it succeeded or not. /// NOTE: This function always returns \c ExecutionStatus::RETURNED, it is /// only used in interfaces where other creators may throw a JS exception. static CallResult<HermesValue> createWithException( Runtime *runtime, Handle<JSObject> parentHandle); ~JSObject() = default; /// Allocate an instance of property storage with the specified size. static inline ExecutionStatus allocatePropStorage( Handle<JSObject> selfHandle, Runtime *runtime, PropStorage::size_type size); /// Allocate an instance of property storage with the specified size. /// If an allocation is required, a handle is allocated internally and the /// updated self value is returned. This means that the return value MUST /// be used by the caller. static inline CallResult<PseudoHandle<JSObject>> allocatePropStorage( PseudoHandle<JSObject> self, Runtime *runtime, PropStorage::size_type size); /// Allocate an instance of property storage that can hold all internal /// properties, which must fit inside the direct property slots. /// \return a copy of self for convenience. template <typename T> static inline T *allocateSmallPropStorage(T *self); /// ES9 9.1 O.[[Extensible]] internal slot bool isExtensible() const { return !flags_.noExtend; } /// true if this a lazy object that must be initialized prior to use. bool isLazy() const { return flags_.lazyObject; } /// \return true if this is a HostObject. bool isHostObject() const { return flags_.hostObject; } /// \return the `__proto__` internal property, which may be nullptr. JSObject *getParent(Runtime *runtime) const { return parent_.get(runtime); } /// \return the hidden class of this object. HiddenClass *getClass(PointerBase *base) const { return clazz_.getNonNull(base); } /// \return the hidden class of this object. const GCPointer<HiddenClass> &getClassGCPtr() const { return clazz_; } /// \return the object ID. Assign one if not yet exist. This ID can be used /// in Set or Map where hashing is required. We don't assign object an ID /// until we actually need it. An exception is lazily created objects where /// the object id is the provided lazy object index which is used when the /// object gets initialized. static ObjectID getObjectID(JSObject *self, Runtime *runtime); static void initializeLazyObject( Runtime *runtime, Handle<JSObject> lazyObject); /// Get the objectID, which must already have been assigned using \c /// getObjectID(). ObjectID getAlreadyAssignedObjectID() const { assert(flags_.objectID && "ObjectID hasn't been assigned yet"); return flags_.objectID; } /// Whether the set of properties owned by this object is uniquely defined /// by the identity of its hidden class. inline bool shouldCacheForIn(Runtime *runtime) const; /// Sets the internal prototype property. This corresponds to ES9 9.1.2.1 /// OrdinarySetPrototypeOf. /// - Does nothing if the value doesn't change. /// - Fails if the object isn't extensible /// - Fails if it detects a prototype cycle. /// If opFlags.getThrowOnError() is true, then this will throw an appropriate /// TypeError for the above failures. If false, then it will just return /// false. If \c self is a Proxy with a trap, and the trap throws an /// exception, that exception will be propagated regardless. static CallResult<bool> setParent( JSObject *self, Runtime *runtime, JSObject *parent, PropOpFlags opFlags = PropOpFlags()); /// Return a reference to an internal property slot. static GCHermesValue & internalPropertyRef(JSObject *self, PointerBase *base, SlotIndex index) { assert( HiddenClass::debugIsPropertyDefined( self->clazz_.get(base), base, InternalProperty::getSymbolID(index)) && "internal slot must be reserved"); return namedSlotRef<PropStorage::Inline::Yes>(self, base, index); } static HermesValue getInternalProperty(JSObject *self, PointerBase *base, SlotIndex index) { return internalPropertyRef(self, base, index); } static void setInternalProperty( JSObject *self, Runtime *runtime, SlotIndex index, HermesValue value) { assert( HiddenClass::debugIsPropertyDefined( self->clazz_.get(runtime), runtime, InternalProperty::getSymbolID(index)) && "internal slot must be reserved"); return setNamedSlotValue<PropStorage::Inline::Yes>( self, runtime, index, value); } /// By default, returns a list of enumerable property names and symbols /// belonging to this object. Indexed property names will be represented as /// numbers for efficiency. The order of properties follows ES2015 - first /// properties whose string names look like indexes, in numeric order, then /// strings, in insertion order, then symbols, in insertion order. \p /// okFlags can be used to exclude names and/or symbols, or include /// non-enumerable properties. /// \returns a JSArray containing the names. static CallResult<Handle<JSArray>> getOwnPropertyKeys( Handle<JSObject> selfHandle, Runtime *runtime, OwnKeysFlags okFlags); /// Return a list of property names belonging to this object. Indexed property /// names will be represented as numbers for efficiency. The order of /// properties follows ES2015 - first properties whose string names look like /// indexes, in numeric order, then the rest, in insertion order. /// \param onlyEnumerable if true, only enumerable properties will be /// returned. /// \returns a JSArray containing the names. static CallResult<Handle<JSArray>> getOwnPropertyNames( Handle<JSObject> selfHandle, Runtime *runtime, bool onlyEnumerable) { return getOwnPropertyKeys( selfHandle, runtime, OwnKeysFlags().plusIncludeNonSymbols().setIncludeNonEnumerable( !onlyEnumerable)); } /// Return a list of property symbols keys belonging to this object. /// The order of properties follows ES2015 - insertion order. /// \returns a JSArray containing the symbols. static CallResult<Handle<JSArray>> getOwnPropertySymbols( Handle<JSObject> selfHandle, Runtime *runtime) { return getOwnPropertyKeys( selfHandle, runtime, OwnKeysFlags().plusIncludeSymbols().plusIncludeNonEnumerable()); } /// Return a reference to a slot in the "named value" storage space by /// \p index. /// \pre inl == PropStorage::Inline::Yes -> index < /// PropStorage::kValueToSegmentThreshold. template <PropStorage::Inline inl = PropStorage::Inline::No> static GCHermesValue & namedSlotRef(JSObject *self, PointerBase *runtime, SlotIndex index); /// Load a value from the "named value" storage space by \p index. /// \pre inl == PropStorage::Inline::Yes -> index < /// PropStorage::kValueToSegmentThreshold. template <PropStorage::Inline inl = PropStorage::Inline::No> static HermesValue getNamedSlotValue(JSObject *self, PointerBase *runtime, SlotIndex index) { return namedSlotRef<inl>(self, runtime, index); } /// Load a value from the "named value" storage space by the slot described by /// the property descriptor \p desc. static HermesValue getNamedSlotValue( JSObject *self, PointerBase *runtime, NamedPropertyDescriptor desc) { return getNamedSlotValue(self, runtime, desc.slot); } /// Store a value to the "named value" storage space by \p index. /// \pre inl == PropStorage::Inline::Yes -> index < /// PropStorage::kValueToSegmentThreshold. template <PropStorage::Inline inl = PropStorage::Inline::No> static void setNamedSlotValue( JSObject *self, Runtime *runtime, SlotIndex index, HermesValue value); /// Store a value to the "named value" storage space by the slot described by /// \p desc. static void setNamedSlotValue( JSObject *self, Runtime *runtime, NamedPropertyDescriptor desc, HermesValue value) { setNamedSlotValue(self, runtime, desc.slot, value); } /// Load a value using a named descriptor. Read the value either from /// named storage or indexed storage depending on the presence of the /// "Indexed" flag. Call the getter function if it's defined. /// \param selfHandle the object we are loading the property from /// \param propObj the object where the property was found (it could be /// anywhere along the prototype chain). /// \param desc the property descriptor. static CallResult<HermesValue> getNamedPropertyValue_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<JSObject> propObj, NamedPropertyDescriptor desc); /// Load a value using a computed descriptor. Read the value either from /// named storage or indexed storage depending on the presence of the /// "Indexed" flag. This does not call the getter, and can be used to /// retrieve the accessor directly. static HermesValue getComputedSlotValue( JSObject *self, Runtime *runtime, ComputedPropertyDescriptor desc); /// Store a value using a computed descriptor. Store the value either to /// named storage or indexed storage depending on the presence of the /// "Indexed" flag. This does not call the setter, and can be used to /// set the accessor directly. The \p gc parameter is necessary for write /// barriers. LLVM_NODISCARD static ExecutionStatus setComputedSlotValue( Handle<JSObject> selfHandle, Runtime *runtime, ComputedPropertyDescriptor desc, Handle<> value); /// Load a value using a computed descriptor. Read the value either from /// named storage or indexed storage depending on the presence of the /// "Indexed" flag. Call the getter function if it's defined. /// \param selfHandle the object we are loading the property from /// \param propObj the object where the property was found (it could be /// anywhere along the prototype chain). /// \param desc the property descriptor. static CallResult<HermesValue> getComputedPropertyValue_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<JSObject> propObj, ComputedPropertyDescriptor desc); /// This adds some functionality to the other overload. If propObj /// is empty, then this returns an empty HermesValue. If propObj is /// a normal object, this behaves just like the other overload. /// (TODO: Document how this is to be used when it's fully baked, /// which it isn't yet.) static CallResult<HermesValue> getComputedPropertyValue_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<JSObject> propObj, ComputedPropertyDescriptor desc, Handle<> nameValHandle); /// ES5.1 8.12.1. /// Extract a descriptor \p desc of an own named property \p name. static bool getOwnNamedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc); /// ES5.1 8.12.1. /// An opportunistic fast path of \c getOwnNamedDescriptor(). If certain /// implementation-dependent conditions are met, it can look up a property /// quickly and succeed. If it fails, the "slow path" - \c /// getOwnNamedDescriptor() must be used. /// \return true or false if a definitive answer can be provided, llvm::None /// if the result is unknown. static OptValue<bool> tryGetOwnNamedDescriptorFast( JSObject *self, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc); /// Tries to get a property without doing any allocation, while searching the /// prototype chain. /// If the property cannot be found on this object or any of its prototypes, /// or if this object's HiddenClass has an uninitialized property map, returns /// \p llvm::None. static OptValue<HermesValue> tryGetNamedNoAlloc(JSObject *self, PointerBase *base, SymbolID name); /// ES5.1 8.12.1. /// \param nameValHandle the name of the property. It must be a primitive. static CallResult<bool> getOwnComputedPrimitiveDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, ComputedPropertyDescriptor &desc); /// Provides the functionality of ES9 [[GetOwnProperty]] on selfHandle. It /// calls getOwnComputedPrimitiveDescriptor() in the case when \p /// nameValHandle may be an object. We will need to call toString() on the /// object first before we invoke getOwnComputedPrimitiveDescriptor(), to /// ensure the side-effect only happens once. If selfHandle is a proxy, this /// will fill \p desc with the descriptor as specified in ES9 9.5.5, and /// return true if the descriptor is defined. static CallResult<bool> getOwnComputedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, ComputedPropertyDescriptor &desc); /// Like the other overload, except valueOrAccessor will be set to a value or /// PropertyAccessor corresponding to \p desc.flags. static CallResult<bool> getOwnComputedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, ComputedPropertyDescriptor &desc, MutableHandle<> &valueOrAccessor); /// ES5.1 8.12.2. /// Extract a descriptor \p desc of a named property \p name in this object /// or along the prototype chain. /// \param expectedFlags if valid, we are searching for a property which, if /// not found, we would create with these specific flags. This can speed /// up the search in the negative case - when the property doesn't exist. /// \return the object instance containing the property, or nullptr. static JSObject *getNamedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropertyFlags expectedFlags, NamedPropertyDescriptor &desc); /// ES5.1 8.12.2. /// Wrapper around \c getNamedDescriptor() passing \c false to \c /// forPutNamed. static JSObject *getNamedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc); /// ES5.1 8.12.2. /// Extract a descriptor \p desc of a named property \p name in this object /// or along the prototype chain. /// \param nameValHandle the name of the property. It must be a primitive. /// \param[out] propObj it is set to the object in the prototype chain /// containing the property, or \c null if we didn't find the property. /// \param[out] desc if the property was found, set to the property /// descriptor. static ExecutionStatus getComputedPrimitiveDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, MutableHandle<JSObject> &propObj, ComputedPropertyDescriptor &desc); /// A wrapper to getComputedPrimitiveDescriptor() in the case when /// \p nameValHandle may be an object, in which case we need to call /// \c toString() before we invoke getComputedPrimitiveDescriptor(), to /// ensure the side-effect only happens once. /// The values of the output parameters are not defined if the call terminates /// with an exception. /// \param nameValHandle the name of the property. /// \param[out] propObj if the method terminates without an exception, it is /// set to the object in the prototype chain containing the property, or /// \c null if we didn't find the property. /// \param[out] desc if the property was found, set to the property /// descriptor. static ExecutionStatus getComputedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, MutableHandle<JSObject> &propObj, ComputedPropertyDescriptor &desc); /// The following three methods implement ES5.1 8.12.3. /// getNamed is an optimized path for getting a property with a SymbolID when /// it is statically known that the SymbolID is not index-like. /// If \p cacheEntry is not null, and the result is suitable for use in a /// property cache, populate the cache. static CallResult<HermesValue> getNamed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropOpFlags opFlags = PropOpFlags(), PropertyCacheEntry *cacheEntry = nullptr); /// Like getNamed, but with a \c receiver. The receiver is /// generally only relevant when JavaScript code is executed. If an /// accessor is used, \c receiver is used as the \c this for the /// function call. If a proxy trap is called, \c receiver is passed /// to the trap function. Normally, \c receiver is the same as \c /// selfHandle, but it can be different when using \c Reflect. static CallResult<HermesValue> getNamedWithReceiver_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, Handle<> receiver, PropOpFlags opFlags = PropOpFlags(), PropertyCacheEntry *cacheEntry = nullptr); // getNamedOrIndexed accesses a property with a SymbolIDs which may be // index-like. static CallResult<HermesValue> getNamedOrIndexed( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropOpFlags opFlags = PropOpFlags()); /// getComputed accesses a property with an arbitrary object key, implementing /// ES5.1 8.12.3 in full generality. static CallResult<HermesValue> getComputed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle); /// getComputed accesses a property with an arbitrary object key and /// receiver value. static CallResult<HermesValue> getComputedWithReceiver_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, Handle<> receiver); /// The following three methods implement ES5.1 8.12.6 /// hasNamed is an optimized path for checking existence of a property /// for SymbolID when it is statically known that the SymbolIDs is not /// index-like. static CallResult<bool> hasNamed(Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name); /// hasNamedOrIndexed checks existence of a property for a SymbolID which may /// be index-like. static CallResult<bool> hasNamedOrIndexed( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name); /// hasComputed checks existence of a property for arbitrary object key static CallResult<bool> hasComputed( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle); /// The following five methods implement ES5.1 8.12.5. /// putNamed is an optimized path for setting a property with a SymbolID when /// it is statically known that the SymbolID is not index-like. static CallResult<bool> putNamed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, Handle<> valueHandle, PropOpFlags opFlags = PropOpFlags()); /// like putNamed, but with a receiver static CallResult<bool> putNamedWithReceiver_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, Handle<> valueHandle, Handle<> receiver, PropOpFlags opFlags = PropOpFlags()); /// putNamedOrIndexed sets a property with a SymbolID which may be index-like. static CallResult<bool> putNamedOrIndexed( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, Handle<> valueHandle, PropOpFlags opFlags = PropOpFlags()); /// putComputed sets a property with an arbitrary object key. static CallResult<bool> putComputed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, Handle<> valueHandle, PropOpFlags opFlags = PropOpFlags()); /// putComputed sets a property with an arbitrary object key and receiver /// value static CallResult<bool> putComputedWithReceiver_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, Handle<> valueHandle, Handle<> receiver, PropOpFlags opFlags = PropOpFlags()); /// ES5.1 8.12.7. static CallResult<bool> deleteNamed( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropOpFlags opFlags = PropOpFlags()); /// ES5.1 8.12.7. static CallResult<bool> deleteComputed( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, PropOpFlags opFlags = PropOpFlags()); /// Calls ObjectVTable::getOwnIndexed. static HermesValue getOwnIndexed(JSObject *self, Runtime *runtime, uint32_t index) { return self->getVT()->getOwnIndexed(self, runtime, index); } /// Calls ObjectVTable::setOwnIndexed. static CallResult<bool> setOwnIndexed( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index, Handle<> value) { return selfHandle->getVT()->setOwnIndexed( selfHandle, runtime, index, value); } /// Calls ObjectVTable::deleteOwnIndexed. static bool deleteOwnIndexed( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index) { return selfHandle->getVT()->deleteOwnIndexed(selfHandle, runtime, index); } /// Calls ObjectVTable::checkAllOwnIndexed. static bool checkAllOwnIndexed( JSObject *self, Runtime *runtime, ObjectVTable::CheckAllOwnIndexedMode mode) { return self->getVT()->checkAllOwnIndexed(self, runtime, mode); } /// Define a new property or update an existing one following the rules /// described in ES5.1 8.12.9. /// \param dpFlags flags which in conjuction with the rules of ES5.1 8.12.9 /// describing how the property flags of an existing property should be /// updated or the flags of a new property should be initialized. /// \param valueOrAccessor the value of the new property. If the property is /// an accessor, it should be an instance of \c PropertyAccessor. /// \param opFlags flags modifying the behavior in case of error. /// \return \c true on success. In case of failure it returns an exception /// or false, depending on the value of \c opFlags.ThrowOnError. /// Note: This can throw even if ThrowOnError is false, /// because ThrowOnError is only for specific kinds of errors, /// and this function will not swallow other kinds of errors. static CallResult<bool> defineOwnProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, DefinePropertyFlags dpFlags, Handle<> valueOrAccessor, PropOpFlags opFlags = PropOpFlags()); /// Define a new property, which must not already exist in this object. /// This is similar in intent to ES5.1 \c defineOwnProperty(), but is simpler /// and faster since it doesn't support updating of properties. It doesn't /// need to search for an existing property and it doesn't need the /// complicated set of rules in ES5.1 8.12.9 describing how to synthesize or /// update \c PropertyFlags based on instructions in \c DefinedPropertyFlags. /// /// It is frequently possible to use this method when defining properties of /// an object that the caller created since in that case the caller has full /// control over the properties in the object (and the prototype chain /// doesn't matter). /// /// \param propertyFlags the actual, final, value of \c PropertyFlags that /// will be stored in the property descriptor. /// \param valueOrAccessor the value of the new property. LLVM_NODISCARD static ExecutionStatus defineNewOwnProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropertyFlags propertyFlags, Handle<> valueOrAccessor); /// ES5.1 8.12.9. /// \param nameValHandle the name of the property. It must be a primitive. static CallResult<bool> defineOwnComputedPrimitive( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, DefinePropertyFlags dpFlags, Handle<> valueOrAccessor, PropOpFlags opFlags = PropOpFlags()); /// ES5.1 8.12.9. /// A wrapper to \c defineOwnComputedPrimitive() in case \p nameValHandle is /// an object. /// We will need to call toString() on the object first before we invoke /// \c defineOwnComputedPrimitive(), to ensure the side-effect only happens /// once. static CallResult<bool> defineOwnComputed( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, DefinePropertyFlags dpFlags, Handle<> valueOrAccessor, PropOpFlags opFlags = PropOpFlags()); /// ES5.1 15.2.3.8. /// Make all own properties non-configurable. /// Set [[Extensible]] to false. static ExecutionStatus seal(Handle<JSObject> selfHandle, Runtime *runtime); /// ES5.1 15.2.3.9. /// Make all own properties non-configurable. /// Make all own data properties (not accessors) non-writable. /// Set [[Extensible]] to false. static ExecutionStatus freeze(Handle<JSObject> selfHandle, Runtime *runtime); /// ES5.1 15.2.3.10. /// Set [[Extensible]] slot on an ordinary object to false, preventing adding /// more properties. static void preventExtensions(JSObject *self); /// ES9 [[PreventExtensons]] internal method. This works on Proxy /// objects and ordinary objects. If opFlags.getThrowOnError() is /// true, then this will throw an appropriate TypeError if the /// method would have returned false. static CallResult<bool> preventExtensions( Handle<JSObject> selfHandle, Runtime *runtime, PropOpFlags opFlags = PropOpFlags()); /// ES9 9.1.3 [[IsExtensible]] internal method /// No properties are can be added. This also handles the Proxy case. static CallResult<bool> isExtensible( PseudoHandle<JSObject> self, Runtime *runtime); /// ES5.1 15.2.3.11. /// No properties are configurable. /// [[Extensible]] is false. static bool isSealed(PseudoHandle<JSObject> self, Runtime *runtime); /// ES5.1 15.2.3.12. /// No properties are configurable. /// No data properties (not accessors) are writable. /// [[Extensible]] is false. static bool isFrozen(PseudoHandle<JSObject> self, Runtime *runtime); /// Update the property flags in the list \p props on \p selfHandle, /// with provided \p flagsToClear and \p flagsToSet, and if it is not /// provided, update all properties. /// This method is efficient in updating multiple properties than updating /// them one by one because it creates at most one hidden class and mutates /// that hidden class without creating new transitions under the hood. /// \p flagsToClear and \p flagsToSet are masks for updating the property /// flags. /// \p props is a list of SymbolIDs for properties that need to be /// updated. It should contain a subset of properties in the object, so /// the SymbolIDs won't get freed by gc. It is optional; if it is llvm::None, /// update every property. static void updatePropertyFlagsWithoutTransitions( Handle<JSObject> selfHandle, Runtime *runtime, PropertyFlags flagsToClear, PropertyFlags flagsToSet, OptValue<llvm::ArrayRef<SymbolID>> props); /// First call \p indexedCB, passing each indexed property's \c uint32_t /// index and \c ComputedPropertyDescriptor. Then call \p namedCB passing each /// named property's \c SymbolID and \c NamedPropertyDescriptor as /// parameters. /// The callbacks return true to continue or false to stop immediately. /// /// Obviously the callbacks shouldn't be doing naughty things like modifying /// the property map or creating new hidden classes (even implicitly). /// /// A marker for the current gcScope is obtained in the beginning and the /// scope is flushed after every callback. /// \return false if the callback returned false, true otherwise. template <typename IndexedCB, typename NamedCB> static bool forEachOwnPropertyWhile( Handle<JSObject> selfHandle, Runtime *runtime, const IndexedCB &indexedCB, const NamedCB &namedCB); /// Return the type name of this object, if it can be found heuristically. /// There is no one definitive type name for an object. If no heuristic is /// able to produce a name, the empty string is returned. std::string getHeuristicTypeName(GC *gc); /// Accesses the name property on an object, returns the empty string if it /// doesn't exist or isn't a string. std::string getNameIfExists(PointerBase *base); protected: /// @name Virtual function implementations /// @{ /// Add an estimate of the type name for this object as the name in heap /// snapshots. static std::string _snapshotNameImpl(GCCell *cell, GC *gc); /// Add user-visible property names to a snapshot. static void _snapshotAddEdgesImpl(GCCell *cell, GC *gc, HeapSnapshot &snap); /// \return the range of indexes (end-exclusive) stored in indexed storage. static std::pair<uint32_t, uint32_t> _getOwnIndexedRangeImpl( JSObject *self, Runtime *runtime); /// Check whether property with index \p index exists in indexed storage and /// \return true if it does. static bool _haveOwnIndexedImpl(JSObject *self, Runtime *runtime, uint32_t index); /// Check whether property with index \p index exists in indexed storage and /// extract its \c PropertyFlags (if necessary checking whether the object is /// frozen or sealed). /// \return PropertyFlags if the property exists. static OptValue<PropertyFlags> _getOwnIndexedPropertyFlagsImpl( JSObject *self, Runtime *runtime, uint32_t index); /// Obtain an element from the "indexed storage" of this object. The storage /// itself is implementation dependent. /// \return the value of the element or "empty" if there is no such element. static HermesValue _getOwnIndexedImpl(JSObject *self, Runtime *runtime, uint32_t index); /// Set an element in the "indexed storage" of this object. Depending on the /// semantics of the "indexed storage" the storage capacity may need to be /// expanded (e.g. affecting Array.length), or the write may simply be ignored /// (in the case of typed arrays). /// \return true if the write succeeded, or false if it was ignored. static CallResult<bool> _setOwnIndexedImpl( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index, Handle<> value); /// Delete an element in the "indexed storage". /// \return 'true' if the element was successfully deleted, or if it was /// outside of the storage range. 'false' if this storage doesn't support /// "holes"/deletion (e.g. typed arrays). static bool _deleteOwnIndexedImpl( Handle<JSObject> selfHandle, Runtime *runtime, uint32_t index); /// Check whether all indexed properties satisfy the requirement specified by /// \p mode. Either whether they are all non-configurable, or whether they are /// all both non-configurable and non-writable. static bool _checkAllOwnIndexedImpl( JSObject *self, Runtime *runtime, ObjectVTable::CheckAllOwnIndexedMode mode); /// @} private: // Internal API const ObjectVTable *getVT() const { return reinterpret_cast<const ObjectVTable *>(GCCell::getVT()); } /// Allocate storage for a new slot after the slot index itself has been /// allocated by the hidden class. /// Note that slot storage is never truly released once allocated. Released /// storage slots are put into a free list. static void allocateNewSlotStorage( Handle<JSObject> selfHandle, Runtime *runtime, SlotIndex newSlotIndex, Handle<> valueHandle); /// Look for a property and return a \c PropertyPos identifying it and store /// its descriptor in \p desc. /// \param expectedFlags if valid, we are searching for a property which, if /// not found, we would create with these specific flags. This can speed /// up the search in the negative case - when the property doesn't exist. static OptValue<HiddenClass::PropertyPos> findProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropertyFlags expectedFlags, NamedPropertyDescriptor &desc); /// Look for a property and return a \c PropertyPos identifying it and store /// its descriptor in \p desc. static OptValue<HiddenClass::PropertyPos> findProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc); /// ES5.1 8.12.9. static CallResult<bool> addOwnProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, DefinePropertyFlags dpFlags, Handle<> valueOrAccessor, PropOpFlags opFlags); /// Performs the actual adding of the property for \c addOwnProperty() static ExecutionStatus addOwnPropertyImpl( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropertyFlags propertyFlags, Handle<> valueOrAccessor); /// ES5.1 8.12.9. static CallResult<bool> updateOwnProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, HiddenClass::PropertyPos propertyPos, NamedPropertyDescriptor desc, DefinePropertyFlags dpFlags, Handle<> valueOrAccessor, PropOpFlags opFlags); /// The result of \c checkPropertyUpdate. enum class PropertyUpdateStatus { /// The property cannot be updated. failed, /// The update only required changing the property flags, which was done. done, /// The update is valid: the property flags were changed but the property /// value needs to be set by the caller. needSet }; /// Check whether a property can be updated based on the rules in /// ES5.1 8.12.9. If the update is valid, return the updated property flags /// and a value indicating whether the property value needs to be set as well. /// If the update cannot be performed, the call will either raise an exception /// or return failure, depending on \c PropOpFlags.throwOnError. /// /// \param currentFlags the current property flags. /// \param curValueOrAccessor the current value of the property. /// \return a pair of the updated property flags and a status, where the /// status is one of: /// * \c PropertyUpdateStatus::failed if the update cannot be performed. /// * \c PropertyUpdateStatus::done if the update only required changing the // property flags. /// * \c PropertyUpdateStatus::needSet if the update is valid and the value /// of the property must now be set by the caller. static CallResult<std::pair<PropertyUpdateStatus, PropertyFlags>> checkPropertyUpdate( Runtime *runtime, PropertyFlags currentFlags, DefinePropertyFlags dpFlags, HermesValue curValueOrAccessor, Handle<> valueOrAccessor, PropOpFlags opFlags); /// Calls ObjectVTable::getOwnIndexedRange. static std::pair<uint32_t, uint32_t> getOwnIndexedRange( JSObject *self, Runtime *runtime); /// Calls ObjectVTable::haveOwnIndexed. static bool haveOwnIndexed(JSObject *self, Runtime *runtime, uint32_t index); /// Calls ObjectVTable::getOwnIndexedPropertyFlags. static OptValue<PropertyFlags> getOwnIndexedPropertyFlags(JSObject *self, Runtime *runtime, uint32_t index); /// A handler called when a data descriptor has the \c internalSetter flag /// set. It is invoked instead of updating the actual property value. The /// handler can update the property value by calling \c setNamedSlotValue() if /// it didn't manipulate the property storage. /// \returns a result logically equivalent to the result of \c putNamed(). static CallResult<bool> internalSetter( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor desc, Handle<> value, PropOpFlags opFlags); protected: /// Flags affecting the entire object. ObjectFlags flags_{}; /// The prototype of this object. GCPointer<JSObject> parent_; /// The dynamically derived "class" of the object, describing its fields in /// order. GCPointer<HiddenClass> clazz_{}; /// Storage for property values. GCPointer<PropStorage> propStorage_{}; /// Storage for direct property slots. GCHermesValue directProps_[DIRECT_PROPERTY_SLOTS]; }; /// \return an array that contains all enumerable properties of obj (including /// those of its prototype etc.) at the indices [beginIndex, endIndex) (any /// other part of the array is implementation-defined). /// \param[out] beginIndex beginning of the range of indices storing names /// \param[out] endIndex end (exclusive) of the range of indices storing names CallResult<Handle<BigStorage>> getForInPropertyNames( Runtime *runtime, Handle<JSObject> obj, uint32_t &beginIndex, uint32_t &endIndex); /// This object is the value of a property which has a getter and/or setter. class PropertyAccessor final : public GCCell { protected: PropertyAccessor(Runtime *runtime, Callable *getter, Callable *setter) : GCCell(&runtime->getHeap(), &vt), getter(runtime, getter, &runtime->getHeap()), setter(runtime, setter, &runtime->getHeap()) {} public: #ifdef HERMESVM_SERIALIZE /// Fast constructor used by deserialization. Don't do any GC allocation. Only /// calls super Constructor. PropertyAccessor(Deserializer &d); #endif static VTable vt; static bool classof(const GCCell *cell) { return cell->getKind() == CellKind::PropertyAccessorKind; } GCPointer<Callable> getter{}; GCPointer<Callable> setter{}; static CallResult<HermesValue> create(Runtime *runtime, Handle<Callable> getter, Handle<Callable> setter); }; //===----------------------------------------------------------------------===// // Object inline methods. template <typename IndexedCB, typename NamedCB> bool JSObject::forEachOwnPropertyWhile( Handle<JSObject> selfHandle, Runtime *runtime, const IndexedCB &indexedCB, const NamedCB &namedCB) { auto range = getOwnIndexedRange(*selfHandle, runtime); GCScopeMarkerRAII gcMarker{runtime}; for (auto i = range.first; i != range.second; ++i) { auto optPF = getOwnIndexedPropertyFlags(*selfHandle, runtime, i); if (!optPF) continue; ComputedPropertyDescriptor desc{*optPF, i}; desc.flags.indexed = true; if (!indexedCB(runtime, i, desc)) return false; gcMarker.flush(); } return HiddenClass::forEachPropertyWhile( runtime->makeHandle(selfHandle->clazz_), runtime, namedCB); } inline ExecutionStatus JSObject::allocatePropStorage( Handle<JSObject> selfHandle, Runtime *runtime, PropStorage::size_type size) { if (LLVM_LIKELY(size <= DIRECT_PROPERTY_SLOTS)) return ExecutionStatus::RETURNED; auto res = PropStorage::create( runtime, size - DIRECT_PROPERTY_SLOTS, size - DIRECT_PROPERTY_SLOTS); if (LLVM_UNLIKELY(res == ExecutionStatus::EXCEPTION)) return ExecutionStatus::EXCEPTION; selfHandle->propStorage_.set( runtime, vmcast<PropStorage>(*res), &runtime->getHeap()); return ExecutionStatus::RETURNED; } inline CallResult<PseudoHandle<JSObject>> JSObject::allocatePropStorage( PseudoHandle<JSObject> self, Runtime *runtime, PropStorage::size_type size) { if (LLVM_LIKELY(size <= DIRECT_PROPERTY_SLOTS)) return self; auto selfHandle = toHandle(runtime, std::move(self)); if (LLVM_UNLIKELY( allocatePropStorage(selfHandle, runtime, size) == ExecutionStatus::EXCEPTION)) { return ExecutionStatus::EXCEPTION; } return PseudoHandle<JSObject>(selfHandle); } template <typename T> inline T *JSObject::allocateSmallPropStorage(T *self) { constexpr auto count = T::ANONYMOUS_PROPERTY_SLOTS + T::NAMED_PROPERTY_SLOTS; static_assert( count <= DIRECT_PROPERTY_SLOTS, "smallPropStorage size must fit in direct properties"); return self; } template <PropStorage::Inline inl> inline GCHermesValue & JSObject::namedSlotRef(JSObject *self, PointerBase *runtime, SlotIndex index) { if (LLVM_LIKELY(index < DIRECT_PROPERTY_SLOTS)) return self->directProps_[index]; return self->propStorage_.getNonNull(runtime)->at<inl>( index - DIRECT_PROPERTY_SLOTS); } template <PropStorage::Inline inl> inline void JSObject::setNamedSlotValue( JSObject *self, Runtime *runtime, SlotIndex index, HermesValue value) { // NOTE: even though it is tempting to implement this in terms of assignment // to namedSlotRef(), it is a slight performance regression, which is not // entirely unexpected. if (LLVM_LIKELY(index < DIRECT_PROPERTY_SLOTS)) return self->directProps_[index].set(value, &runtime->getHeap()); self->propStorage_.get(runtime) ->at<inl>(index - DIRECT_PROPERTY_SLOTS) .set(value, &runtime->getHeap()); } inline HermesValue JSObject::getComputedSlotValue( JSObject *self, Runtime *runtime, ComputedPropertyDescriptor desc) { if (LLVM_LIKELY(desc.flags.indexed)) { assert( self->flags_.indexedStorage && "indexed flag set but no indexed storage"); return getOwnIndexed(self, runtime, desc.slot); } return getNamedSlotValue( self, runtime, desc.castToNamedPropertyDescriptorRef()); } inline ExecutionStatus JSObject::setComputedSlotValue( Handle<JSObject> selfHandle, Runtime *runtime, ComputedPropertyDescriptor desc, Handle<> value) { if (LLVM_LIKELY(desc.flags.indexed)) { assert( selfHandle->flags_.indexedStorage && "indexed flag set but no indexed storage"); return setOwnIndexed(selfHandle, runtime, desc.slot, value).getStatus(); } setNamedSlotValue( selfHandle.get(), runtime, desc.castToNamedPropertyDescriptorRef(), value.get()); return ExecutionStatus::RETURNED; } inline bool JSObject::getOwnNamedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc) { return findProperty(selfHandle, runtime, name, desc).hasValue(); } inline OptValue<bool> JSObject::tryGetOwnNamedDescriptorFast( JSObject *self, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc) { return HiddenClass::tryFindPropertyFast( self->clazz_.getNonNull(runtime), runtime, name, desc); } inline OptValue<HermesValue> JSObject::tryGetNamedNoAlloc(JSObject *self, PointerBase *base, SymbolID name) { for (JSObject *curr = self; curr; curr = curr->parent_.get(base)) { auto found = HiddenClass::findPropertyNoAlloc(curr->getClass(base), base, name); if (found) { return getNamedSlotValue(curr, base, found.getValue().slot); } } // It wasn't found on any of the parents of this object, declare it // un-findable. return llvm::None; } inline JSObject *JSObject::getNamedDescriptor( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc) { return getNamedDescriptor( selfHandle, runtime, name, PropertyFlags::invalid(), desc); } inline CallResult<HermesValue> JSObject::getNamed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropOpFlags opFlags, PropertyCacheEntry *cacheEntry) { return getNamedWithReceiver_RJS( selfHandle, runtime, name, selfHandle, opFlags, cacheEntry); } inline CallResult<HermesValue> JSObject::getComputed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle) { return getComputedWithReceiver_RJS( selfHandle, runtime, nameValHandle, selfHandle); } inline CallResult<bool> JSObject::putNamed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, Handle<> valueHandle, PropOpFlags opFlags) { return putNamedWithReceiver_RJS( selfHandle, runtime, name, valueHandle, selfHandle, opFlags); } inline CallResult<bool> JSObject::putComputed_RJS( Handle<JSObject> selfHandle, Runtime *runtime, Handle<> nameValHandle, Handle<> valueHandle, PropOpFlags opFlags) { return putComputedWithReceiver_RJS( selfHandle, runtime, nameValHandle, valueHandle, selfHandle, opFlags); } inline std::pair<uint32_t, uint32_t> JSObject::getOwnIndexedRange( JSObject *self, Runtime *runtime) { return self->getVT()->getOwnIndexedRange(self, runtime); }; inline bool JSObject::haveOwnIndexed(JSObject *self, Runtime *runtime, uint32_t index) { return self->getVT()->haveOwnIndexed(self, runtime, index); } inline OptValue<PropertyFlags> JSObject::getOwnIndexedPropertyFlags( JSObject *self, Runtime *runtime, uint32_t index) { return self->getVT()->getOwnIndexedPropertyFlags(self, runtime, index); } inline OptValue<HiddenClass::PropertyPos> JSObject::findProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, NamedPropertyDescriptor &desc) { return findProperty( selfHandle, runtime, name, PropertyFlags::invalid(), desc); } inline OptValue<HiddenClass::PropertyPos> JSObject::findProperty( Handle<JSObject> selfHandle, Runtime *runtime, SymbolID name, PropertyFlags expectedFlags, NamedPropertyDescriptor &desc) { return HiddenClass::findProperty( createPseudoHandle(selfHandle->clazz_.getNonNull(runtime)), runtime, name, expectedFlags, desc); } inline bool JSObject::shouldCacheForIn(Runtime *runtime) const { return !clazz_.get(runtime)->isDictionary() && !flags_.indexedStorage && !flags_.hostObject; } } // namespace vm } // namespace hermes #endif // HERMES_VM_JSOBJECT_H
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
1a95e633d899b218b35b702bd38cabb5e41fcd93
38c10c01007624cd2056884f25e0d6ab85442194
/third_party/WebKit/Source/modules/indexeddb/IDBCursor.h
47419767850cd02606e296df955b48bcfc17a034
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
4,275
h
/* * Copyright (C) 2010 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef IDBCursor_h #define IDBCursor_h #include "bindings/core/v8/ScriptValue.h" #include "bindings/core/v8/ScriptWrappable.h" #include "modules/indexeddb/IDBKey.h" #include "modules/indexeddb/IDBRequest.h" #include "modules/indexeddb/IndexedDB.h" #include "public/platform/modules/indexeddb/WebIDBCursor.h" #include "public/platform/modules/indexeddb/WebIDBTypes.h" #include "wtf/PassRefPtr.h" #include "wtf/RefPtr.h" namespace blink { class ExceptionState; class IDBAny; class IDBTransaction; class IDBValue; class ScriptState; class IDBCursor : public GarbageCollectedFinalized<IDBCursor>, public ScriptWrappable { DEFINE_WRAPPERTYPEINFO(); public: static WebIDBCursorDirection stringToDirection(const String& modeString); static IDBCursor* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); virtual ~IDBCursor(); DECLARE_TRACE(); void contextWillBeDestroyed() { m_backend.clear(); } v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; // Implement the IDL const String& direction() const; ScriptValue key(ScriptState*); ScriptValue primaryKey(ScriptState*); ScriptValue value(ScriptState*); ScriptValue source(ScriptState*) const; IDBRequest* update(ScriptState*, const ScriptValue&, ExceptionState&); void advance(unsigned, ExceptionState&); void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&); void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&); IDBRequest* deleteFunction(ScriptState*, ExceptionState&); bool isKeyDirty() const { return m_keyDirty; } bool isPrimaryKeyDirty() const { return m_primaryKeyDirty; } bool isValueDirty() const { return m_valueDirty; } void continueFunction(IDBKey*, IDBKey* primaryKey, ExceptionState&); void postSuccessHandlerCallback(); bool isDeleted() const; void close(); void setValueReady(IDBKey*, IDBKey* primaryKey, PassRefPtr<IDBValue>); IDBKey* idbPrimaryKey() const { return m_primaryKey; } virtual bool isKeyCursor() const { return true; } virtual bool isCursorWithValue() const { return false; } protected: IDBCursor(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); private: IDBObjectStore* effectiveObjectStore() const; OwnPtr<WebIDBCursor> m_backend; Member<IDBRequest> m_request; const WebIDBCursorDirection m_direction; Member<IDBAny> m_source; Member<IDBTransaction> m_transaction; bool m_gotValue = false; bool m_keyDirty = true; bool m_primaryKeyDirty = true; bool m_valueDirty = true; Member<IDBKey> m_key; Member<IDBKey> m_primaryKey; RefPtr<IDBValue> m_value; }; } // namespace blink #endif // IDBCursor_h
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
813dfff8ea299ca3f6cb0e2ece13d4c7f763c87a
1d99e97b68558f832cbbb4f47c67f0eaa5fa6c13
/test/animation/basic_viewer_test.cpp
c728b6185889c9c7544f9e3b946560ccab180ba1
[ "MIT" ]
permissive
Liby99/Rotamina
643a2d8df598d39db222b07ac61a4047f35d55a9
47a588b7e4674d3ab20d9d7afc43b25c7e0fa304
refs/heads/master
2021-05-11T21:47:51.695839
2018-03-07T20:27:09
2018-03-07T20:27:09
117,479,851
5
0
null
null
null
null
UTF-8
C++
false
false
486
cpp
#include <rotamina/rotamina.h> using namespace rotamina; int main() { // Initiate Animation a; Character c; // Load AnimationParser::load(a, "./res/animations/wasp_walk.anim"); CharacterParser::load(c, "./res/skeletons/wasp.skel", "./res/skins/wasp.skin"); // Add to Animator CharacterAnimator waspAnimator(a, c); AnimationViewer::create(1280, 720, "Wasp Walk Viewer", waspAnimator, [&](AnimationViewer &v) { }); }
[ "liby99@icloud.com" ]
liby99@icloud.com
65980fcbaa55dba80572dc1045e412b671fe6504
8c58995c5c396ee2c733d91502c0719e2e1c6247
/src/harbour-gems.cpp
6db24c06593ebe6cff74fe5f7613fbdc67da0791
[]
no_license
sailfish-os-apps/bejeweled-sailfish
78d938286ba216e477a75360b3fd0be4052e3197
6325001b869eb6f8e2a5a76305045a893f92ce53
refs/heads/master
2021-07-17T15:04:35.945663
2020-07-23T13:55:45
2020-07-23T13:55:45
195,236,351
0
0
null
2020-07-23T13:55:46
2019-07-04T12:20:18
QML
UTF-8
C++
false
false
599
cpp
#ifdef QT_QML_DEBUG #include <QtQuick> #endif #include <sailfishapp.h> int main (int argc, char * argv []) { // SailfishApp::main() will display "qml/template.qml", if you need more // control over initialization, you can use: // // - SailfishApp::application(int, char *[]) to get the QGuiApplication * // - SailfishApp::createView() to get a new QQuickView * instance // - SailfishApp::pathTo(QString) to get a QUrl to a resource file // // To display the view, call "show()" (will show fullscreen on device). return SailfishApp::main (argc, argv); }
[ "thebootroo@gmail.com" ]
thebootroo@gmail.com
0d67ba45c6faf64ba06c7df22bc5b1fcfc347920
cbb0105e0379b0369f5d33850fd7fafbddeb6cb6
/JZ08.cpp
d7983ee30ae9691048c3e5951f08b0c4ae2b41f2
[ "Apache-2.0" ]
permissive
corn1ng/LeetCode-Solution
b570bf2f48caed85afd224f11aeab56d1f905506
e7b6f77dd407c9a5cc8be43dc9b0e5d9bc185b95
refs/heads/master
2021-09-29T01:35:51.335724
2018-11-22T11:51:29
2018-11-22T11:51:29
111,047,122
0
0
null
null
null
null
UTF-8
C++
false
false
692
cpp
class Solution { public: TreeLinkNode* GetNext(TreeLinkNode* pNode) { TreeLinkNode* ne=NULL; TreeLinkNode* pre =NULL; if(pNode->right!=NULL) //如果有右子树。找到右子树的最左结点。 { ne = pNode->right; while(ne!=NULL) { pre = ne; ne = ne->left; } return pre; } while(pNode->next!=NULL){ //没右子树,则找第一个当前节点是父节点左孩子的节点 if(pNode->next->left==pNode) return pNode->next; pNode = pNode->next; } return NULL; // 都没找到,返回NULL; } };
[ "wangkangning1@foxmail.com" ]
wangkangning1@foxmail.com
4ceab34b3fa6995510eff9b5704b7100c745af13
df993c0f5ab7d0e9f9ad8d596c57dad3dbc89594
/app/src/main/cpp/uget/UgetApp.h
d86fe08092e3f8eef5ae169b98b9a53fc9b841f2
[]
no_license
urlget/uget-android
9147048f209744aabbfab6e772ef6b0c55c901f2
470d55ee2e4153dd0a1667ece83c04e709c4ca42
refs/heads/master
2023-06-17T15:05:59.493519
2019-02-11T01:42:33
2019-02-11T01:42:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,778
h
/* * * Copyright (C) 2012-2019 by C.H. Huang * plushuang.tw@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * --- * * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each * individual source file, and distribute linked combinations * including the two. * You must obey the GNU Lesser General Public License in all respects * for all of the code used other than OpenSSL. If you modify * file(s) with this exception, you may extend this exception to your * version of the file(s), but you are not obligated to do so. If you * do not wish to do so, delete this exception statement from your * version. If you delete this exception statement from all source * files in the program, then also delete it here. * */ #ifndef UGET_APP_H #define UGET_APP_H #include <UgArray.h> #include <UgRegistry.h> #include <UgetNode.h> #include <UgetTask.h> #include <UgetPlugin.h> #include <UgetHash.h> #ifdef __cplusplus extern "C" { #endif typedef struct UgetApp UgetApp; // ---------------------------------------------------------------------------- // UgetApp #define UGET_APP_MEMBERS \ UgetNode real; \ UgetNode split; \ UgetNode sorted; \ UgetNode sorted_split; \ UgetNode mix; \ UgetNode mix_split; \ UgRegistry infos; \ UgRegistry plugins; \ UgetPluginInfo* plugin_default; \ UgetTask task; \ UgArrayPtr nodes; \ void* uri_hash; \ char* config_dir; \ int n_error; \ int n_moved; \ int n_deleted; \ int n_completed struct UgetApp { UGET_APP_MEMBERS; /* // ------ UgetApp members ------ UgetNode real; // real root node for real nodes UgetNode split; // virtual root UgetNode sorted; // virtual root UgetNode sorted_split; // virtual root UgetNode mix; // virtual root UgetNode mix_split; // virtual root UgRegistry infos; UgRegistry plugins; UgetPluginInfo* plugin_default; UgetTask task; UgArrayPtr nodes; void* uri_hash; char* config_dir; int n_error; // uget_app_grow() will count these value: int n_moved; // n_error, n_moved, n_deleted, and int n_deleted; // n_completed int n_completed; // */ }; void uget_app_init (UgetApp* app); void uget_app_final (UgetApp* app); // uget_app_grow() activate queue download // return number of active download int uget_app_grow (UgetApp* app, int no_queuing); // uget_app_trim() remove finished/recycled download that over capacity // return number of trimmed download int uget_app_trim (UgetApp* app); void uget_app_set_config_dir (UgetApp* app, const char* dir); void uget_app_set_sorting (UgetApp* app, UgCompareFunc func, int reversed); void uget_app_set_notification (UgetApp* app, void* data, UgetNodeFunc inserted, UgetNodeFunc removed, UgNotifyFunc updated); // category functions // uget_app_move_category() return TRUE or FALSE void uget_app_add_category (UgetApp* app, UgetNode* cnode, int save_file); int uget_app_move_category (UgetApp* app, UgetNode* cnode, UgetNode* position); void uget_app_delete_category (UgetApp* app, UgetNode* cnode); void uget_app_stop_category (UgetApp* app, UgetNode* cnode); void uget_app_pause_category (UgetApp* app, UgetNode* cnode); void uget_app_resume_category (UgetApp* app, UgetNode* cnode); UgetNode* uget_app_match_category (UgetApp* app, UgUri* uuri, const char* file); // download functions: return TRUE or FALSE int uget_app_add_download_uri (UgetApp* app, const char* uri, UgetNode* cnode, int apply); int uget_app_add_download (UgetApp* app, UgetNode* dnode, UgetNode* cnode, int apply); int uget_app_move_download (UgetApp* app, UgetNode* dnode, UgetNode* dnode_position); int uget_app_move_download_to (UgetApp* app, UgetNode* dnode, UgetNode* cnode); int uget_app_delete_download (UgetApp* app, UgetNode* dnode, int delete_file); int uget_app_recycle_download (UgetApp* app, UgetNode* dnode); int uget_app_activate_download (UgetApp* app, UgetNode* dnode); int uget_app_pause_download (UgetApp* app, UgetNode* dnode); int uget_app_queue_download (UgetApp* app, UgetNode* dnode); void uget_app_reset_download_name (UgetApp* app, UgetNode* dnode); #ifdef NO_URI_HASH #define uget_app_use_uri_hash(app) #define uget_app_clear_attachment(app) #else void uget_app_use_uri_hash (UgetApp* app); void uget_app_clear_attachment (UgetApp* app); #endif // plug-in functions // uget_app_find_plugin() return TRUE or FALSE void uget_app_clear_plugins (UgetApp* app); void uget_app_add_plugin (UgetApp* app, const UgetPluginInfo* pinfo); void uget_app_remove_plugin (UgetApp* app, const UgetPluginInfo* pinfo); int uget_app_find_plugin (UgetApp* app, const char* name, const UgetPluginInfo** pinfo); void uget_app_set_default_plugin (UgetApp* app, const UgetPluginInfo* pinfo); UgetPluginInfo* uget_app_match_plugin (UgetApp* app, const char* uri, const UgetPluginInfo* exclude); // ---------------------------------------------------------------------------- // save/load categories // uget_app_save_category() return TRUE or FALSE int uget_app_save_category (UgetApp* app, UgetNode* cnode, const char* filename, void* jsonfile); UgetNode* uget_app_load_category (UgetApp* app, const char* filename, void* jsonfile); int uget_app_save_category_fd (UgetApp* app, UgetNode* cnode, int fd, void* jsonfile); UgetNode* uget_app_load_category_fd (UgetApp* app, int fd, void* jsonfile); // return number of category save/load int uget_app_save_categories (UgetApp* app, const char* folder); int uget_app_load_categories (UgetApp* app, const char* folder); // ---------------------------------------------------------------------------- // keeping status void uget_node_set_keeping (UgetNode* node, int enable); #ifdef __cplusplus } #endif // ---------------------------------------------------------------------------- // C++11 standard-layout #ifdef __cplusplus namespace Uget { // This one is for derived use only. No data members here. // Your derived struct/class must be C++11 standard-layout struct AppMethod { inline void init(void) { uget_app_init((UgetApp*)this); } inline void final(void) { uget_app_final((UgetApp*)this); } inline void grow(int noQueuing) { uget_app_grow((UgetApp*)this, noQueuing); } inline void trim(void) { uget_app_trim((UgetApp*)this); } inline void setConfigDir(const char* dir) { uget_app_set_config_dir((UgetApp*)this, dir); } inline void setSorting(UgCompareFunc func, int reversed) { uget_app_set_sorting((UgetApp*)this, func, reversed); } inline void setNotification(void* data, UgetNodeFunc inserted, UgetNodeFunc removed, UgNotifyFunc updated) { uget_app_set_notification((UgetApp*)this, data, inserted, removed, updated); } inline void addCategory(UgetNode* cnode, int saveFile) { uget_app_add_category((UgetApp*)this, cnode, saveFile); } inline void moveCategory(UgetNode* cnode, UgetNode* position) { uget_app_move_category((UgetApp*)this, cnode, position); } inline void deleteCategory(UgetNode* cnode) { uget_app_delete_category((UgetApp*)this, cnode); } inline void stopCategory(UgetNode* cnode) { uget_app_stop_category((UgetApp*)this, cnode); } inline void pauseCategory(UgetNode* cnode) { uget_app_pause_category((UgetApp*)this, cnode); } inline void resumeCategory(UgetNode* cnode) { uget_app_resume_category((UgetApp*)this, cnode); } inline UgetNode* matchCategory(UgUri* uuri, const char* file) { return uget_app_match_category((UgetApp*)this, uuri, file); } inline int addDownload(const char* uri, UgetNode* cnode, int apply) { return uget_app_add_download_uri((UgetApp*)this, uri, cnode, apply); } inline int addDownload(UgetNode* dnode, UgetNode* cnode, int apply) { return uget_app_add_download((UgetApp*)this, dnode, cnode, apply); } inline int moveDownload(UgetNode* dnode, UgetNode* dnode_position) { return uget_app_move_download((UgetApp*)this, dnode, dnode_position); } inline int moveDownloadTo(UgetNode* dnode, UgetNode* cnode) { return uget_app_move_download_to((UgetApp*)this, dnode, cnode); } inline int deleteDownload(UgetNode* dnode, int deleteFile) { return uget_app_delete_download((UgetApp*)this, dnode, deleteFile); } inline int recycleDownload(UgetNode* dnode) { return uget_app_recycle_download((UgetApp*)this, dnode); } inline int activateDownload(UgetNode* dnode) { return uget_app_activate_download((UgetApp*)this, dnode); } inline int pauseDownload(UgetNode* dnode) { return uget_app_pause_download((UgetApp*)this, dnode); } inline int queueDownload(UgetNode* dnode) { return uget_app_queue_download((UgetApp*)this, dnode); } inline void resetDownloadName(UgetNode* dnode) { uget_app_reset_download_name((UgetApp*)this, dnode); } inline void useUriHash(void) { uget_app_use_uri_hash((UgetApp*)this); } inline void clearAttachment(void) { uget_app_clear_attachment((UgetApp*)this); } inline void clearPlugins(void) { uget_app_clear_plugins((UgetApp*)this); } inline void addPlugin(const UgetPluginInfo* pinfo) { uget_app_add_plugin((UgetApp*)this, pinfo); } inline void removePlugin(const UgetPluginInfo* pinfo) { uget_app_remove_plugin((UgetApp*)this, pinfo); } inline int findPlugin(const char* name, const UgetPluginInfo** pinfo) { return uget_app_find_plugin((UgetApp*)this, name, pinfo); } inline void setDefaultPlugin(const UgetPluginInfo* pinfo) { return uget_app_set_default_plugin((UgetApp*)this, pinfo); } inline UgetPluginInfo* matchPlugin(const char* uri, const UgetPluginInfo* exclude) { return uget_app_match_plugin((UgetApp*)this, uri, exclude); } inline int saveCategory(UgetNode* cnode, const char* filename, void* jsonfile) { return uget_app_save_category((UgetApp*)this, cnode, filename, jsonfile); } inline UgetNode* loadCategory(const char* filename, void* jsonfile) { return uget_app_load_category((UgetApp*)this, filename, jsonfile); } // return number of category save/load inline int saveCategories(const char* folder) { return uget_app_save_categories((UgetApp*)this, folder); } inline int loadCategories(const char* folder) { return uget_app_load_categories((UgetApp*)this, folder); } }; // This one is for directly use only. You can NOT derived it. struct App : AppMethod, UgetApp {}; }; // namespace Uget #endif // __cplusplus #endif // UGET_APP_H
[ "plushuang.tw@gmail.com" ]
plushuang.tw@gmail.com
497221fe1ff0bf418b56426a6c880df802d28ef9
159978e4f9b61ca2741625cb83efb8af27acc703
/visuals.cpp
d6010b38dccde290e0b7d82e8db1210d0dd1eac2
[]
no_license
Nikoklis/SolarSytemSimulation
cbbfb80fcff4a563c8a47662d2fd4938cf811271
1be4ccb601f85e18000d1f892bc74a97172205ce
refs/heads/master
2021-05-05T01:19:00.854635
2018-01-30T20:49:11
2018-01-30T20:49:11
119,591,232
0
0
null
null
null
null
UTF-8
C++
false
false
8,646
cpp
#include <stdio.h> #include <fstream> #include <string.h> #include <iostream> #include <sstream> #include <math.h> #include <stdlib.h> #include "GL/glut.h" #include "visuals.h" model md; int starMatrix[2000]; /////////hasko//////// float sun = 1; float transun = 15.0; static float ty = 0.0; static float tx = 0.0; static float tz = 0.0; static bool animate = false; //////////// //int codes for the planets const int OtherPlanetCode = 0; const int RedPlanetCode = 1; const int GreenPlanetCode = 2; const int BluePlanetCode = 3; static float rotatePlanet = 0.0f; static float rot = 0.0f; using namespace std; void Render() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); //new zoom in,zoom out function glTranslatef(0.0f, 0.0f, tz); //implementing the rotation of the camera glRotatef(tx, 1.0, 0.0, 0.0); glRotatef(ty, 0.0, 1.0, 0.0); //different way of moving checking to see more ways of using the camera //gluLookAt(100*pow(cos(t),2),100*pow(cos(t),2),100*pow(sin(t),2),0,0,-100,0,1,0); glTranslatef(0.0f, 0.0f, -100.0f); //creating stars glPushMatrix(); stars(transun); glPopMatrix(); //creating the sun glPushMatrix(); glScalef(0.8f,0.8f, 0.8f); star(transun); glPopMatrix(); //creating first planet glPushMatrix(); glScalef(0.01f, 0.01f, 0.01f); CreatePlanet(RedPlanetCode); glPopMatrix(); //creating second planet glPushMatrix(); glScalef(0.02f, 0.02f, 0.02f); CreatePlanet(GreenPlanetCode); glPopMatrix(); //creating third planet glPushMatrix(); glScalef(0.007f, 0.007f, 0.007f); CreatePlanet(BluePlanetCode); glPopMatrix(); //creating fourth planet glPushMatrix(); glScalef(0.014f, 0.014f, 0.014f); CreatePlanet(OtherPlanetCode); glPopMatrix(); glutSwapBuffers(); } void Resize(int w, int h) { if (h == 0) h = 1; glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(70.0f, (float)w / (float)h, 1.0f, 10000.0f); } //function for planet creation void CreatePlanet(int colour) { if (colour == RedPlanetCode) //code for red planet { glPushMatrix(); glRotatef(rot, 0.0f, 0.5f, 0.0f); // around sun glTranslatef(2000, 0, 0); glRotatef(rotatePlanet, 0.0f, 0.5f, 0.0f); //around itself glColor3f(1.0f, 0.0f, 0.0f); DisplayModel(md); glPopMatrix(); } else if (colour == GreenPlanetCode) // code for green planet { glPushMatrix(); glRotatef(-rot, 0.0f, 0.5f, 0.0f); glTranslatef(-3000, 0, 0); glRotatef(rotatePlanet, 0.0f, 0.5f, 0.0f); glColor3f(0.0f, 1.0f, 0.0f); DisplayModel(md); glPopMatrix(); } else if (colour == BluePlanetCode) // code for blue planet { glPushMatrix(); glRotatef(rot, 0.5f, 0.0f, 0.0f); glTranslatef(0, 5000, 0); glRotatef(rotatePlanet, 0.0f, 0.5f, 0.0f); glColor3f(0.0f, 0.0f, 1.0f); DisplayModel(md); glPopMatrix(); } else // code for other planet { glPushMatrix(); glRotatef(-rot, 0.5f, 0.0f, 0.0f); glTranslatef(0, -6000, 0); glRotatef(rotatePlanet, 0.0f, 0.5f, 0.0f); glColor3f(0.0f, 1.0f, 1.0f); DisplayModel(md); glPopMatrix(); } } void Setup() { ReadFile(&md); //reading file //Parameter handling glShadeModel(GL_SMOOTH); //enable blending glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_DEPTH_TEST); glDepthFunc(GL_LEQUAL); //renders a fragment if its z value is less or equal of the stored value glClearDepth(1); // polygon rendering mode glEnable(GL_COLOR_MATERIAL); glColorMaterial(GL_FRONT, GL_AMBIENT_AND_DIFFUSE); //Set up light source GLfloat light_position[] = { 0.0, 0.0, -70.0, 1 }; glLightfv(GL_LIGHT0, GL_POSITION, light_position); //turn on if you want some more lighting!!! (uncomment next line) //GLfloat ambientLight[] = { 0.3, 0.3, 0.3, 1.0 }; GLfloat diffuseLight[] = { 0.8, 0.8, 0.8, 1.0 }; //turn on if you want some more lighting!!! (uncomment next line) //glLightfv(GL_LIGHT0, GL_AMBIENT, ambientLight); glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuseLight); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); //// glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); glEnable(GL_CULL_FACE); glFrontFace(GL_CW); glFrontFace(GL_CCW); // Black background glClearColor(0.0f, 0.0f, 0.0f, 1.0f); } void Idle() { if (animate) { //calculations for the planets rotation and the growdth and shrinking of the sun rot += 5.5f; rotatePlanet += 1.0f; float dt = 0.01f; float g = 10; if (transun < 11) sun = -sun; else sun = sun - g*dt; transun = transun + sun*dt; ///// } glutPostRedisplay(); } //keyboard function for input//////// void Keyboard(unsigned char key, int x, int y) { switch (key) { case 'q':exit(0); break; case 'd'://t += 0.1; ty += 4.5f; break; case 'a'://t -= 0.1; ty -= 4.5f; break; case 'w': tx += 4.5f; break; case 's': tx -= 4.5f; break; case 'g': animate = !animate; break; case 't': tz += 5.1f; break; case 'y': tz -= 5.1f; break; default: break; } glutPostRedisplay(); } //changed readfile function for the new planet.obj file void ReadFile(model *md) { ifstream obj_file("planet.obj"); if (obj_file.fail()) exit(1); string stringLine; int vertexPositionCounter = 0; int facesCounter = 0; int normalsCounter = 0; while (getline(obj_file,stringLine)) { if (stringLine.substr(0, 2) == "v ") { istringstream s(stringLine.substr(2)); s >> md->obj_points[vertexPositionCounter].x; s >> md->obj_points[vertexPositionCounter].y; s >> md->obj_points[vertexPositionCounter].z; vertexPositionCounter++; } else if (stringLine.substr(0, 3) == "vn ") { istringstream s(stringLine.substr(3)); s >> md->obj_normalls[normalsCounter].x; s >> md->obj_normalls[normalsCounter].y; s >> md->obj_normalls[normalsCounter].z; normalsCounter++; } else if (stringLine.substr(0, 2) == "f ") { istringstream s(stringLine.substr(2)); //getting first vertex position s >> md->obj_faces[facesCounter].vtx[0]; s.ignore(10, '/'); s.ignore(10, '/'); s >> md->obj_faces[facesCounter].vtn[0]; //ignoring space to get the next vertex position s.ignore(10, ' '); //getting next vertex position s >> md->obj_faces[facesCounter].vtx[1]; s.ignore(10, '/'); s.ignore(10, '/'); s >> md->obj_faces[facesCounter].vtn[1]; //ignoring space to get the next vertex position s.ignore(10, ' '); //getting next vertex position s >> md->obj_faces[facesCounter].vtx[2]; s.ignore(10, '/'); s.ignore(10, '/'); s >> md->obj_faces[facesCounter].vtn[2]; facesCounter++; } } //setting the number of vertex positions,normalls and faces md->vertices = vertexPositionCounter; md->normalls = normalsCounter; md->faces = facesCounter; obj_file.close(); } //added extra vertex normall display void DisplayModel(model md) { glPushMatrix(); glBegin(GL_TRIANGLES); for (int i = 0; i < md.faces; i++) { glVertex3f(md.obj_points[md.obj_faces[i].vtx[0] - 1].x, md.obj_points[md.obj_faces[i].vtx[0] - 1].y, md.obj_points[md.obj_faces[i].vtx[0] - 1].z); glVertex3f(md.obj_points[md.obj_faces[i].vtx[1] - 1].x, md.obj_points[md.obj_faces[i].vtx[1] - 1].y, md.obj_points[md.obj_faces[i].vtx[1] - 1].z); glVertex3f(md.obj_points[md.obj_faces[i].vtx[2] - 1].x, md.obj_points[md.obj_faces[i].vtx[2] - 1].y, md.obj_points[md.obj_faces[i].vtx[2] - 1].z); glNormal3f(md.obj_normalls[md.obj_faces[i].vtn[0] - 1].x, md.obj_normalls[md.obj_faces[i].vtn[0] - 1].y, md.obj_normalls[md.obj_faces[i].vtn[0] - 1].z); glNormal3f(md.obj_normalls[md.obj_faces[i].vtn[1] - 1].x, md.obj_normalls[md.obj_faces[i].vtn[1] - 1].y, md.obj_normalls[md.obj_faces[i].vtn[1] - 1].z); glNormal3f(md.obj_normalls[md.obj_faces[i].vtn[2] - 1].x, md.obj_normalls[md.obj_faces[i].vtn[2] - 1].y, md.obj_normalls[md.obj_faces[i].vtn[2] - 1].z); } glEnd(); glPopMatrix(); } //function for star creation void star(float transun) { glColor3f(0.6f, 0.5f, 0.1f); glutSolidSphere(10.0, 30, 24); glPushMatrix(); glColor4f(1, 1, 0,(transun - 11) / 4); glutSolidSphere(transun, 30, 15); glPopMatrix(); } //function for stars void stars(float transun) { int i; for (i = 0; i < 2000; i = i + 3) { glPushMatrix(); glTranslatef(starMatrix[i], starMatrix[i + 1], starMatrix[i + 2]); glTranslatef(0.0f, 0.0f, -100.0f); glScalef(0.02, 0.02, 0.02); star(transun); glPopMatrix(); } } //function to fill the starsMatrix void pinakas() { int i, a; for (i = 0; i < 2000; i++) { a = rand() % 600 - 300; starMatrix[i] = a; } }
[ "nikoklis@localhost.localdomain" ]
nikoklis@localhost.localdomain
701b4c3dfa63e13e19607eb8a44c9b0e31f1283c
6b6cbecc5cce2fda677eb4a222c9d025f8757db3
/Applications/PixelPaint/Layer.h
1c0f43daaf07d8ceddeeceee0ecca56e7bda2e07
[ "BSD-2-Clause" ]
permissive
matthewgraham1/serenity
6ccfbcc2f0e8e4035b978d8107d62427ccacae58
f591157eb8759c38e3e013921a5484c223bd3427
refs/heads/master
2022-11-22T05:20:46.248144
2020-07-16T17:08:39
2020-07-16T17:47:11
280,229,648
0
0
BSD-2-Clause
2020-07-16T18:33:44
2020-07-16T18:33:44
null
UTF-8
C++
false
false
2,669
h
/* * Copyright (c) 2020, Andreas Kling <kling@serenityos.org> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include <AK/Noncopyable.h> #include <AK/RefCounted.h> #include <AK/String.h> #include <LibGfx/Bitmap.h> namespace PixelPaint { class Image; class Layer : public RefCounted<Layer> { AK_MAKE_NONCOPYABLE(Layer); AK_MAKE_NONMOVABLE(Layer); public: static RefPtr<Layer> create_with_size(const Gfx::IntSize&, const String& name); ~Layer() {} const Gfx::IntPoint& location() const { return m_location; } void set_location(const Gfx::IntPoint& location) { m_location = location; } const Gfx::Bitmap& bitmap() const { return *m_bitmap; } Gfx::Bitmap& bitmap() { return *m_bitmap; } Gfx::IntSize size() const { return bitmap().size(); } Gfx::IntRect relative_rect() const { return { location(), size() }; } Gfx::IntRect rect() const { return { {}, size() }; } const String& name() const { return m_name; } void set_name(const String& name) { m_name = name; } void did_modify_bitmap(Image&); void set_selected(bool selected) { m_selected = selected; } bool is_selected() const { return m_selected; } private: explicit Layer(const Gfx::IntSize&, const String& name); String m_name; Gfx::IntPoint m_location; RefPtr<Gfx::Bitmap> m_bitmap; bool m_selected { false }; }; }
[ "kling@serenityos.org" ]
kling@serenityos.org
58b10eefe089af5281428fb466d1daca504fd550
5ddfb41da5fca9b153638688468a700ccb4e3b61
/C++/206_ReverseLinkedList.cpp
ecd10667338f44b45b9863590b7225cee9f5c89a
[]
no_license
charlieusc/Leetcode_2017
80c7ef2bf6b86e8d2264d3debf16c1525bd7a242
3cf818ca83209dea36fa08d04ba30477568585b1
refs/heads/master
2021-01-11T21:11:09.497762
2017-02-07T03:42:41
2017-02-07T03:42:41
79,266,660
0
0
null
null
null
null
UTF-8
C++
false
false
509
cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* reverseList(ListNode* head) { ListNode dummy(0); dummy.next = head; while(head && head->next) { ListNode *temp = head->next; head->next = temp->next; temp->next = dummy.next; dummy.next = temp; } return dummy.next; } };
[ "yangjialinusc@gmail.com" ]
yangjialinusc@gmail.com
955c9e99d15cde4018c456b4e661f7e5be3180df
d705251ac03958c1122649cfb96d72a2d45785f9
/octave.cpp
88eb3f5261a518bc25e08f473d01e31bc59164dd
[]
no_license
igoartem/LabsCV
68237783044363acfbe4bc4be2236c15e33bae87
91ac17621beea7e7dc9052cc3abb36a1aac4099b
refs/heads/master
2020-05-21T10:02:50.914383
2016-11-14T07:17:41
2016-11-14T07:17:41
58,789,640
1
0
null
null
null
null
UTF-8
C++
false
false
928
cpp
#include "octave.h" Octave::Octave(double sigma, double k, int number) { this->sigma = sigma; this->k = k; this->number = number; } vector<shared_ptr<CVImage> > Octave::getVecLayers() const { return vecLayers; } void Octave::setVecLayers(const vector<shared_ptr<CVImage> > &value) { vecLayers = value; } shared_ptr<CVImage> Octave::getLayer(int i) { return vecLayers[i]; } int Octave::size() { return vecLayers.size(); } double Octave::globalSigma(int i) { return localSigma(i) * pow(2,number); } double Octave::localSigma(int i) { return sigma * pow(k,i); } int Octave::getNumber() { return number; } double Octave::L(int x, int y, double sigma) { int level = 1; while(globalSigma(level) < sigma && level < vecLayers.size()) level++; level--; int xx = x / pow(2, number); int yy = y / pow(2, number); return vecLayers[level]->getPixel(xx,yy); }
[ "artoym25@mail.ru" ]
artoym25@mail.ru
3ca6b18bdb656807e1f95d7fc3f30f8a87b4724e
a81c07a5663d967c432a61d0b4a09de5187be87b
/chrome/browser/page_load_metrics/page_load_metrics_initialize.cc
0ad976f5089d4b10e2b0983dd834091f837dfc47
[ "BSD-3-Clause" ]
permissive
junxuezheng/chromium
c401dec07f19878501801c9e9205a703e8643031
381ce9d478b684e0df5d149f59350e3bc634dad3
refs/heads/master
2023-02-28T17:07:31.342118
2019-09-03T01:42:42
2019-09-03T01:42:42
205,967,014
2
0
BSD-3-Clause
2019-09-03T01:48:23
2019-09-03T01:48:23
null
UTF-8
C++
false
false
9,731
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/page_load_metrics/page_load_metrics_initialize.h" #include <memory> #include <utility> #include "base/macros.h" #include "base/timer/timer.h" #include "build/build_config.h" #include "chrome/browser/page_load_metrics/metrics_web_contents_observer.h" #include "chrome/browser/page_load_metrics/observers/aborts_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/ad_metrics/ads_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/amp_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/core_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/data_reduction_proxy_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/data_saver_site_breakdown_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/data_use_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/document_write_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/foreground_duration_ukm_observer.h" #include "chrome/browser/page_load_metrics/observers/from_gws_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/https_engagement_metrics/https_engagement_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/live_tab_count_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/loading_predictor_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/local_network_requests_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/media_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/multi_tab_loading_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/no_state_prefetch_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/offline_page_previews_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/omnibox_suggestion_used_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/previews_lite_page_redirect_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/previews_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/previews_ukm_observer.h" #include "chrome/browser/page_load_metrics/observers/protocol_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/resource_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/scheme_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/security_state_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/service_worker_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/signed_exchange_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/tab_restore_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/third_party_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/ukm_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/observers/use_counter_page_load_metrics_observer.h" #include "chrome/browser/page_load_metrics/page_load_metrics_embedder_interface.h" #include "chrome/browser/page_load_metrics/page_load_tracker.h" #include "chrome/browser/prerender/prerender_contents.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/search/search.h" #include "components/rappor/rappor_service_impl.h" #include "content/public/browser/web_contents.h" #include "url/gurl.h" #if defined(OS_ANDROID) #include "chrome/browser/page_load_metrics/observers/android_page_load_metrics_observer.h" #else #include "chrome/browser/page_load_metrics/observers/session_restore_page_load_metrics_observer.h" #endif namespace chrome { namespace { class PageLoadMetricsEmbedder : public page_load_metrics::PageLoadMetricsEmbedderInterface { public: explicit PageLoadMetricsEmbedder(content::WebContents* web_contents); ~PageLoadMetricsEmbedder() override; // page_load_metrics::PageLoadMetricsEmbedderInterface: bool IsNewTabPageUrl(const GURL& url) override; void RegisterObservers(page_load_metrics::PageLoadTracker* tracker) override; std::unique_ptr<base::OneShotTimer> CreateTimer() override; private: bool IsPrerendering() const; content::WebContents* const web_contents_; DISALLOW_COPY_AND_ASSIGN(PageLoadMetricsEmbedder); }; PageLoadMetricsEmbedder::PageLoadMetricsEmbedder( content::WebContents* web_contents) : web_contents_(web_contents) {} PageLoadMetricsEmbedder::~PageLoadMetricsEmbedder() {} void PageLoadMetricsEmbedder::RegisterObservers( page_load_metrics::PageLoadTracker* tracker) { if (!IsPrerendering()) { tracker->AddObserver(std::make_unique<AbortsPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<AMPPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<CorePageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique< data_reduction_proxy::DataReductionProxyMetricsObserver>()); tracker->AddObserver(std::make_unique<SchemePageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<FromGWSPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<ForegroundDurationUKMObserver>()); tracker->AddObserver( std::make_unique<DocumentWritePageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<LiveTabCountPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<MediaPageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<MultiTabLoadingPageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique< previews::OfflinePagePreviewsPageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<PreviewsLitePageRedirectMetricsObserver>()); tracker->AddObserver( std::make_unique<previews::PreviewsPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<previews::PreviewsUKMObserver>()); tracker->AddObserver(std::make_unique<ResourceMetricsObserver>()); tracker->AddObserver( std::make_unique<ServiceWorkerPageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<SignedExchangePageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<HttpsEngagementPageLoadMetricsObserver>( web_contents_->GetBrowserContext())); tracker->AddObserver(std::make_unique<ProtocolPageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<TabRestorePageLoadMetricsObserver>()); tracker->AddObserver(std::make_unique<UseCounterPageLoadMetricsObserver>()); tracker->AddObserver( std::make_unique<DataSaverSiteBreakdownMetricsObserver>()); std::unique_ptr<AdsPageLoadMetricsObserver> ads_observer = AdsPageLoadMetricsObserver::CreateIfNeeded(tracker->GetWebContents()); if (ads_observer) tracker->AddObserver(std::move(ads_observer)); tracker->AddObserver(std::make_unique<ThirdPartyMetricsObserver>()); std::unique_ptr<page_load_metrics::PageLoadMetricsObserver> ukm_observer = UkmPageLoadMetricsObserver::CreateIfNeeded(); if (ukm_observer) tracker->AddObserver(std::move(ukm_observer)); std::unique_ptr<page_load_metrics::PageLoadMetricsObserver> no_state_prefetch_observer = NoStatePrefetchPageLoadMetricsObserver::CreateIfNeeded( web_contents_); if (no_state_prefetch_observer) tracker->AddObserver(std::move(no_state_prefetch_observer)); #if defined(OS_ANDROID) tracker->AddObserver(std::make_unique<AndroidPageLoadMetricsObserver>()); #endif // OS_ANDROID std::unique_ptr<page_load_metrics::PageLoadMetricsObserver> loading_predictor_observer = LoadingPredictorPageLoadMetricsObserver::CreateIfNeeded( web_contents_); if (loading_predictor_observer) tracker->AddObserver(std::move(loading_predictor_observer)); #if !defined(OS_ANDROID) tracker->AddObserver( std::make_unique<SessionRestorePageLoadMetricsObserver>()); #endif tracker->AddObserver( std::make_unique<LocalNetworkRequestsPageLoadMetricsObserver>()); } tracker->AddObserver( std::make_unique<OmniboxSuggestionUsedMetricsObserver>(IsPrerendering())); tracker->AddObserver( SecurityStatePageLoadMetricsObserver::MaybeCreateForProfile( web_contents_->GetBrowserContext())); tracker->AddObserver(std::make_unique<DataUseMetricsObserver>()); } bool PageLoadMetricsEmbedder::IsPrerendering() const { return prerender::PrerenderContents::FromWebContents(web_contents_) != nullptr; } std::unique_ptr<base::OneShotTimer> PageLoadMetricsEmbedder::CreateTimer() { return std::make_unique<base::OneShotTimer>(); } bool PageLoadMetricsEmbedder::IsNewTabPageUrl(const GURL& url) { Profile* profile = Profile::FromBrowserContext(web_contents_->GetBrowserContext()); if (!profile) return false; return search::IsInstantNTPURL(url, profile); } } // namespace void InitializePageLoadMetricsForWebContents( content::WebContents* web_contents) { page_load_metrics::MetricsWebContentsObserver::CreateForWebContents( web_contents, std::make_unique<PageLoadMetricsEmbedder>(web_contents)); } } // namespace chrome
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
d1aec8e9c303b4443a90f33236f4fb1315d0c2cb
a856357821804a5088915280afb68560d4b9a288
/CondFormats/RunInfo/interface/LHCInfo.h
01a6501617a426ea6c07381584211da08b10ebd6
[ "Apache-2.0" ]
permissive
rosar17/cmssw
07b1821c10338aa3378888ac54139446dee5fd14
2146f4009b2c949b4419d777b1a8cc3b777f35ab
refs/heads/master
2021-04-03T01:49:10.769169
2018-03-09T12:33:48
2018-03-09T12:33:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,452
h
#ifndef CondFormats_RunInfo_LHCInfo_H #define CondFormats_RunInfo_LHCInfo_H #include "CondFormats/Serialization/interface/Serializable.h" #include "CondFormats/Common/interface/Time.h" #include <bitset> #include <iostream> #include <string> #include <sstream> #include <vector> class LHCInfo { public: enum FillType { UNKNOWN = 0, PROTONS = 1, IONS = 2, COSMICS = 3, GAP = 4 }; enum ParticleType { NONE = 0, PROTON = 1, PB82 = 2, AR18 = 3, D = 4, XE54 = 5 }; enum IntParamIndex { LHC_FILL = 0, BUNCHES_1 = 1, BUNCHES_2 = 2, COLLIDING_BUNCHES = 3, TARGET_BUNCHES = 4, FILL_TYPE = 5, PARTICLES_1 = 6, PARTICLES_2 = 7, ISIZE = 8 }; enum FloatParamIndex { CROSSING_ANGLE = 0, BETA_STAR = 1, INTENSITY_1 = 2, INTENSITY_2 = 3, ENERGY = 4, DELIV_LUMI = 5, REC_LUMI = 7, LUMI_PER_B=8, FSIZE=9}; enum TimeParamIndex { CREATE_TIME = 0, BEGIN_TIME = 1, END_TIME = 2, TSIZE=3}; enum StringParamIndex { INJECTION_SCHEME = 0, SSIZE=1 }; typedef FillType FillTypeId; typedef ParticleType ParticleTypeId; LHCInfo(); LHCInfo( unsigned short const & lhcFill, bool const & fromData = true ); ~LHCInfo(); //constant static unsigned integer hosting the maximum number of LHC bunch slots static size_t const bunchSlots = 3564; //constant static unsigned integer hosting the available number of LHC bunch slots static size_t const availableBunchSlots = 2808; //reset instance void setFill( unsigned short const & lhcFill, bool const & fromData = true ); //getters unsigned short const fillNumber() const; bool const isData() const; unsigned short const bunchesInBeam1() const; unsigned short const bunchesInBeam2() const; unsigned short const collidingBunches() const; unsigned short const targetBunches() const; FillTypeId const fillType() const; ParticleTypeId const particleTypeForBeam1() const; ParticleTypeId const particleTypeForBeam2() const; float const crossingAngle() const; float const betaStar() const; float const intensityForBeam1() const; float const intensityForBeam2() const; float const energy() const; float const delivLumi() const; float const recLumi() const; cond::Time_t const createTime() const; cond::Time_t const beginTime() const; cond::Time_t const endTime() const; std::string const & injectionScheme() const; std::vector<float> const & lumiPerBX() const; //returns a boolean, true if the injection scheme has a leading 25ns //TODO: parse the circulating bunch configuration, instead of the string. bool is25nsBunchSpacing() const; //returns a boolean, true if the bunch slot number is in the circulating bunch configuration bool isBunchInBeam1( size_t const & bunch ) const; bool isBunchInBeam2( size_t const & bunch ) const; //member functions returning *by value* a vector with all filled bunch slots std::vector<unsigned short> bunchConfigurationForBeam1() const; std::vector<unsigned short> bunchConfigurationForBeam2() const; //setters void setBunchesInBeam1( unsigned short const & bunches ); void setBunchesInBeam2( unsigned short const & bunches ); void setCollidingBunches( unsigned short const & collidingBunches ); void setTargetBunches( unsigned short const & targetBunches ); void setFillType( FillTypeId const & fillType ); void setParticleTypeForBeam1( ParticleTypeId const & particleType ); void setParticleTypeForBeam2( ParticleTypeId const & particleType ); void setCrossingAngle( float const & angle ); void setBetaStar( float const & betaStar ); void setIntensityForBeam1( float const & intensity ); void setIntensityForBeam2( float const & intensity ); void setEnergy( float const & energy ); void setDelivLumi( float const & delivLumi ); void setRecLumi( float const & recLumi ); void setCreationTime( cond::Time_t const & createTime ); void setBeginTime( cond::Time_t const & beginTime ); void setEndTime( cond::Time_t const & endTime ); void setInjectionScheme( std::string const & injectionScheme ); void setLumiPerBX( std::vector<float> const & lumiPerBX); //sets all values in one go void setInfo( unsigned short const & bunches1 ,unsigned short const & bunches2 ,unsigned short const & collidingBunches ,unsigned short const & targetBunches ,FillTypeId const & fillType ,ParticleTypeId const & particleType1 ,ParticleTypeId const & particleType2 ,float const & angle ,float const & beta ,float const & intensity1 ,float const & intensity2 ,float const & energy ,float const & delivLumi ,float const & recLumi ,cond::Time_t const & createTime ,cond::Time_t const & beginTime ,cond::Time_t const & endTime ,std::string const & scheme ,std::vector<float> const & lumiPerBX ,std::bitset<bunchSlots+1> const & bunchConf1 ,std::bitset<bunchSlots+1> const & bunchConf2 ); //dumping values on output stream void print(std::stringstream & ss) const; protected: std::bitset<bunchSlots+1> const & bunchBitsetForBeam1() const; std::bitset<bunchSlots+1> const & bunchBitsetForBeam2() const; void setBunchBitsetForBeam1( std::bitset<bunchSlots+1> const & bunchConfiguration ); void setBunchBitsetForBeam2( std::bitset<bunchSlots+1> const & bunchConfiguration ); private: bool m_isData; std::vector<std::vector<unsigned int> > m_intParams; //unsigned short m_lhcFill; //unsigned short m_bunches1, m_bunches2, m_collidingBunches, m_targetBunches; //FillTypeId m_fillType; //ParticleTypeId m_particles1, m_particles2; std::vector<std::vector<float> > m_floatParams; //float m_crossingAngle, m_betastar, m_intensity1, m_intensity2, m_energy, m_delivLumi, m_recLumi; std::vector<std::vector<unsigned long long> > m_timeParams; //cond::Time_t m_createTime, m_beginTime, m_endTime; std::vector<std::vector<std::string> > m_stringParams; //std::string m_injectionScheme; //std::vector<std::vector<float> > m_farrayParams; //std::vector<std::vector<float> > m_iarrayParams; //std::vector<float> m_lumiPerBX; //BEWARE: since CMS counts bunches starting from one, //the size of the bitset must be incremented by one, //in order to avoid off-by-one std::bitset<bunchSlots+1> m_bunchConfiguration1, m_bunchConfiguration2; COND_SERIALIZABLE; }; std::ostream & operator<<( std::ostream &, LHCInfo fillInfo ); #endif // CondFormats_RunInfo_LHCInfo_H
[ "giacomo.govi@cern.ch" ]
giacomo.govi@cern.ch
923f44366fcaf04b6bc818291c295dd1fd728453
bbcda48854d6890ad029d5973e011d4784d248d2
/trunk/win/Source/Includes/QtIncludes/src/3rdparty/phonon/phonon/pulsesupport.h
3b773cb5ca56445e97260dbfc1ad66540f9ef4ab
[ "MIT", "curl", "LGPL-2.1-or-later", "BSD-3-Clause", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "LGPL-2.1-only", "Zlib", "LicenseRef-scancode-unknown", "LicenseRef-scancode-unknown-license-reference", "MS-LPL" ]
permissive
dyzmapl/BumpTop
9c396f876e6a9ace1099b3b32e45612a388943ff
1329ea41411c7368516b942d19add694af3d602f
refs/heads/master
2020-12-20T22:42:55.100473
2020-01-25T21:00:08
2020-01-25T21:00:08
236,229,087
0
0
Apache-2.0
2020-01-25T20:58:59
2020-01-25T20:58:58
null
UTF-8
C++
false
false
2,878
h
/* This file is part of the KDE project Copyright (C) 2009 Colin Guthrie <cguthrie@mandriva.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) version 3, or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), Nokia Corporation (or its successors, if any) and the KDE Free Qt Foundation, which shall act as a proxy defined in Section 6 of version 3 of the license. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see <http://www.gnu.org/licenses/>. */ #ifndef PHONON_PULSESUPPORT_H #define PHONON_PULSESUPPORT_H #include "phonon_export.h" #include "phononnamespace.h" #include "objectdescription.h" #include <QtCore/QtGlobal> #include <QtCore/QSet> QT_BEGIN_HEADER QT_BEGIN_NAMESPACE namespace Phonon { class PHONON_EXPORT PulseSupport : public QObject { Q_OBJECT public: static PulseSupport* getInstance(); static void shutdown(); bool isActive(); void enable(bool enabled = true); QList<int> objectDescriptionIndexes(ObjectDescriptionType type) const; QHash<QByteArray, QVariant> objectDescriptionProperties(ObjectDescriptionType type, int index) const; QList<int> objectIndexesByCategory(ObjectDescriptionType type, Category category) const; void setOutputDevicePriorityForCategory(Category category, QList<int> order); void setCaptureDevicePriorityForCategory(Category category, QList<int> order); void setStreamPropList(Category category, QString streamUuid); void emitObjectDescriptionChanged(ObjectDescriptionType); void emitUsingDevice(QString streamUuid, int device); bool setOutputDevice(QString streamUuid, int device); bool setCaptureDevice(QString streamUuid, int device); void clearStreamCache(QString streamUuid); signals: void objectDescriptionChanged(ObjectDescriptionType); void usingDevice(QString streamUuid, int device); private: PulseSupport(); ~PulseSupport(); bool mEnabled; }; } // namespace Phonon QT_END_NAMESPACE QT_END_HEADER #endif // PHONON_PULSESUPPORT_H
[ "anandx@google.com" ]
anandx@google.com
eb6e8051671ecb1746248465143f6aa3f02dd9ff
8804710e5e0c7187940688ba0bdf578bd5fbfbd5
/src/leafepfrender.cpp
de6a4342b1e437e6cdb5069807b299691fd85106
[]
no_license
DreamLogics/leaf-epf-render
fae8743c3cb70485490e8c920abb95642f2398f5
7c41035e0711f4fb30233a4ed198b8a7681a4054
refs/heads/master
2020-12-30T10:50:12.519692
2014-05-07T11:55:58
2014-05-07T11:55:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,016
cpp
/**************************************************************************** ** ** LEAF EPF Render engine ** http://leaf.dreamlogics.com/ ** ** Copyright (C) 2014 DreamLogics ** ** This program is free software: you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published ** by the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU Lesser General Public License for more details. ** ** You should have received a copy of the GNU Lesser General Public License ** along with this program. If not, see <http://www.gnu.org/licenses/>. ** ****************************************************************************/ #include "leafepfrender.h" using namespace LEAFEPF; Leafepfrender::Leafepfrender() { }
[ "sladage@gmail.com" ]
sladage@gmail.com
9c9425896b52d5678ffee7c27c0f2dac20f1e40d
b85d2e77ffe5500c1f0028e6ba981d01eab558c6
/fm_editarprodutovenda.h
9dbe03d12a60d7fc58e32cf18768d72c73246504
[]
no_license
italoribeiroc/ControlEstoque
297728fe9b5dc2547956746b0845da348e1c780c
56162972cd79bb9c886c291110e4a88b7cfcb4f5
refs/heads/master
2021-05-23T15:25:38.994579
2020-11-25T19:09:25
2020-11-25T19:09:25
253,360,175
0
1
null
null
null
null
UTF-8
C++
false
false
477
h
#ifndef FM_EDITARPRODUTOVENDA_H #define FM_EDITARPRODUTOVENDA_H #include <QDialog> namespace Ui { class fm_editarprodutovenda; } class fm_editarprodutovenda : public QDialog { Q_OBJECT public: explicit fm_editarprodutovenda(QWidget *parent = nullptr); ~fm_editarprodutovenda(); private slots: void on_btn_edita_confirma_clicked(); void on_btn_edita_cancela_clicked(); private: Ui::fm_editarprodutovenda *ui; }; #endif // FM_EDITARPRODUTOVENDA_H
[ "italoribeiro@estudante.ufscar.br" ]
italoribeiro@estudante.ufscar.br
5586e5ce8cd97f87e60f029f26d47890a68770e2
cd80eaf874c15a8153d8fe231482adc70bb10c6a
/chrome/browser/ash/borealis/borealis_game_mode_controller_unittest.cc
1246fc9448de805017d069f3061b55fce93bd35e
[ "BSD-3-Clause" ]
permissive
zfzlinux/chromium
5e34e4344ebddf676b15c263c8ea388ac72d7e79
c91a38ba6259025d8845b876728ea99d0a656a47
refs/heads/main
2023-03-20T10:25:47.790851
2021-04-20T02:50:07
2021-04-20T02:50:07
359,669,150
1
0
BSD-3-Clause
2021-04-20T03:13:55
2021-04-20T03:13:54
null
UTF-8
C++
false
false
5,263
cc
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ash/borealis/borealis_game_mode_controller.h" #include "ash/test/test_widget_builder.h" #include "base/memory/ptr_util.h" #include "chrome/browser/ash/borealis/borealis_features.h" #include "chrome/browser/ash/borealis/borealis_service_fake.h" #include "chrome/browser/ash/borealis/borealis_window_manager.h" #include "chrome/test/base/chrome_ash_test_base.h" #include "chrome/test/base/testing_profile.h" #include "components/exo/shell_surface_util.h" #include "ui/aura/window.h" #include "ui/views/widget/widget.h" #include "ui/wm/core/window_util.h" namespace borealis { namespace { class BorealisGameModeControllerTest : public ChromeAshTestBase { protected: void SetUp() override { ChromeAshTestBase::SetUp(); profile_ = std::make_unique<TestingProfile>(); service_fake_ = BorealisServiceFake::UseFakeForTesting(profile_.get()); window_manager_ = std::make_unique<BorealisWindowManager>(profile_.get()); service_fake_->SetWindowManagerForTesting(window_manager_.get()); game_mode_controller_ = std::make_unique<BorealisGameModeController>(); features_ = std::make_unique<BorealisFeatures>(profile_.get()); service_fake_->SetFeaturesForTesting(features_.get()); } void TearDown() override { game_mode_controller_.reset(); ChromeAshTestBase::TearDown(); } std::unique_ptr<views::Widget> CreateTestWidget(std::string name, bool fullscreen = false) { ash::TestWidgetBuilder builder; builder.SetShow(false); std::unique_ptr<views::Widget> widget = builder.BuildOwnsNativeWidget(); exo::SetShellApplicationId(widget->GetNativeWindow(), name); if (fullscreen) { widget->SetFullscreen(true); } widget->Show(); return widget; } std::unique_ptr<TestingProfile> profile_; std::unique_ptr<BorealisWindowManager> window_manager_; std::unique_ptr<BorealisGameModeController> game_mode_controller_; std::unique_ptr<BorealisFeatures> features_; BorealisServiceFake* service_fake_; }; TEST_F(BorealisGameModeControllerTest, ChangingFullScreenTogglesGameMode) { std::unique_ptr<views::Widget> test_widget = CreateTestWidget("org.chromium.borealis.foo", true); aura::Window* window = test_widget->GetNativeWindow(); EXPECT_TRUE(ash::WindowState::Get(window)->IsFullscreen()); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); test_widget->SetFullscreen(false); EXPECT_FALSE(ash::WindowState::Get(window)->IsFullscreen()); EXPECT_EQ(nullptr, game_mode_controller_->GetGameModeForTesting()); } TEST_F(BorealisGameModeControllerTest, NonBorealisWindowDoesNotEnterGameMode) { std::unique_ptr<aura::Window> window = CreateTestWindow(); views::Widget::GetTopLevelWidgetForNativeView(window.get()) ->SetFullscreen(true); EXPECT_TRUE(ash::WindowState::Get(window.get())->IsFullscreen()); EXPECT_EQ(nullptr, game_mode_controller_->GetGameModeForTesting()); } TEST_F(BorealisGameModeControllerTest, SwitchingWindowsTogglesGameMode) { std::unique_ptr<views::Widget> test_widget = CreateTestWidget("org.chromium.borealis.foo", true); aura::Window* window = test_widget->GetNativeWindow(); EXPECT_TRUE(ash::WindowState::Get(window)->IsFullscreen()); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); std::unique_ptr<views::Widget> other_test_widget = CreateTestWidget("org.chromium.borealis.bar"); aura::Window* other_window = other_test_widget->GetNativeWindow(); EXPECT_TRUE(other_window->HasFocus()); EXPECT_EQ(nullptr, game_mode_controller_->GetGameModeForTesting()); window->Focus(); EXPECT_TRUE(ash::WindowState::Get(window)->IsFullscreen()); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); } TEST_F(BorealisGameModeControllerTest, DestroyingWindowExitsGameMode) { std::unique_ptr<views::Widget> test_widget = CreateTestWidget("org.chromium.borealis.foo", true); aura::Window* window = test_widget->GetNativeWindow(); EXPECT_TRUE(ash::WindowState::Get(window)->IsFullscreen()); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); test_widget.reset(); EXPECT_EQ(nullptr, game_mode_controller_->GetGameModeForTesting()); } TEST_F(BorealisGameModeControllerTest, SwitchingWindowsMaintainsGameMode) { std::unique_ptr<views::Widget> test_widget = CreateTestWidget("org.chromium.borealis.foo", true); aura::Window* window = test_widget->GetNativeWindow(); BorealisGameModeController::ScopedGameMode* game_mode = game_mode_controller_->GetGameModeForTesting(); EXPECT_NE(nullptr, game_mode); std::unique_ptr<views::Widget> other_test_widget = CreateTestWidget("org.chromium.borealis.foo", true); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); EXPECT_EQ(game_mode, game_mode_controller_->GetGameModeForTesting()); window->Focus(); EXPECT_NE(nullptr, game_mode_controller_->GetGameModeForTesting()); EXPECT_EQ(game_mode, game_mode_controller_->GetGameModeForTesting()); } } // namespace } // namespace borealis
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
e06fe7946c23d99bc34a471f245d6ad4f1e48996
9e19abf3b4f91884e49f461129ef2dfdd1d966cc
/main.cpp
71a03cb8328aacc2549b5d8640d49f387bb600d3
[]
no_license
joanmolinas/Conjunt
036ffe366f4f50e5dc31a5e1ca8fcb15f0af8215
8c54c939900008e34f6cc41c8a067c87b7ece3e4
refs/heads/master
2021-06-03T10:23:26.343277
2016-10-12T21:54:29
2016-10-12T21:54:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
386
cpp
#include <iostream> #include "conjunt.hpp" using namespace std; string show_bool(bool b) { return b ? "true" : "false"; } int main() { conjunt<int> a; conjunt<int> b; b.insereix(11); b.intersectar(a); b.print(cout); cout<<a.card()<<endl; try { a.min(); } catch(error e) { cout<<"necessita que estigui ple"<<endl; } return 0; }
[ "joanmramon@gmail.com" ]
joanmramon@gmail.com
9e308a9abc95b27471cb81d8f57d6e18ff9f334c
522a944acfc5798d6fb70d7a032fbee39cc47343
/d6k/trunk/src/scadastudio/standarview.h
2ab418fbc1747399fe40d75876218d61c6666e0c
[]
no_license
liuning587/D6k2.0master
50275acf1cb0793a3428e203ac7ff1e04a328a50
254de973a0fbdd3d99b651ec1414494fe2f6b80f
refs/heads/master
2020-12-30T08:21:32.993147
2018-03-30T08:20:50
2018-03-30T08:20:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
690
h
#ifndef STANDARDVIEW_H #define STANDARDVIEW_H #include <QMainWindow> #include <QPushButton> #include "tableview.h" #include "scadastudio/base.h" class IMainWindow; class CStandardView : public QMainWindow, public IBase { Q_OBJECT public: CStandardView(IMainWindow *pUi, QString strTagName, QString descName, QString strTableName, int nType); ~CStandardView(); void closeEvent(QCloseEvent * event); virtual void Save() { } public slots: void OnOk(); void OnDelete(); private: CTableView *m_pTalbeView; //CDbapplitonapi *m_pDbi; QPushButton *m_pOkButton; QPushButton *m_pCancelButton; QPushButton *m_pDeleteButton; IMainWindow *m_pUi; }; #endif // STANDARDVIEW_H
[ "xingzhibing_ab@hotmail.com" ]
xingzhibing_ab@hotmail.com
07e6fd49d43f0c991896c79c38261ee19a3dd1c2
ba9485e8ea33acee24dc7bd61049ecfe9f8b8930
/ac/prev/abc152_a.cpp
281d1ffe08bc69546e19eeb79556d31794e53f3e
[]
no_license
diohabara/competitive_programming
a0b90a74b0b923a636b9c82c75b690fef11fe8a4
1fb493eb44ce03e289d1245bf7d3dc450f513135
refs/heads/master
2021-12-11T22:43:40.925262
2021-11-06T12:56:49
2021-11-06T12:56:49
166,757,685
1
0
null
null
null
null
UTF-8
C++
false
false
501
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> pll; #define rep(i, n) for (ll i = 0; i < (ll)n; ++i) #define all(obj) (obj).begin(), (obj).end() static const int dx[4] = {0, 1, 0, -1}; static const int dy[4] = {1, 0, -1, 0}; static const char dir[4] = {'u', 'r', 'd', 'l'}; static const ll INF = 1ll << 60; static const ll MOD = 1e9 + 7; int N, M; signed main() { cin >> N >> M; if (N <= M) { puts("Yes"); } else { puts("No"); } return 0; }
[ "kadoitakemaru0902@g.ecc.u-tokyo.ac.jp" ]
kadoitakemaru0902@g.ecc.u-tokyo.ac.jp
d3b9b42bdd4a4699d15bea7043a97ab877b25aff
cceeae2a1aed9d3e4443b62d744781d8896af6bd
/opennn/opennn/conjugate_gradient.cpp
885be868a16266e7fabdee147f4effabb4ee74c8
[]
no_license
mode89/go-trainer
02cf7c07b61ae912a59f329ba001099c6347af6e
d7e3e483713c38bb6e5e81c5ed420ece91fc6feb
refs/heads/master
2021-01-15T22:34:22.096083
2015-02-26T03:14:47
2015-02-26T03:14:47
31,157,627
1
0
null
null
null
null
UTF-8
C++
false
false
98,201
cpp
/****************************************************************************************************************/ /* */ /* OpenNN: Open Neural Networks Library */ /* www.intelnics.com/opennn */ /* */ /* C O N J U G A T E G R A D I E N T C L A S S */ /* */ /* Roberto Lopez */ /* Intelnics - Making intelligent use of data */ /* robertolopez@intelnics.com */ /* */ /****************************************************************************************************************/ // $Id: conjugate_gradient.cpp 30 2014-12-26 18:29:17Z uwrobertolopez $ // OpenNN includes #include "conjugate_gradient.h" namespace OpenNN { // DEFAULT CONSTRUCTOR /// Default constructor. /// It creates a conjugate gradient training algorithm object not associated to any performance functional object. /// It also initializes the class members to their default values. ConjugateGradient::ConjugateGradient(void) : TrainingAlgorithm() { set_default(); } // GENERAL CONSTRUCTOR /// General constructor. /// It creates a conjugate gradient training algorithm associated to a performance functional object. /// It also initializes the rest of class members to their default values. /// @param new_performance_functional_pointer Pointer to a performance functional object. ConjugateGradient::ConjugateGradient(PerformanceFunctional* new_performance_functional_pointer) : TrainingAlgorithm(new_performance_functional_pointer) { training_rate_algorithm.set_performance_functional_pointer(new_performance_functional_pointer); set_default(); } // XML CONSTRUCTOR /// XML constructor. /// It creates a conjugate gradient training algorithm not associated to any performance functional object. /// It also loads the class members from a XML document. /// @param conjugate_gradient_document TinyXML document with the members of a conjugate gradient object. ConjugateGradient::ConjugateGradient(const tinyxml2::XMLDocument& conjugate_gradient_document) : TrainingAlgorithm(conjugate_gradient_document) { set_default(); from_XML(conjugate_gradient_document); } // DESTRUCTOR /// Destructor. ConjugateGradient::~ConjugateGradient(void) { } // METHODS // const TrainingRateAlgorithm& get_training_rate_algorithm(void) const method /// Returns a constant reference to the training rate algorithm object inside the conjugate gradient method object. const TrainingRateAlgorithm& ConjugateGradient::get_training_rate_algorithm(void) const { return(training_rate_algorithm); } // TrainingRateAlgorithm* get_training_rate_algorithm_pointer(void) method /// Returns a pointer to the training rate algorithm object inside the conjugate gradient method object. TrainingRateAlgorithm* ConjugateGradient::get_training_rate_algorithm_pointer(void) { return(&training_rate_algorithm); } // TrainingDirectionMethod get_training_direction_method(void) const method /// Returns the conjugate gradient training direction method used for training. const ConjugateGradient::TrainingDirectionMethod& ConjugateGradient::get_training_direction_method(void) const { return(training_direction_method); } // std::string write_training_direction_method(void) const method /// Returns a string with the name of the training direction. std::string ConjugateGradient::write_training_direction_method(void) const { switch(training_direction_method) { case PR: { return("PR"); } break; case FR: { return("FR"); } break; default: { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "std::string write_training_direction_method(void) const method.\n" << "Unknown training direction method.\n"; throw std::logic_error(buffer.str()); } break; } } // const double& get_warning_parameters_norm(void) const method /// Returns the minimum value for the norm of the parameters vector at wich a warning message is written to the screen. const double& ConjugateGradient::get_warning_parameters_norm(void) const { return(warning_parameters_norm); } // const double& get_warning_gradient_norm(void) const method /// Returns the minimum value for the norm of the gradient vector at wich a warning message is written to the screen. const double& ConjugateGradient::get_warning_gradient_norm(void) const { return(warning_gradient_norm); } // const double& get_warning_training_rate(void) const method /// Returns the training rate value at wich a warning message is written to the screen during line minimization. const double& ConjugateGradient::get_warning_training_rate(void) const { return(warning_training_rate); } // const double& get_error_parameters_norm(void) const method /// Returns the value for the norm of the parameters vector at wich an error message is written to the screen and the program exits. const double& ConjugateGradient::get_error_parameters_norm(void) const { return(error_parameters_norm); } // const double& get_error_gradient_norm(void) const method /// Returns the value for the norm of the gradient vector at wich an error message is written /// to the screen and the program exits. const double& ConjugateGradient::get_error_gradient_norm(void) const { return(error_gradient_norm); } // const double& get_error_training_rate(void) const method /// Returns the training rate value at wich the line minimization algorithm is assumed to fail when /// bracketing a minimum. const double& ConjugateGradient::get_error_training_rate(void) const { return(error_training_rate); } // const double& get_minimum_parameters_increment_norm(void) const method /// Returns the minimum norm of the parameter increment vector used as a stopping criteria when training. const double& ConjugateGradient::get_minimum_parameters_increment_norm(void) const { return(minimum_parameters_increment_norm); } // const double& get_minimum_performance_increase(void) const method /// Returns the minimum performance improvement during training. const double& ConjugateGradient::get_minimum_performance_increase(void) const { return(minimum_performance_increase); } // const double& get_performance_goal(void) const method /// Returns the goal value for the performance. /// This is used as a stopping criterion when training a multilayer perceptron const double& ConjugateGradient::get_performance_goal(void) const { return(performance_goal); } // const double& get_gradient_norm_goal(void) const method /// Returns the goal value for the norm of the objective function gradient. /// This is used as a stopping criterion when training a multilayer perceptron const double& ConjugateGradient::get_gradient_norm_goal(void) const { return(gradient_norm_goal); } // const size_t& get_maximum_generalization_performance_decreases(void) const method /// Returns the maximum number of generalization failures during the training process. const size_t& ConjugateGradient::get_maximum_generalization_performance_decreases(void) const { return(maximum_generalization_performance_decreases); } // const size_t& get_maximum_iterations_number(void) const method /// Returns the maximum number of iterations for training. const size_t& ConjugateGradient::get_maximum_iterations_number(void) const { return(maximum_iterations_number); } // const double& get_maximum_time(void) const method /// Returns the maximum training time. const double& ConjugateGradient::get_maximum_time(void) const { return(maximum_time); } // const bool& get_reserve_parameters_history(void) const method /// Returns true if the parameters history matrix is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_parameters_history(void) const { return(reserve_parameters_history); } // const bool& get_reserve_parameters_norm_history(void) const method /// Returns true if the parameters norm history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_parameters_norm_history(void) const { return(reserve_parameters_norm_history); } // const bool& get_reserve_performance_history(void) const method /// Returns true if the performance history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_performance_history(void) const { return(reserve_performance_history); } // const bool& get_reserve_gradient_history(void) const method /// Returns true if the gradient history vector of vectors is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_gradient_history(void) const { return(reserve_gradient_history); } // const bool& get_reserve_gradient_norm_history(void) const method /// Returns true if the gradient norm history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_gradient_norm_history(void) const { return(reserve_gradient_norm_history); } // const bool& get_reserve_training_direction_history(void) const method /// Returns true if the training direction history matrix is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_training_direction_history(void) const { return(reserve_training_direction_history); } // const bool& get_reserve_training_rate_history(void) const method /// Returns true if the training rate history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_training_rate_history(void) const { return(reserve_training_rate_history); } // const bool& get_reserve_elapsed_time_history(void) const method /// Returns true if the elapsed time history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_elapsed_time_history(void) const { return(reserve_elapsed_time_history); } // const bool& get_reserve_generalization_performance_history(void) const method /// Returns true if the Generalization performance history vector is to be reserved, and false otherwise. const bool& ConjugateGradient::get_reserve_generalization_performance_history(void) const { return(reserve_generalization_performance_history); } // void set_performance_functional_pointer(PerformanceFunctional*) method /// Sets a pointer to a performance functional object to be associated to the conjugate gradient object. /// It also sets that performance functional to the training rate algorithm. /// @param new_performance_functional_pointer Pointer to a performance functional object. void ConjugateGradient::set_performance_functional_pointer(PerformanceFunctional* new_performance_functional_pointer) { performance_functional_pointer = new_performance_functional_pointer; training_rate_algorithm.set_performance_functional_pointer(new_performance_functional_pointer); } // void set_training_direction_method(const TrainingDirectionMethod&) method /// Sets a new training direction method to be used for training. /// @param new_training_direction_method Conjugate gradient training direction method. void ConjugateGradient::set_training_direction_method (const ConjugateGradient::TrainingDirectionMethod& new_training_direction_method) { training_direction_method = new_training_direction_method; } // void set_training_direction_method(const std::string&) method /// Sets a new conjugate gradient training direction from a string representation. /// Possible values are: /// <ul> /// <li> "PR" /// <li> "FR" /// </ul> /// @param new_training_direction_method_name String with the name of the training direction method. void ConjugateGradient::set_training_direction_method(const std::string& new_training_direction_method_name) { if(new_training_direction_method_name == "PR") { training_direction_method = PR; } else if(new_training_direction_method_name == "FR") { training_direction_method = FR; } else { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_training_direction_method(const std::string&) method.\n" << "Unknown training direction method: " << new_training_direction_method_name << ".\n"; throw std::logic_error(buffer.str()); } } // void set_reserve_all_training_history(bool) method /// Makes the training history of all variables to reseved or not in memory when training. /// <ul> /// <li> Parameters. /// <li> Parameters norm. /// <li> performance. /// <li> Gradient. /// <li> Gradient norm. /// <li> Generalization performance. /// <li> Training direction. /// <li> Training direction norm. /// <li> Training rate. /// </ul> /// /// @param new_reserve_all_training_history True if all training history variables are to be reserved, /// false otherwise. void ConjugateGradient::set_reserve_all_training_history(const bool& new_reserve_all_training_history) { // Multilayer perceptron reserve_parameters_history = new_reserve_all_training_history; reserve_parameters_norm_history = new_reserve_all_training_history; // Performance functional reserve_performance_history = new_reserve_all_training_history; reserve_gradient_history = new_reserve_all_training_history; reserve_gradient_norm_history = new_reserve_all_training_history; reserve_generalization_performance_history = new_reserve_all_training_history; // Training algorithm reserve_training_direction_history = new_reserve_all_training_history; reserve_training_rate_history = new_reserve_all_training_history; reserve_elapsed_time_history = new_reserve_all_training_history; } // void set_default(void) method /// Sets the default values into a conjugate gradient object. /// Training operators: /// <ul> /// <li> Training direction method = Polak-Ribiere; /// <li> Training rate method = Brent; /// </ul> /// Training parameters: /// <ul> /// <li> First training rate: 1.0. /// <li> Bracketing factor: 2.0. /// <li> Training rate tolerance: 1.0e-3. /// </ul> /// Stopping criteria: /// <ul> /// <li> Performance goal: -1.0e99. /// <li> Gradient norm goal: 0.0. /// <li> Maximum training time: 1.0e6. /// <li> Maximum number of iterations: 100. /// </ul> /// User stuff: /// <ul> /// <li> Warning training rate: 1.0e6. /// <li> Error training rate: 1.0e12. /// <li> Display: true. /// <li> Display period: 10. /// <li> Save period: 0. /// </ul> /// Reserve: /// <ul> /// <li> Reserve training direction history: false. /// <li> Reserve training direction norm history: false. /// <li> Reserve training rate history: false. /// </ul> /// void ConjugateGradient::set_default(void) { // TRAINING PARAMETERS warning_parameters_norm = 1.0e6; warning_gradient_norm = 1.0e6; warning_training_rate = 1.0e6; error_parameters_norm = 1.0e9; error_gradient_norm = 1.0e9; error_training_rate = 1.0e9; // STOPPING CRITERIA minimum_parameters_increment_norm = 0.0; minimum_performance_increase = 0.0; performance_goal = -1.0e99; gradient_norm_goal = 0.0; maximum_generalization_performance_decreases = 1000000; maximum_iterations_number = 1000; maximum_time = 1000.0; // TRAINING HISTORY reserve_parameters_history = false; reserve_parameters_norm_history = false; reserve_performance_history = true; reserve_gradient_history = false; reserve_gradient_norm_history = false; reserve_generalization_performance_history = false; reserve_training_direction_history = false; reserve_training_rate_history = false; reserve_elapsed_time_history = false; // UTILITIES display = true; display_period = 10; display_period = 0; training_direction_method = PR; } // void set_warning_parameters_norm(const double&) method /// Sets a new value for the parameters vector norm at which a warning message is written to the /// screen. /// @param new_warning_parameters_norm Warning norm of parameters vector value. void ConjugateGradient::set_warning_parameters_norm(const double& new_warning_parameters_norm) { // Control sentence (if debug) #ifndef NDEBUG if(new_warning_parameters_norm < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_warning_parameters_norm(const double&) method.\n" << "Warning parameters norm must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set warning parameters norm warning_parameters_norm = new_warning_parameters_norm; } // void set_warning_gradient_norm(const double&) method /// Sets a new value for the gradient vector norm at which /// a warning message is written to the screen. /// @param new_warning_gradient_norm Warning norm of gradient vector value. void ConjugateGradient::set_warning_gradient_norm(const double& new_warning_gradient_norm) { // Control sentence (if debug) #ifndef NDEBUG if(new_warning_gradient_norm < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_warning_gradient_norm(const double&) method.\n" << "Warning gradient norm must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set warning gradient norm warning_gradient_norm = new_warning_gradient_norm; } // void set_warning_training_rate(const double&) method /// Sets a new training rate value at wich a warning message is written to the screen during line /// minimization. /// @param new_warning_training_rate Warning training rate value. void ConjugateGradient::set_warning_training_rate(const double& new_warning_training_rate) { // Control sentence (if debug) #ifndef NDEBUG if(new_warning_training_rate < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_warning_training_rate(const double&) method.\n" << "Warning training rate must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif warning_training_rate = new_warning_training_rate; } // void set_error_parameters_norm(const double&) method /// Sets a new value for the parameters vector norm at which an error message is written to the /// screen and the program exits. /// @param new_error_parameters_norm Error norm of parameters vector value. void ConjugateGradient::set_error_parameters_norm(const double& new_error_parameters_norm) { // Control sentence (if debug) #ifndef NDEBUG if(new_error_parameters_norm < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_error_parameters_norm(const double&) method.\n" << "Error parameters norm must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set error parameters norm error_parameters_norm = new_error_parameters_norm; } // void set_error_gradient_norm(const double&) method /// Sets a new value for the gradient vector norm at which an error message is written to the screen /// and the program exits. /// @param new_error_gradient_norm Error norm of gradient vector value. void ConjugateGradient::set_error_gradient_norm(const double& new_error_gradient_norm) { // Control sentence (if debug) #ifndef NDEBUG if(new_error_gradient_norm < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_error_gradient_norm(const double&) method.\n" << "Error gradient norm must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set error gradient norm error_gradient_norm = new_error_gradient_norm; } // void set_error_training_rate(const double&) method /// Sets a new training rate value at wich a the line minimization algorithm is assumed to fail when /// bracketing a minimum. /// @param new_error_training_rate Error training rate value. void ConjugateGradient::set_error_training_rate(const double& new_error_training_rate) { // Control sentence (if debug) #ifndef NDEBUG if(new_error_training_rate < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_error_training_rate(const double&) method.\n" << "Error training rate must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set error training rate error_training_rate = new_error_training_rate; } // void set_minimum_parameters_increment_norm(const double&) method /// Sets a new value for the minimum parameters increment norm stopping criterion. /// @param new_minimum_parameters_increment_norm Value of norm of parameters increment norm used to stop training. void ConjugateGradient::set_minimum_parameters_increment_norm(const double& new_minimum_parameters_increment_norm) { // Control sentence (if debug) #ifndef NDEBUG if(new_minimum_parameters_increment_norm < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void new_minimum_parameters_increment_norm(const double&) method.\n" << "Minimum parameters increment norm must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set error training rate minimum_parameters_increment_norm = new_minimum_parameters_increment_norm; } // void set_minimum_performance_increase(const double&) method /// Sets a new minimum performance improvement during training. /// @param new_minimum_performance_increase Minimum improvement in the performance between two iterations. void ConjugateGradient::set_minimum_performance_increase(const double& new_minimum_performance_increase) { // Control sentence (if debug) #ifndef NDEBUG if(new_minimum_performance_increase < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_minimum_performance_increase(const double&) method.\n" << "Minimum performance improvement must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set minimum performance improvement minimum_performance_increase = new_minimum_performance_increase; } // void set_performance_goal(const double&) method /// Sets a new goal value for the performance. /// This is used as a stopping criterion when training a multilayer perceptron /// @param new_performance_goal Goal value for the performance. void ConjugateGradient::set_performance_goal(const double& new_performance_goal) { performance_goal = new_performance_goal; } // void set_gradient_norm_goal(const double&) method /// Sets a new the goal value for the norm of the objective function gradient. /// This is used as a stopping criterion when training a multilayer perceptron /// @param new_gradient_norm_goal Goal value for the norm of the objective function gradient. void ConjugateGradient::set_gradient_norm_goal(const double& new_gradient_norm_goal) { // Control sentence (if debug) #ifndef NDEBUG if(new_gradient_norm_goal < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_gradient_norm_goal(const double&) method.\n" << "Gradient norm goal must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set gradient norm goal gradient_norm_goal = new_gradient_norm_goal; } // void set_maximum_generalization_performance_decreases(const size_t&) method /// Sets a new maximum number of generalization failures. /// @param new_maximum_generalization_performance_decreases Maximum number of iterations in which the generalization evalutation decreases. void ConjugateGradient::set_maximum_generalization_performance_decreases(const size_t& new_maximum_generalization_performance_decreases) { maximum_generalization_performance_decreases = new_maximum_generalization_performance_decreases; } // void set_maximum_iterations_number(size_t) method /// Sets a maximum number of iterations for training. /// @param new_maximum_iterations_number Maximum number of iterations for training. void ConjugateGradient::set_maximum_iterations_number(const size_t& new_maximum_iterations_number) { maximum_iterations_number = new_maximum_iterations_number; } // void set_maximum_time(const double&) method /// Sets a new maximum training time. /// @param new_maximum_time Maximum training time. void ConjugateGradient::set_maximum_time(const double& new_maximum_time) { // Control sentence (if debug) #ifndef NDEBUG if(new_maximum_time < 0.0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_maximum_time(const double&) method.\n" << "Maximum time must be equal or greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif // Set maximum time maximum_time = new_maximum_time; } // void set_reserve_parameters_history(bool) method /// Makes the parameters history vector of vectors to be reseved or not in memory. /// @param new_reserve_parameters_history True if the parameters history vector of vectors is to be reserved, false otherwise. void ConjugateGradient::set_reserve_parameters_history(const bool& new_reserve_parameters_history) { reserve_parameters_history = new_reserve_parameters_history; } // void set_reserve_parameters_norm_history(bool) method /// Makes the parameters norm history vector to be reseved or not in memory. /// @param new_reserve_parameters_norm_history True if the parameters norm history vector is to be reserved, false otherwise. void ConjugateGradient::set_reserve_parameters_norm_history(const bool& new_reserve_parameters_norm_history) { reserve_parameters_norm_history = new_reserve_parameters_norm_history; } // void set_reserve_performance_history(bool) method /// Makes the performance history vector to be reseved or not in memory. /// @param new_reserve_performance_history True if the performance history vector is to be reserved, false otherwise. void ConjugateGradient::set_reserve_performance_history(const bool& new_reserve_performance_history) { reserve_performance_history = new_reserve_performance_history; } // void set_reserve_gradient_history(bool) method /// Makes the gradient history vector of vectors to be reseved or not in memory. /// @param new_reserve_gradient_history True if the gradient history matrix is to be reserved, false otherwise. void ConjugateGradient::set_reserve_gradient_history(const bool& new_reserve_gradient_history) { reserve_gradient_history = new_reserve_gradient_history; } // void set_reserve_gradient_norm_history(bool) method /// Makes the gradient norm history vector to be reseved or not in memory. /// @param new_reserve_gradient_norm_history True if the gradient norm history matrix is to be reserved, false /// otherwise. void ConjugateGradient::set_reserve_gradient_norm_history(const bool& new_reserve_gradient_norm_history) { reserve_gradient_norm_history = new_reserve_gradient_norm_history; } // void set_reserve_training_direction_history(bool) method /// Makes the training direction history vector of vectors to be reseved or not in memory. /// @param new_reserve_training_direction_history True if the training direction history matrix is to be reserved, /// false otherwise. void ConjugateGradient::set_reserve_training_direction_history(const bool& new_reserve_training_direction_history) { reserve_training_direction_history = new_reserve_training_direction_history; } // void set_reserve_training_rate_history(bool) method /// Makes the training rate history vector to be reseved or not in memory. /// @param new_reserve_training_rate_history True if the training rate history vector is to be reserved, false /// otherwise. void ConjugateGradient::set_reserve_training_rate_history(const bool& new_reserve_training_rate_history) { reserve_training_rate_history = new_reserve_training_rate_history; } // void set_reserve_elapsed_time_history(bool) method /// Makes the elapsed time over the iterations to be reseved or not in memory. This is a vector. /// @param new_reserve_elapsed_time_history True if the elapsed time history vector is to be reserved, false /// otherwise. void ConjugateGradient::set_reserve_elapsed_time_history(const bool& new_reserve_elapsed_time_history) { reserve_elapsed_time_history = new_reserve_elapsed_time_history; } // void set_reserve_generalization_performance_history(bool) method /// Makes the Generalization performance history to be reserved or not in memory. /// This is a vector. /// @param new_reserve_generalization_performance_history True if the Generalization performance history is to be reserved, false otherwise. void ConjugateGradient::set_reserve_generalization_performance_history(const bool& new_reserve_generalization_performance_history) { reserve_generalization_performance_history = new_reserve_generalization_performance_history; } // void set_display_period(size_t) method /// Sets a new number of iterations between the training showing progress. /// @param new_display_period /// Number of iterations between the training showing progress. void ConjugateGradient::set_display_period(const size_t& new_display_period) { // Control sentence (if debug) #ifndef NDEBUG if(new_display_period <= 0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_display_period(const double&) method.\n" << "Display period must be greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif display_period = new_display_period; } // void set_save_period(size_t) method /// Sets a new number of iterations between the training saving progress. /// @param new_save_period /// Number of iterations between the training saving progress. void ConjugateGradient::set_save_period(const size_t& new_save_period) { // Control sentence (if debug) #ifndef NDEBUG if(new_save_period <= 0) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void set_save_period(const double&) method.\n" << "Save period must be greater than 0.\n"; throw std::logic_error(buffer.str()); } #endif save_period = new_save_period; } // double calculate_FR_parameter(const Vector<double>&, const Vector<double>&) const method /// Returns the Fletcher-Reeves parameter used to calculate the training direction. /// /// @param old_gradient Previous objective function gradient. /// @param gradient: Current objective function gradient. double ConjugateGradient::calculate_FR_parameter(const Vector<double>& old_gradient, const Vector<double>& gradient) const { // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_FR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); const size_t old_gradient_size = old_gradient.size(); if(old_gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_FR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old gradient (" << old_gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_FR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif double FR_parameter = 0.0; const double numerator = gradient.dot(gradient); const double denominator = old_gradient.dot(old_gradient); // Prevent a possible division by 0 if(denominator == 0.0) { FR_parameter = 0.0; } else { FR_parameter = numerator/denominator; } // Bound the Fletcher-Reeves parameter between 0 and 1 if(FR_parameter < 0.0) FR_parameter = 0.0; if(FR_parameter > 1.0) FR_parameter = 1.0; return(FR_parameter); } // double calculate_PR_parameter(const Vector<double>&, const Vector<double>&) const method /// Returns the Polak-Ribiere parameter used to calculate the training direction. /// @param old_gradient Previous objective function gradient. /// @param gradient Current objective function gradient. double ConjugateGradient::calculate_PR_parameter(const Vector<double>& old_gradient, const Vector<double>& gradient) const { // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_PR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); const size_t old_gradient_size = old_gradient.size(); if(old_gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_PR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old gradient (" << old_gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "double calculate_PR_parameter(const Vector<double>&, const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif double PR_parameter = 0.0; const double numerator = (gradient-old_gradient).dot(gradient); const double denominator = old_gradient.dot(old_gradient); // Prevent a possible division by 0 if(denominator == 0.0) { PR_parameter = 0.0; } else { PR_parameter = numerator/denominator; } // Bound the Polak-Ribiere parameter between 0 and 1 if(PR_parameter < 0.0) { PR_parameter = 0.0; } if(PR_parameter > 1.0) { PR_parameter = 1.0; } return(PR_parameter); } // Vector<double> calculate_PR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method /// Returns the training direction using the Polak-Ribiere update. /// @param old_gradient Previous objective function gradient. /// @param gradient Current objective function gradient. /// @param old_training_direction Previous training direction vector. Vector<double> ConjugateGradient::calculate_PR_training_direction (const Vector<double>& old_gradient, const Vector<double>& gradient, const Vector<double>& old_training_direction) const { // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_PR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); const size_t old_gradient_size = old_gradient.size(); if(old_gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_PR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old gradient (" << old_gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_PR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t old_training_direction_size = old_training_direction.size(); if(old_training_direction_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_PR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old training direction (" << old_training_direction_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif const double PR_parameter = calculate_PR_parameter(old_gradient, gradient); const Vector<double> gradient_descent_term = calculate_gradient_descent_training_direction(gradient); const Vector<double> conjugate_direction_term = old_training_direction*PR_parameter; const Vector<double> PR_training_direction = gradient_descent_term + conjugate_direction_term; const double PR_training_direction_norm = PR_training_direction.calculate_norm(); return(PR_training_direction/PR_training_direction_norm); } // Vector<double> calculate_FR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method /// Returns the training direction using the Fletcher-Reeves update. /// @param old_gradient Previous objective function gradient. /// @param gradient Current objective function gradient. /// @param old_training_direction Previous training direction vector. Vector<double> ConjugateGradient::calculate_FR_training_direction (const Vector<double>& old_gradient, const Vector<double>& gradient, const Vector<double>& old_training_direction) const { // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_FR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); const size_t old_gradient_size = old_gradient.size(); if(old_gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_FR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old gradient (" << old_gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_FR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t old_training_direction_size = old_training_direction.size(); if(old_training_direction_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_FR_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old training direction (" << old_training_direction_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif const double FR_parameter = calculate_FR_parameter(old_gradient, gradient); const Vector<double> gradient_descent_term = calculate_gradient_descent_training_direction(gradient); const Vector<double> conjugate_direction_term = old_training_direction*FR_parameter; const Vector<double> FR_training_direction = gradient_descent_term + conjugate_direction_term; const double FR_training_direction_norm = FR_training_direction.calculate_norm(); return(FR_training_direction/FR_training_direction_norm); } // Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method /// Returns the conjugate gradient training direction, which has been previously normalized. /// @param old_gradient Gradient vector in the previous iteration. /// @param gradient Current gradient vector. /// @param old_training_direction Training direction in the previous iteration. Vector<double> ConjugateGradient::calculate_training_direction (const Vector<double>& old_gradient, const Vector<double>& gradient, const Vector<double>& old_training_direction) const { const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const size_t old_gradient_size = old_gradient.size(); if(old_gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old gradient (" << old_gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } const size_t old_training_direction_size = old_training_direction.size(); if(old_training_direction_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Size of old training direction (" << old_training_direction_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif switch(training_direction_method) { case FR: { return(calculate_FR_training_direction(old_gradient, gradient, old_training_direction)); } break; case PR: { return(calculate_PR_training_direction(old_gradient, gradient, old_training_direction)); } break; default: { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_training_direction(const Vector<double>&, const Vector<double>&, const Vector<double>&) const method.\n" << "Unknown training direction method: " << training_direction_method << ".\n"; throw std::logic_error(buffer.str()); } break; } // Never reach here const Vector<double> training_direction(parameters_number, 0.0); return(training_direction); } // Vector<double> calculate_gradient_descent_training_direction(const Vector<double>&) const method /// Returns the gradient descent training direction, which is the negative of the normalized gradient. /// @param gradient Gradient vector. Vector<double> ConjugateGradient::calculate_gradient_descent_training_direction(const Vector<double>& gradient) const { // Control sentence (if debug) #ifndef NDEBUG std::ostringstream buffer; if(!performance_functional_pointer) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_gradient_descent_training_direction(const Vector<double>&) const method.\n" << "Performance functional pointer is NULL.\n"; throw std::logic_error(buffer.str()); } const NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); const size_t gradient_size = gradient.size(); if(gradient_size != parameters_number) { buffer << "OpenNN Exception: ConjugateGradient class.\n" << "Vector<double> calculate_gradient_descent_training_direction(const Vector<double>&) const method.\n" << "Size of gradient (" << gradient_size << ") is not equal to number of parameters (" << parameters_number << ").\n"; throw std::logic_error(buffer.str()); } #endif return(gradient.calculate_normalized()*(-1.0)); } // void resize_training_history(const size_t&) method /// Resizes all the training history variables. /// @param new_size Size of training history variables. void ConjugateGradient::ConjugateGradientResults::resize_training_history(const size_t& new_size) { // Control sentence (if debug) #ifndef NDEBUG if(conjugate_gradient_pointer == NULL) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradientResults structure.\n" << "void resize_training_history(const size_t&) method.\n" << "Conjugate gradient pointer is NULL.\n"; throw std::logic_error(buffer.str()); } #endif if(conjugate_gradient_pointer->get_reserve_parameters_history()) { parameters_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_parameters_norm_history()) { parameters_norm_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_performance_history()) { performance_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_generalization_performance_history()) { generalization_performance_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_gradient_history()) { gradient_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_gradient_norm_history()) { gradient_norm_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_training_direction_history()) { training_direction_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_training_rate_history()) { training_rate_history.resize(new_size); } if(conjugate_gradient_pointer->get_reserve_elapsed_time_history()) { elapsed_time_history.resize(new_size); } } // std::string to_string(void) const method std::string ConjugateGradient::ConjugateGradientResults::to_string(void) const { std::ostringstream buffer; // Parameters history if(!parameters_history.empty()) { if(!parameters_history[0].empty()) { buffer << "% Parameters history:\n" << parameters_history << "\n"; } } // Parameters norm history if(!parameters_norm_history.empty()) { buffer << "% Parameters norm history:\n" << parameters_norm_history << "\n"; } // performance history if(!performance_history.empty()) { buffer << "% performance history:\n" << performance_history << "\n"; } // Generalization performance history if(!generalization_performance_history.empty()) { buffer << "% Generalization performance history:\n" << generalization_performance_history << "\n"; } // Gradient history if(!gradient_history.empty()) { if(!gradient_history[0].empty()) { buffer << "% Gradient history:\n" << gradient_history << "\n"; } } // Gradient norm history if(!gradient_norm_history.empty()) { buffer << "% Gradient norm history:\n" << gradient_norm_history << "\n"; } // Training direction history if(!training_direction_history.empty()) { if(!training_direction_history[0].empty()) { buffer << "% Training direction history:\n" << training_direction_history << "\n"; } } // Training rate history if(!training_rate_history.empty()) { buffer << "% Training rate history:\n" << training_rate_history << "\n"; } // Elapsed time history if(!elapsed_time_history.empty()) { buffer << "% Elapsed time history:\n" << elapsed_time_history << "\n"; } return(buffer.str()); } // Matrix<std::string> write_final_results(const size_t& precision) const method Matrix<std::string> ConjugateGradient::ConjugateGradientResults::write_final_results(const size_t& precision) const { std::ostringstream buffer; Vector<std::string> names; Vector<std::string> values; // Final parameters norm names.push_back("Final parameters norm"); buffer.str(""); buffer << std::setprecision(precision) << final_parameters_norm; values.push_back(buffer.str()); // Final performance names.push_back("Final performance"); buffer.str(""); buffer << std::setprecision(precision) << final_performance; values.push_back(buffer.str()); // Final generalization performance const PerformanceFunctional* performance_functional_pointer = conjugate_gradient_pointer->get_performance_functional_pointer(); if(performance_functional_pointer->has_generalization()) { names.push_back("Final generalization performance"); buffer.str(""); buffer << std::setprecision(precision) << final_generalization_performance; values.push_back(buffer.str()); } // Final gradient norm names.push_back("Final gradient norm"); buffer.str(""); buffer << std::setprecision(precision) << final_gradient_norm; values.push_back(buffer.str()); // Final training rate // names.push_back("Final training rate"); // buffer.str(""); // buffer << std::setprecision(precision) << final_training_rate; // values.push_back(buffer.str()); // Iterations number names.push_back("Iterations number"); buffer.str(""); buffer << iterations_number; values.push_back(buffer.str()); // Elapsed time names.push_back("Elapsed time"); buffer.str(""); buffer << elapsed_time; values.push_back(buffer.str()); const size_t rows_number = names.size(); const size_t columns_number = 2; Matrix<std::string> final_results(rows_number, columns_number); final_results.set_column(0, names); final_results.set_column(1, values); return(final_results); } // ConjugateGradientResults* perform_training(void) method /// Trains a neural network with an associated performance functional according to the conjugate gradient algorithm. /// Training occurs according to the training operators, training parameters and stopping criteria. ConjugateGradient::ConjugateGradientResults* ConjugateGradient::perform_training(void) { // Control sentence (if debug) #ifndef NDEBUG check(); #endif // Start training if(display) { std::cout << "Training with conjugate gradient...\n"; } ConjugateGradientResults* results_pointer = new ConjugateGradientResults(this); results_pointer->resize_training_history(maximum_iterations_number+1); // Elapsed time time_t beginning_time, current_time; time(&beginning_time); double elapsed_time; // Neural network stuff NeuralNetwork* neural_network_pointer = performance_functional_pointer->get_neural_network_pointer(); const size_t parameters_number = neural_network_pointer->count_parameters_number(); Vector<double> parameters = neural_network_pointer->arrange_parameters(); double parameters_norm; // Performance functional stuff double performance = 0.0; double old_performance = 0.0; double performance_increase = 0.0; Vector<double> gradient(parameters_number); double gradient_norm; double generalization_performance = 0.0; double old_generalization_performance = 0.0; std::string information; // Training algorithm stuff // const double& first_training_rate = training_rate_algorithm.get_first_training_rate(); const double first_training_rate = 0.01; Vector<double> parameters_increment(parameters_number); double parameters_increment_norm; Vector<double> old_gradient(parameters_number); Vector<double> training_direction(parameters_number); Vector<double> old_training_direction(parameters_number); double training_slope; double initial_training_rate = 0.0; double training_rate = 0.0; double old_training_rate = 0.0; Vector<double> directional_point(2, 0.0); bool stop_training = false; size_t generalization_failures = 0; // Main loop for(size_t iteration = 0; iteration <= maximum_iterations_number; iteration++) { // Neural network parameters = neural_network_pointer->arrange_parameters(); parameters_norm = parameters.calculate_norm(); if(parameters_norm >= error_parameters_norm) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "ConjugateGradientResults* perform_training(void) method.\n" << "Parameters norm is greater than error parameters norm.\n"; throw std::logic_error(buffer.str()); } else if(display && parameters_norm >= warning_parameters_norm) { std::cout << "OpenNN Warning: Parameters norm is " << parameters_norm << ".\n"; } // Performance functional stuff if(iteration == 0) { performance = performance_functional_pointer->calculate_performance(); performance_increase = 0.0; } else { performance = directional_point[1]; performance_increase = old_performance - performance; } gradient = performance_functional_pointer->calculate_gradient(); gradient_norm = gradient.calculate_norm(); if(display && gradient_norm >= warning_gradient_norm) { std::cout << "OpenNN Warning: Gradient norm is " << gradient_norm << ".\n"; } generalization_performance = performance_functional_pointer->calculate_generalization_performance(); if(iteration != 0 && generalization_performance > old_generalization_performance) { generalization_failures++; } // Training algorithm if(iteration == 0 || iteration % parameters_number == 0) { // Gradient descent training direction training_direction = calculate_gradient_descent_training_direction(gradient); } else if(fabs(old_gradient.dot(gradient)) >= 0.2*gradient.dot(gradient)) // Powell-Bealle restarts { // Gradient descent training direction training_direction = calculate_gradient_descent_training_direction(gradient); } else { // Conjugate gradient training direction training_direction = calculate_training_direction(old_gradient, gradient, old_training_direction); } // Calculate performance training_slope training_slope = (gradient/gradient_norm).dot(training_direction); // Check for a descent direction if(training_slope >= 0.0) { // Reset training direction training_direction = calculate_gradient_descent_training_direction(gradient); } // Get initial training rate if(iteration == 0) { initial_training_rate = first_training_rate; } else { initial_training_rate = old_training_rate; } directional_point = training_rate_algorithm.calculate_directional_point(performance, training_direction, initial_training_rate); training_rate = directional_point[0]; if(iteration != 0 && training_rate < 1.0e-99) { // Reset training direction training_direction = calculate_gradient_descent_training_direction(gradient); directional_point = training_rate_algorithm.calculate_directional_point(performance, training_direction, first_training_rate); training_rate = directional_point[0]; } parameters_increment = training_direction*training_rate; parameters_increment_norm = parameters_increment.calculate_norm(); // Elapsed time time(&current_time); elapsed_time = difftime(current_time, beginning_time); // Training history neural network if(reserve_parameters_history) { results_pointer->parameters_history[iteration] = parameters; } if(reserve_parameters_norm_history) { results_pointer->parameters_norm_history[iteration] = parameters_norm; } // Training history performance functional if(reserve_performance_history) { results_pointer->performance_history[iteration] = performance; } if(reserve_generalization_performance_history) { results_pointer->generalization_performance_history[iteration] = generalization_performance; } if(reserve_gradient_history) { results_pointer->gradient_history[iteration] = gradient; } if(reserve_gradient_norm_history) { results_pointer->gradient_norm_history[iteration] = gradient_norm; } // Training history training algorithm if(reserve_training_direction_history) { results_pointer->training_direction_history[iteration] = training_direction; } if(reserve_training_rate_history) { results_pointer->training_rate_history[iteration] = training_rate; } if(reserve_elapsed_time_history) { results_pointer->elapsed_time_history[iteration] = elapsed_time; } // Stopping Criteria if(parameters_increment_norm <= minimum_parameters_increment_norm) { if(display) { std::cout << "Iteration " << iteration << ": Minimum parameters increment norm reached.\n"; std::cout << "Parameters increment norm: " << parameters_increment_norm << std::endl; } stop_training = true; } else if(iteration != 0 && performance_increase <= minimum_performance_increase) { if(display) { std::cout << "Iteration " << iteration << ": Minimum performance increase reached.\n"; std::cout << "Performance increase: " << performance_increase << std::endl; } stop_training = true; } else if(performance <= performance_goal) { if(display) { std::cout << "Iteration " << iteration << ": Performance goal reached.\n"; } stop_training = true; } else if(gradient_norm <= gradient_norm_goal) { if(display) { std::cout << "Iteration " << iteration << ": Gradient norm goal reached.\n"; } stop_training = true; } else if(generalization_failures > maximum_generalization_performance_decreases) { if(display) { std::cout << "Iteration " << iteration << ": Maximum generalization failures reached.\n" << "Generalization failures: " << generalization_failures << std::endl; } stop_training = true; } else if(iteration == maximum_iterations_number) { if(display) { std::cout << "Iteration " << iteration << ": Maximum number of iterations reached.\n"; } stop_training = true; } else if(elapsed_time >= maximum_time) { if(display) { std::cout << "Iteration " << iteration << ": Maximum training time reached.\n"; } stop_training = true; } if(iteration != 0 && iteration % save_period == 0) { neural_network_pointer->save(neural_network_file_name); } if(stop_training) { if(display) { information = performance_functional_pointer->write_information(); std::cout << "Parameters norm: " << parameters_norm << "\n" << "Performance: " << performance << "\n" << "Gradient norm: " << gradient_norm << "\n" << information << "Training rate: " << training_rate << "\n" << "Elapsed time: " << elapsed_time << std::endl; if(generalization_performance != 0) { std::cout << "Generalization performance: " << generalization_performance << std::endl; } } results_pointer->resize_training_history(1+iteration); results_pointer->final_parameters = parameters; results_pointer->final_parameters_norm = parameters_norm; results_pointer->final_performance = performance; results_pointer->final_generalization_performance = generalization_performance; results_pointer->final_gradient = gradient; results_pointer->final_gradient_norm = gradient_norm; results_pointer->final_training_direction = training_direction; results_pointer->final_training_rate = training_rate; results_pointer->elapsed_time = elapsed_time; results_pointer->iterations_number = iteration; break; } else if(display && iteration % display_period == 0) { information = performance_functional_pointer->write_information(); std::cout << "Iteration " << iteration << ";\n" << "Parameters norm: " << parameters_norm << "\n" << "Performance: " << performance << "\n" << "Gradient norm: " << gradient_norm << "\n" << information << "Training rate: " << training_rate << "\n" << "Elapsed time: " << elapsed_time << std::endl; if(generalization_performance != 0) { std::cout << "Generalization performance: " << generalization_performance << std::endl; } } // Set new parameters parameters += parameters_increment; neural_network_pointer->set_parameters(parameters); // Update stuff old_performance = performance; old_gradient = gradient; old_generalization_performance = generalization_performance; old_training_direction = training_direction; old_training_rate = training_rate; } return(results_pointer); } // std::string write_training_algorithm_type(void) const method std::string ConjugateGradient::write_training_algorithm_type(void) const { return("CONJUGATE_GRADIENT"); } // Matrix<std::string> to_string_matrix(void) const method // the most representative Matrix<std::string> ConjugateGradient::to_string_matrix(void) const { std::ostringstream buffer; Vector<std::string> labels; Vector<std::string> values; // Training direction method labels.push_back("Training direction method"); const std::string training_direction_method_string = write_training_direction_method(); values.push_back(training_direction_method_string); // Training rate method labels.push_back("Training rate method"); const std::string training_rate_method = training_rate_algorithm.write_training_rate_method(); values.push_back(training_rate_method); // Training rate tolerance labels.push_back("Training rate tolerance"); buffer.str(""); buffer << training_rate_algorithm.get_training_rate_tolerance(); values.push_back(buffer.str()); // Minimum parameters increment norm labels.push_back("Minimum parameters increment norm"); buffer.str(""); buffer << minimum_parameters_increment_norm; values.push_back(buffer.str()); // Minimum performance increase labels.push_back("Minimum performance increase"); buffer.str(""); buffer << minimum_performance_increase; values.push_back(buffer.str()); // Performance goal labels.push_back("Performance goal"); buffer.str(""); buffer << performance_goal; values.push_back(buffer.str()); // Gradient norm goal labels.push_back("Gradient norm goal"); buffer.str(""); buffer << gradient_norm_goal; values.push_back(buffer.str()); // Maximum generalization failures labels.push_back("Maximum generalization failures"); buffer.str(""); buffer << maximum_generalization_performance_decreases; values.push_back(buffer.str()); // Maximum iterations number labels.push_back("Maximum iterations number"); buffer.str(""); buffer << maximum_iterations_number; values.push_back(buffer.str()); // Maximum time labels.push_back("Maximum time"); buffer.str(""); buffer << maximum_time; values.push_back(buffer.str()); // Reserve parameters norm history labels.push_back("Reserve parameters norm history"); buffer.str(""); buffer << reserve_parameters_norm_history; values.push_back(buffer.str()); // Reserve performance history labels.push_back("Reserve performance history"); buffer.str(""); buffer << reserve_performance_history; values.push_back(buffer.str()); // Reserve gradient norm history labels.push_back("Reserve gradient norm history"); buffer.str(""); buffer << reserve_gradient_norm_history; values.push_back(buffer.str()); // Reserve generalization performance history labels.push_back("Reserve generalization performance history"); buffer.str(""); buffer << reserve_generalization_performance_history; values.push_back(buffer.str()); // Reserve training direction norm history // labels.push_back(""); // buffer.str(""); // buffer << reserve_training_direction_norm_history; // Reserve training rate history // labels.push_back(""); // buffer.str(""); // buffer << reserve_training_rate_history; // values.push_back(buffer.str()); // Reserve elapsed time history labels.push_back("Reserve elapsed time history"); buffer.str(""); buffer << reserve_elapsed_time_history; values.push_back(buffer.str()); const size_t rows_number = labels.size(); const size_t columns_number = 2; Matrix<std::string> string_matrix(rows_number, columns_number); string_matrix.set_column(0, labels); string_matrix.set_column(1, values); return(string_matrix); } // tinyxml2::XMLDocument* to_XML(void) const method /// Serializes the conjugate gradient object into a XML document of the TinyXML library. /// See the OpenNN manual for more information about the format of this element. tinyxml2::XMLDocument* ConjugateGradient::to_XML(void) const { std::ostringstream buffer; tinyxml2::XMLDocument* document = new tinyxml2::XMLDocument; // Conjugate gradient tinyxml2::XMLElement* root_element = document->NewElement("ConjugateGradient"); document->InsertFirstChild(root_element); tinyxml2::XMLElement* element = NULL; tinyxml2::XMLText* text = NULL; // Training direction method { element = document->NewElement("TrainingDirectionMethod"); root_element->LinkEndChild(element); text = document->NewText(write_training_direction_method().c_str()); element->LinkEndChild(text); } // Training rate algorithm { tinyxml2::XMLElement* element = document->NewElement("TrainingRateAlgorithm"); root_element->LinkEndChild(element); const tinyxml2::XMLDocument* training_rate_algorithm_document = training_rate_algorithm.to_XML(); const tinyxml2::XMLElement* training_rate_algorithm_element = training_rate_algorithm_document->FirstChildElement("TrainingRateAlgorithm"); DeepClone(element, training_rate_algorithm_element, document, NULL); delete training_rate_algorithm_document; } // Warning parameters norm { element = document->NewElement("WarningParametersNorm"); root_element->LinkEndChild(element); buffer.str(""); buffer << warning_parameters_norm; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Warning gradient norm { element = document->NewElement("WarningGradientNorm"); root_element->LinkEndChild(element); buffer.str(""); buffer << warning_gradient_norm; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Warning training rate { element = document->NewElement("WarningTrainingRate"); root_element->LinkEndChild(element); buffer.str(""); buffer << warning_training_rate; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Error parameters norm { element = document->NewElement("ErrorParametersNorm"); root_element->LinkEndChild(element); buffer.str(""); buffer << error_parameters_norm; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Error gradient norm { element = document->NewElement("ErrorGradientNorm"); root_element->LinkEndChild(element); buffer.str(""); buffer << error_gradient_norm; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Error training rate { element = document->NewElement("ErrorTrainingRate"); root_element->LinkEndChild(element); buffer.str(""); buffer << error_training_rate; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Minimum parameters increment norm { element = document->NewElement("MinimumParametersIncrementNorm"); root_element->LinkEndChild(element); buffer.str(""); buffer << minimum_parameters_increment_norm; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Minimum performance increase { element = document->NewElement("MinimumPerformanceIncrease"); root_element->LinkEndChild(element); buffer.str(""); buffer << minimum_performance_increase; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Performance goal { element = document->NewElement("PerformanceGoal"); root_element->LinkEndChild(element); buffer.str(""); buffer << performance_goal; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Gradient norm goal { element = document->NewElement("GradientNormGoal"); root_element->LinkEndChild(element); buffer.str(""); buffer << gradient_norm_goal; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Maximum generalization performance decreases { element = document->NewElement("MaximumGeneralizationPerformanceDecreases"); root_element->LinkEndChild(element); buffer.str(""); buffer << maximum_generalization_performance_decreases; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Maximum iterations number { element = document->NewElement("MaximumIterationsNumber"); root_element->LinkEndChild(element); buffer.str(""); buffer << maximum_iterations_number; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Maximum time { element = document->NewElement("MaximumTime"); root_element->LinkEndChild(element); buffer.str(""); buffer << maximum_time; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve parameters history { element = document->NewElement("ReserveParametersHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_parameters_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve parameters norm history { element = document->NewElement("ReserveParametersNormHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_parameters_norm_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve performance history { element = document->NewElement("ReservePerformanceHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_performance_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve generalization performance history { element = document->NewElement("ReserveGeneralizationPerformanceHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_generalization_performance_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve gradient history { element = document->NewElement("ReserveGradientHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_gradient_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve gradient norm history { element = document->NewElement("ReserveGradientNormHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_gradient_norm_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve training direction history { element = document->NewElement("ReserveTrainingDirectionHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_training_direction_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve training rate history { tinyxml2::XMLElement* element = document->NewElement("ReserveTrainingRateHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_training_rate_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve elapsed time history { element = document->NewElement("ReserveElapsedTimeHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_elapsed_time_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Reserve generalization performance history { element = document->NewElement("ReserveGeneralizationPerformanceHistory"); root_element->LinkEndChild(element); buffer.str(""); buffer << reserve_generalization_performance_history; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Display period { element = document->NewElement("DisplayPeriod"); root_element->LinkEndChild(element); buffer.str(""); buffer << display_period; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Save period { element = document->NewElement("SavePeriod"); root_element->LinkEndChild(element); buffer.str(""); buffer << save_period; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } // Neural network file name { element = document->NewElement("NeuralNetworkFileName"); root_element->LinkEndChild(element); text = document->NewText(neural_network_file_name.c_str()); element->LinkEndChild(text); } // Display { element = document->NewElement("Display"); root_element->LinkEndChild(element); buffer.str(""); buffer << display; text = document->NewText(buffer.str().c_str()); element->LinkEndChild(text); } return(document); } // void from_XML(const tinyxml2::XMLDocument&) method /// Deserializes the conjugate gradient object from a XML document of the TinyXML library. /// @param document TinyXML document containing the member data. void ConjugateGradient::from_XML(const tinyxml2::XMLDocument& document) { const tinyxml2::XMLElement* root_element = document.FirstChildElement("ConjugateGradient"); if(!root_element) { std::ostringstream buffer; buffer << "OpenNN Exception: ConjugateGradient class.\n" << "void from_XML(const tinyxml2::XMLDocument&) method.\n" << "Conjugate gradient element is NULL.\n"; throw std::logic_error(buffer.str()); } // Training direction method { const tinyxml2::XMLElement* training_direction_method_element = root_element->FirstChildElement("TrainingDirectionMethod"); if(training_direction_method_element) { const std::string new_training_direction_method = training_direction_method_element->GetText(); try { set_training_direction_method(new_training_direction_method); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Training rate algorithm { const tinyxml2::XMLElement* training_rate_algorithm_element = root_element->FirstChildElement("TrainingRateAlgorithm"); if(training_rate_algorithm_element) { tinyxml2::XMLDocument training_rate_algorithm_document; tinyxml2::XMLElement* element_clone = training_rate_algorithm_document.NewElement("TrainingRateAlgorithm"); training_rate_algorithm_document.InsertFirstChild(element_clone); DeepClone(element_clone, training_rate_algorithm_element, &training_rate_algorithm_document, NULL); training_rate_algorithm.from_XML(training_rate_algorithm_document); } } // Warning parameters norm { const tinyxml2::XMLElement* warning_parameters_norm_element = root_element->FirstChildElement("WarningParametersNorm"); if(warning_parameters_norm_element) { const double new_warning_parameters_norm = atof(warning_parameters_norm_element->GetText()); try { set_warning_parameters_norm(new_warning_parameters_norm); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Warning gradient norm { const tinyxml2::XMLElement* warning_gradient_norm_element = root_element->FirstChildElement("WarningGradientNorm"); if(warning_gradient_norm_element) { const double new_warning_gradient_norm = atof(warning_gradient_norm_element->GetText()); try { set_warning_gradient_norm(new_warning_gradient_norm); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Warning training rate { const tinyxml2::XMLElement* warning_training_rate_element = root_element->FirstChildElement("WarningTrainingRate"); if(warning_training_rate_element) { const double new_warning_training_rate = atof(warning_training_rate_element->GetText()); try { set_warning_training_rate(new_warning_training_rate); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Error parameters norm { const tinyxml2::XMLElement* error_parameters_norm_element = root_element->FirstChildElement("ErrorParametersNorm"); if(error_parameters_norm_element) { const double new_error_parameters_norm = atof(error_parameters_norm_element->GetText()); try { set_error_parameters_norm(new_error_parameters_norm); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Error gradient norm { const tinyxml2::XMLElement* error_gradient_norm_element = root_element->FirstChildElement("ErrorGradientNorm"); if(error_gradient_norm_element) { const double new_error_gradient_norm = atof(error_gradient_norm_element->GetText()); try { set_error_gradient_norm(new_error_gradient_norm); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Error training rate { const tinyxml2::XMLElement* error_training_rate_element = root_element->FirstChildElement("ErrorTrainingRate"); if(error_training_rate_element) { const double new_error_training_rate = atof(error_training_rate_element->GetText()); try { set_error_training_rate(new_error_training_rate); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Minimum parameters increment norm { const tinyxml2::XMLElement* minimum_parameters_increment_norm_element = root_element->FirstChildElement("MinimumParametersIncrementNorm"); if(minimum_parameters_increment_norm_element) { const double new_minimum_parameters_increment_norm = atof(minimum_parameters_increment_norm_element->GetText()); try { set_minimum_parameters_increment_norm(new_minimum_parameters_increment_norm); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Minimum performance increase { const tinyxml2::XMLElement* minimum_performance_increase_element = root_element->FirstChildElement("MinimumPerformanceIncrease"); if(minimum_performance_increase_element) { const double new_minimum_performance_increase = atof(minimum_performance_increase_element->GetText()); try { set_minimum_performance_increase(new_minimum_performance_increase); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Performance goal { const tinyxml2::XMLElement* performance_goal_element = root_element->FirstChildElement("PerformanceGoal"); if(performance_goal_element) { const double new_performance_goal = atof(performance_goal_element->GetText()); try { set_performance_goal(new_performance_goal); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Gradient norm goal { const tinyxml2::XMLElement* gradient_norm_goal_element = root_element->FirstChildElement("GradientNormGoal"); if(gradient_norm_goal_element) { const double new_gradient_norm_goal = atof(gradient_norm_goal_element->GetText()); try { set_gradient_norm_goal(new_gradient_norm_goal); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Maximum generalization performance decreases { const tinyxml2::XMLElement* maximum_generalization_performance_decreases_element = root_element->FirstChildElement("MaximumGeneralizationPerformanceDecreases"); if(maximum_generalization_performance_decreases_element) { const size_t new_maximum_generalization_performance_decreases = atoi(maximum_generalization_performance_decreases_element->GetText()); try { set_maximum_generalization_performance_decreases(new_maximum_generalization_performance_decreases); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Maximum iterations number { const tinyxml2::XMLElement* maximum_iterations_number_element = root_element->FirstChildElement("MaximumIterationsNumber"); if(maximum_iterations_number_element) { const size_t new_maximum_iterations_number = atoi(maximum_iterations_number_element->GetText()); try { set_maximum_iterations_number(new_maximum_iterations_number); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Maximum time { const tinyxml2::XMLElement* maximum_time_element = root_element->FirstChildElement("MaximumTime"); if(maximum_time_element) { const double new_maximum_time = atof(maximum_time_element->GetText()); try { set_maximum_time(new_maximum_time); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve parameters history { const tinyxml2::XMLElement* reserve_parameters_history_element = root_element->FirstChildElement("ReserveParametersHistory"); if(reserve_parameters_history_element) { const std::string new_reserve_parameters_history = reserve_parameters_history_element->GetText(); try { set_reserve_parameters_history(new_reserve_parameters_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve parameters norm history { const tinyxml2::XMLElement* reserve_parameters_norm_history_element = root_element->FirstChildElement("ReserveParametersNormHistory"); if(reserve_parameters_norm_history_element) { const std::string new_reserve_parameters_norm_history = reserve_parameters_norm_history_element->GetText(); try { set_reserve_parameters_norm_history(new_reserve_parameters_norm_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve performance history { const tinyxml2::XMLElement* reserve_performance_history_element = root_element->FirstChildElement("ReservePerformanceHistory"); if(reserve_performance_history_element) { const std::string new_reserve_performance_history = reserve_performance_history_element->GetText(); try { set_reserve_performance_history(new_reserve_performance_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve generalization performance history { const tinyxml2::XMLElement* reserve_generalization_performance_history_element = root_element->FirstChildElement("ReserveGeneralizationPerformanceHistory"); if(reserve_generalization_performance_history_element) { const std::string new_reserve_generalization_performance_history = reserve_generalization_performance_history_element->GetText(); try { set_reserve_generalization_performance_history(new_reserve_generalization_performance_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve gradient history { const tinyxml2::XMLElement* reserve_gradient_history_element = root_element->FirstChildElement("ReserveGradientHistory"); if(reserve_gradient_history_element) { const std::string new_reserve_gradient_history = reserve_gradient_history_element->GetText(); try { set_reserve_gradient_history(new_reserve_gradient_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } // Reserve gradient norm history { const tinyxml2::XMLElement* reserve_gradient_norm_history_element = root_element->FirstChildElement("ReserveGradientNormHistory"); if(reserve_gradient_norm_history_element) { const std::string new_reserve_gradient_norm_history = reserve_gradient_norm_history_element->GetText(); try { set_reserve_gradient_norm_history(new_reserve_gradient_norm_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve training direction history { const tinyxml2::XMLElement* reserve_training_direction_history_element = root_element->FirstChildElement("ReserveTrainingDirectionHistory"); if(reserve_training_direction_history_element) { const std::string new_reserve_training_direction_history = reserve_training_direction_history_element->GetText(); try { set_reserve_training_direction_history(new_reserve_training_direction_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve training rate history { const tinyxml2::XMLElement* reserve_training_rate_history_element = root_element->FirstChildElement("ReserveTrainingRateHistory"); if(reserve_training_rate_history_element) { const std::string new_reserve_training_rate_history = reserve_training_rate_history_element->GetText(); try { set_reserve_training_rate_history(new_reserve_training_rate_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve elapsed time history { const tinyxml2::XMLElement* reserve_elapsed_time_history_element = root_element->FirstChildElement("ReserveElapsedTimeHistory"); if(reserve_elapsed_time_history_element) { const std::string new_reserve_elapsed_time_history = reserve_elapsed_time_history_element->GetText(); try { set_reserve_elapsed_time_history(new_reserve_elapsed_time_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Reserve generalization performance history { const tinyxml2::XMLElement* reserve_generalization_performance_history_element = root_element->FirstChildElement("ReserveGeneralizationPerformanceHistory"); if(reserve_generalization_performance_history_element) { const std::string new_reserve_generalization_performance_history = reserve_generalization_performance_history_element->GetText(); try { set_reserve_generalization_performance_history(new_reserve_generalization_performance_history != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Display period { const tinyxml2::XMLElement* display_period_element = root_element->FirstChildElement("DisplayPeriod"); if(display_period_element) { const size_t new_display_period = atoi(display_period_element->GetText()); try { set_display_period(new_display_period); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Save period { const tinyxml2::XMLElement* element = root_element->FirstChildElement("SavePeriod"); if(element) { const size_t new_save_period = atoi(element->GetText()); try { set_save_period(new_save_period); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Neural network file name { const tinyxml2::XMLElement* element = root_element->FirstChildElement("NeuralNetworkFileName"); if(element) { const std::string new_neural_network_file_name = element->GetText(); try { set_neural_network_file_name(new_neural_network_file_name); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } // Display { const tinyxml2::XMLElement* display_element = root_element->FirstChildElement("Display"); if(display_element) { const std::string new_display = display_element->GetText(); try { set_display(new_display != "0"); } catch(const std::logic_error& e) { std::cout << e.what() << std::endl; } } } } } } // OpenNN: Open Neural Networks Library. // Copyright (c) 2005-2015 Roberto Lopez. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
[ "mode89@mail.ru" ]
mode89@mail.ru
e61d7547b2f384c83f5078203d52d47fb61bce1e
dc2e0d49f99951bc40e323fb92ea4ddd5d9644a0
/Activemq-cpp_3.7.1/activemq-cpp/src/main/decaf/security/GeneralSecurityException.cpp
fc750229dd81d84478ce7a3646492e83d6008bc6
[ "Apache-2.0" ]
permissive
wenyu826/CecilySolution
8696290d1723fdfe6e41ce63e07c7c25a9295ded
14c4ba9adbb937d0ae236040b2752e2c7337b048
refs/heads/master
2020-07-03T06:26:07.875201
2016-11-19T07:04:29
2016-11-19T07:04:29
74,192,785
0
1
null
null
null
null
UTF-8
C++
false
false
2,737
cpp
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 "GeneralSecurityException.h" using namespace decaf; using namespace decaf::security; //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException() {} //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException(const decaf::lang::Exception& ex) : decaf::lang::Exception() { *(decaf::lang::Exception*)this = ex; } //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException(const GeneralSecurityException& ex) : decaf::lang::Exception() { *(decaf::lang::Exception*)this = ex; } //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException(const char* file, const int lineNumber, const std::exception* cause, const char* msg, ...) : decaf::lang::Exception(cause) { va_list vargs; va_start(vargs, msg); buildMessage(msg, vargs); // Set the first mark for this exception. setMark(file, lineNumber); } //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException( const std::exception* cause ) : decaf::lang::Exception(cause) { } //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::GeneralSecurityException(const char* file, const int lineNumber, const char* msg, ...) : decaf::lang::Exception() { va_list vargs; va_start(vargs, msg); buildMessage(msg, vargs); // Set the first mark for this exception. setMark(file, lineNumber); } //////////////////////////////////////////////////////////////////////////////// GeneralSecurityException::~GeneralSecurityException() throw() { }
[ "626955115@qq.com" ]
626955115@qq.com
88f6fb093ae097302117f9c82e42786f67f3364f
584105ff5b87869494a42f632079668e4c3f82de
/sci_gateway/cpp/opencv_detectSURFFeatures .cpp
90750e708053ca014fae3edc63abe3e0af11ddb7
[]
no_license
kevgeo/FOSSEE-Computer-Vision
0ceb1aafb800580498ea7d79982003714d88fb48
9ca5ceae56d11d81a178a9dafddc809238e412ba
refs/heads/master
2021-01-17T21:11:31.309967
2016-08-01T14:45:40
2016-08-01T14:45:40
63,127,286
6
0
null
null
null
null
UTF-8
C++
false
false
12,789
cpp
/*************************************************** Author : Shashank Shekhar ***************************************************/ #include <numeric> #include "opencv2/core/core.hpp" #include "opencv2/features2d/features2d.hpp" #include "opencv2/nonfree/features2d.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/nonfree/nonfree.hpp" #include "opencv2/opencv.hpp" #include <iostream> using namespace cv; using namespace std; extern "C" { #include "api_scilab.h" #include "Scierror.h" #include "BOOL.h" #include <localization.h> #include "sciprint.h" #include "../common.h" //#include "../common.cpp" int opencv_detectSURFFeatures(char *fname, unsigned long fname_len) { SciErr sciErr; int *piAddr = NULL; int *piAddrVal = NULL; int val_position; int *piLen = NULL; int iRows, iCols = 0; char ** pstData = NULL; char *currentArg = NULL; int valOfCA; int argPresence[4]; for(int i=0;i<4;i++) argPresence[i]=0; vector<KeyPoint> myPoints; int *LocationList = NULL; int *OrientationList = NULL; int *MetricList = NULL; int *LaplacianList = NULL; int *ScaleList = NULL; double *LocationData = NULL; double *OrientationData = NULL; double *MetricData = NULL; int *LaplacianData = NULL; double *ScaleData = NULL; int noOfarguments = *getNbInputArgument(pvApiCtx); CheckInputArgument(pvApiCtx, 1,9); CheckOutputArgument(pvApiCtx,1,6); Mat image; retrieveImage(image,1); if(image.channels()!=1) { Scierror(999," Feature is not meant for RGB images\n"); return 0; } //********************************************* Valid Argument Count Check ***************************************** if(noOfarguments%2==0) { Scierror(999," Invalid No of Arguments \n"); return 0; } //********************************************* Optional Input Arguments ***************************************** double MetricThreshold = 0; double NumOctaves = 0; double NumScaleLevels = 0; double *ROImat = NULL; //********************************************* Retrieval of Name, Value Argument Pair **************************** for(int i=2;i<=noOfarguments;i=i+2) { sciErr = getVarAddressFromPosition(pvApiCtx,i,&piAddr); if (sciErr.iErr) { printError(&sciErr, 0); return 0; } if(!isStringType(pvApiCtx, piAddr)) { Scierror(999,"Invalid Argument\n"); return 0; } //first call to get rows and columns sciErr = getMatrixOfString(pvApiCtx, piAddr, &iRows, &iCols, NULL, NULL); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } piLen = (int*)malloc(sizeof(int) * iRows * iCols); //second call to retrieve length of each string sciErr = getMatrixOfString(pvApiCtx, piAddr, &iRows, &iCols, piLen, NULL); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } pstData = (char**)malloc(sizeof(char*) * iRows * iCols); for(int j = 0 ; j < iRows * iCols ; j++) { pstData[j] = (char*)malloc(sizeof(char) * (piLen[j] + 1));//+ 1 for null termination } //third call to retrieve data sciErr = getMatrixOfString(pvApiCtx, piAddr, &iRows, &iCols, piLen, pstData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } currentArg = pstData[0]; free(pstData); iRows=0; iCols=0; free(piLen); if(strcmp(currentArg,"MetricThreshold")==0) { val_position=i+1; if(argPresence[0]==1) { Scierror(999,"Do not enter the same parameter\n"); return 0; } sciErr = getVarAddressFromPosition(pvApiCtx,val_position,&piAddrVal); if (sciErr.iErr) { printError(&sciErr, 0); return 0; } if(!isDoubleType(pvApiCtx, piAddrVal)) { Scierror(999," Invalid Value for MetricThreshold. Please enter a non negative Double value\\n"); return 0; } getScalarDouble(pvApiCtx, piAddrVal, &MetricThreshold); if(MetricThreshold<0) { Scierror(999," Invalid Value for MetricThreshold. Please enter a non negative Double value\\n"); return 0; } argPresence[0]=1; } else if(strcmp(currentArg,"NumOctaves")==0) { val_position=i+1; if(argPresence[1]==1) { Scierror(999,"Do not enter the same parameter\n"); return 0; } sciErr = getVarAddressFromPosition(pvApiCtx,val_position,&piAddrVal); if (sciErr.iErr) { printError(&sciErr, 0); return 0; } if(!isDoubleType(pvApiCtx, piAddrVal)) { Scierror(999," Invalid Value for NumOctaves. Recommended Values are between 1 and 4\n"); return 0; } getScalarDouble(pvApiCtx, piAddrVal, &NumOctaves); if(NumOctaves<1) { Scierror(999," Invalid Value for NumOctaves. Recommended Values are between 1 and 4\n"); return 0; } argPresence[1]=1; } else if(strcmp(currentArg,"NumScaleLevels")==0) { val_position=i+1; if(argPresence[2]==1) { Scierror(999,"Do not enter the same parameter\n"); return 0; } sciErr = getVarAddressFromPosition(pvApiCtx,val_position,&piAddrVal); if (sciErr.iErr) { printError(&sciErr, 0); return 0; } if(!isDoubleType(pvApiCtx, piAddrVal)) { Scierror(999," Invalid Value for NumScaleLevels. Recommended values are between 3 and 6\n"); return 0; } getScalarDouble(pvApiCtx, piAddrVal, &NumScaleLevels); if(NumScaleLevels<3) { Scierror(999," Invalid Value for NumScaleLevels. Please enter an integer value greater than or equal to 3\n"); return 0; } argPresence[2]=1; } else if(strcmp(currentArg,"ROI")==0) { val_position=i+1; if(argPresence[3]==1) { Scierror(999,"Do not enter the same parameter\n"); return 0; } sciErr = getVarAddressFromPosition(pvApiCtx,val_position,&piAddrVal); if (sciErr.iErr) { printError(&sciErr, 0); return 0; } if(!isDoubleType(pvApiCtx, piAddrVal) || isVarComplex(pvApiCtx, piAddrVal)) { Scierror(999,"Enter a List of 4 double arguments\n"); return 0; } sciErr = getMatrixOfDouble(pvApiCtx, piAddrVal, &iRows, &iCols, &ROImat); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } if(iRows*iCols!=4) { Scierror(999,"Invalid Argument\n"); return 0; } if(ROImat[0]<0 || ROImat[1]<0 || ROImat[2]<0 || ROImat[3]<0) { sciprint("Arguments cannot be negative\n"); return 0; } if(ROImat[0]>image.cols || ROImat[1]>image.rows || ROImat[0]+ROImat[2]>image.cols || ROImat[1]+ROImat[3]>image.rows) { Scierror(999,"Please make sure the arguments are within the image range\n"); return 0; } argPresence[3]=1; } else { Scierror(999, "Error: \"%s\" name for input argument is not valid.\n", currentArg); return 0; } } //********************************************* End of OIA ******************************************************** int nOctaveLayers; if(argPresence[2]==1) nOctaveLayers = NumScaleLevels-2; if(argPresence[0]==0) MetricThreshold=1000; if(argPresence[1]==0) NumOctaves=3; if(argPresence[2]==0) nOctaveLayers = 2; if(argPresence[3]==0) { ROImat=(double *)malloc(sizeof(double)*4); ROImat[0]=0; ROImat[1]=0; ROImat[2]=image.cols; ROImat[3]=image.rows; } Rect masker(ROImat[0], ROImat[1], ROImat[2], ROImat[3]); Mat mask(image.size(), CV_8UC1, Scalar::all(0)); mask(masker).setTo(Scalar::all(255)); SURF my_object(MetricThreshold, NumOctaves, nOctaveLayers); my_object.operator()(image, mask, myPoints, noArray()); int size= myPoints.size(); //*************************************************************** Location *************************************************************** ScaleData = (double *)malloc(sizeof(double)*size); OrientationData = (double *)malloc(sizeof(double)*size); MetricData = (double *)malloc(sizeof(double)*size); LaplacianData = (int *)malloc(sizeof(int)*size); iRows=size; iCols=2; int k=0; LocationData = (double *)malloc(sizeof(double)*iRows*iCols); for(int i=0;i<size;i++) { LocationData[k++] = myPoints[i].pt.x; LocationData[k++] = myPoints[i].pt.y; OrientationData[i] = 0; MetricData[i] = myPoints[i].response; LaplacianData[i] = myPoints[i].class_id; double q=myPoints[i].size; // Scale = Current Filter Size * Base Filter Scale / Base Filter Size q = q*1.2/9; q = round(1000.0*q)/(1000.0); ScaleData[i] = q; } sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 1, size,2, LocationData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } AssignOutputVariable(pvApiCtx, 1) = nbInputArgument(pvApiCtx) + 1; //*************************************************************** Orientation *************************************************************** sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 2, size,1, OrientationData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } AssignOutputVariable(pvApiCtx, 2) = nbInputArgument(pvApiCtx) + 2; //*********************************************************** Metric ******************************************************************** sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 3, size,1, MetricData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } AssignOutputVariable(pvApiCtx, 3) = nbInputArgument(pvApiCtx) + 3; //************************************************************ SignOfLaplacian *********************************************************** sciErr = createMatrixOfInteger32(pvApiCtx, nbInputArgument(pvApiCtx) + 4, size,1, LaplacianData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } AssignOutputVariable(pvApiCtx, 4) = nbInputArgument(pvApiCtx) + 4; //*********************************************************** Scale ******************************************************************* sciErr = createMatrixOfDouble(pvApiCtx, nbInputArgument(pvApiCtx) + 5, size,1, ScaleData); if(sciErr.iErr) { printError(&sciErr, 0); return 0; } AssignOutputVariable(pvApiCtx, 5) = nbInputArgument(pvApiCtx) + 5; //*********************************************************** Size ********************************************************************* createScalarInteger32(pvApiCtx,nbInputArgument(pvApiCtx) + 6, size); AssignOutputVariable(pvApiCtx, 6) = nbInputArgument(pvApiCtx) + 6; //Returning the Output Variables as arguments to the Scilab environment ReturnArguments(pvApiCtx); return 0; } /* ==================================================================== */ }
[ "kevingeorge2006@hotmail.com" ]
kevingeorge2006@hotmail.com
227fbfb1a1f759a19377844d835489d52da21bd3
1a93a3b56dc2d54ffe3ee344716654888b0af777
/env/Library/include/qt/QtDesigner/5.12.9/QtDesigner/private/formbuilderextra_p.h
5c06dc3dc57dc1a8977678ba0f3cceeef1c045d7
[ "Python-2.0", "LicenseRef-scancode-python-cwi", "GPL-1.0-or-later", "LicenseRef-scancode-other-copyleft", "BSD-3-Clause", "0BSD", "LicenseRef-scancode-free-unknown", "GPL-3.0-only", "GPL-2.0-only" ]
permissive
h4vlik/TF2_OD_BRE
ecdf6b49b0016407007a1a049f0fdb952d58cbac
54643b6e8e9d76847329b1dbda69efa1c7ae3e72
refs/heads/master
2023-04-09T16:05:27.658169
2021-02-22T14:59:07
2021-02-22T14:59:07
327,001,911
0
0
BSD-3-Clause
2021-02-22T14:59:08
2021-01-05T13:08:03
null
UTF-8
C++
false
false
9,578
h
/**************************************************************************** ** ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Designer of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** BSD License Usage ** Alternatively, you may use this file under the terms of the BSD license ** as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of The Qt Company Ltd nor the names of its ** contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef ABSTRACTFORMBUILDERPRIVATE_H #define ABSTRACTFORMBUILDERPRIVATE_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "uilib_global.h" #include <QtCore/qhash.h> #include <QtCore/qpointer.h> #include <QtCore/qstringlist.h> #include <QtCore/qmap.h> #include <QtCore/qdir.h> QT_BEGIN_NAMESPACE class QDesignerCustomWidgetInterface; class QObject; class QVariant; class QWidget; class QObject; class QLabel; class QButtonGroup; class QBoxLayout; class QGridLayout; class QAction; class QActionGroup; #ifdef QFORMINTERNAL_NAMESPACE namespace QFormInternal { #endif class DomButtonGroups; class DomButtonGroup; class DomCustomWidget; class DomUI; class QAbstractFormBuilder; class QResourceBuilder; class QTextBuilder; class QDESIGNER_UILIB_EXPORT QFormBuilderExtra { public: QFormBuilderExtra(); ~QFormBuilderExtra(); struct CustomWidgetData { CustomWidgetData(); explicit CustomWidgetData(const DomCustomWidget *dc); QString addPageMethod; QString script; QString baseClass; bool isContainer; }; void clear(); DomUI *readUi(QIODevice *dev); static QString msgInvalidUiFile(); bool applyPropertyInternally(QObject *o, const QString &propertyName, const QVariant &value); enum BuddyMode { BuddyApplyAll, BuddyApplyVisibleOnly }; void applyInternalProperties() const; static bool applyBuddy(const QString &buddyName, BuddyMode applyMode, QLabel *label); const QPointer<QWidget> &parentWidget() const; bool parentWidgetIsSet() const; void setParentWidget(const QPointer<QWidget> &w); void setProcessingLayoutWidget(bool processing); bool processingLayoutWidget() const; void setResourceBuilder(QResourceBuilder *builder); QResourceBuilder *resourceBuilder() const; void setTextBuilder(QTextBuilder *builder); QTextBuilder *textBuilder() const; void storeCustomWidgetData(const QString &className, const DomCustomWidget *d); QString customWidgetAddPageMethod(const QString &className) const; QString customWidgetBaseClass(const QString &className) const; bool isCustomWidgetContainer(const QString &className) const; // --- Hash used in creating button groups on demand. Store a map of name and pair of dom group and real group void registerButtonGroups(const DomButtonGroups *groups); typedef QPair<DomButtonGroup *, QButtonGroup*> ButtonGroupEntry; typedef QHash<QString, ButtonGroupEntry> ButtonGroupHash; const ButtonGroupHash &buttonGroups() const { return m_buttonGroups; } ButtonGroupHash &buttonGroups() { return m_buttonGroups; } // return stretch as a comma-separated list static QString boxLayoutStretch(const QBoxLayout*); // apply stretch static bool setBoxLayoutStretch(const QString &, QBoxLayout*); static void clearBoxLayoutStretch(QBoxLayout*); static QString gridLayoutRowStretch(const QGridLayout *); static bool setGridLayoutRowStretch(const QString &, QGridLayout *); static void clearGridLayoutRowStretch(QGridLayout *); static QString gridLayoutColumnStretch(const QGridLayout *); static bool setGridLayoutColumnStretch(const QString &, QGridLayout *); static void clearGridLayoutColumnStretch(QGridLayout *); // return the row/column sizes as comma-separated lists static QString gridLayoutRowMinimumHeight(const QGridLayout *); static bool setGridLayoutRowMinimumHeight(const QString &, QGridLayout *); static void clearGridLayoutRowMinimumHeight(QGridLayout *); static QString gridLayoutColumnMinimumWidth(const QGridLayout *); static bool setGridLayoutColumnMinimumWidth(const QString &, QGridLayout *); static void clearGridLayoutColumnMinimumWidth(QGridLayout *); QStringList m_pluginPaths; QMap<QString, QDesignerCustomWidgetInterface*> m_customWidgets; QHash<QObject*, bool> m_laidout; QHash<QString, QAction*> m_actions; QHash<QString, QActionGroup*> m_actionGroups; int m_defaultMargin; int m_defaultSpacing; QDir m_workingDirectory; QString m_errorString; QString m_language; private: void clearResourceBuilder(); void clearTextBuilder(); typedef QHash<QLabel*, QString> BuddyHash; BuddyHash m_buddies; QHash<QString, CustomWidgetData> m_customWidgetDataHash; ButtonGroupHash m_buttonGroups; bool m_layoutWidget; QResourceBuilder *m_resourceBuilder; QTextBuilder *m_textBuilder; QPointer<QWidget> m_parentWidget; bool m_parentWidgetIsSet; }; void uiLibWarning(const QString &message); // Struct with static accessor that provides most strings used in the form builder. struct QDESIGNER_UILIB_EXPORT QFormBuilderStrings { QFormBuilderStrings(); static const QFormBuilderStrings &instance(); const QString buddyProperty; const QString cursorProperty; const QString objectNameProperty; const QString trueValue; const QString falseValue; const QString horizontalPostFix; const QString separator; const QString defaultTitle; const QString titleAttribute; const QString labelAttribute; const QString toolTipAttribute; const QString whatsThisAttribute; const QString flagsAttribute; const QString iconAttribute; const QString pixmapAttribute; const QString textAttribute; const QString currentIndexProperty; const QString toolBarAreaAttribute; const QString toolBarBreakAttribute; const QString dockWidgetAreaAttribute; const QString marginProperty; const QString spacingProperty; const QString leftMarginProperty; const QString topMarginProperty; const QString rightMarginProperty; const QString bottomMarginProperty; const QString horizontalSpacingProperty; const QString verticalSpacingProperty; const QString sizeHintProperty; const QString sizeTypeProperty; const QString orientationProperty; const QString styleSheetProperty; const QString qtHorizontal; const QString qtVertical; const QString currentRowProperty; const QString tabSpacingProperty; const QString qWidgetClass; const QString lineClass; const QString geometryProperty; const QString scriptWidgetVariable; const QString scriptChildWidgetsVariable; typedef QPair<Qt::ItemDataRole, QString> RoleNName; QList<RoleNName> itemRoles; QHash<QString, Qt::ItemDataRole> treeItemRoleHash; // first.first is primary role, first.second is shadow role. // Shadow is used for either the translation source or the designer // representation of the string value. typedef QPair<QPair<Qt::ItemDataRole, Qt::ItemDataRole>, QString> TextRoleNName; QList<TextRoleNName> itemTextRoles; QHash<QString, QPair<Qt::ItemDataRole, Qt::ItemDataRole> > treeItemTextRoleHash; }; #ifdef QFORMINTERNAL_NAMESPACE } #endif QT_END_NAMESPACE #endif // ABSTRACTFORMBUILDERPRIVATE_H
[ "martin.cernil@ysoft.com" ]
martin.cernil@ysoft.com
56bb690d196f13766c6097a6ae8eec290e35ee6a
8b20c6ef83d66c241b5c2ba28a62146531c78a0e
/ch12/ex12_19_20_22/StrBlobPtr.h
771ba2412ced19bcda30a1bd216a41f85825e703
[]
no_license
Ilikecoding/cpp_primer
ab849d02fa1e55faff74d1d79c370c01e0e70e5c
51493c95a6c3c1563501dc179d39d160eb39afc3
refs/heads/master
2016-09-05T12:21:27.853909
2015-01-08T15:45:57
2015-01-08T15:45:57
27,260,335
0
0
null
null
null
null
UTF-8
C++
false
false
480
h
#ifndef STRBLOBPTR_H #define STRBLOBPTR_H #include <memory> #include <string> #include <vector> #include "StrBlob.h" class StrBlobPtr { public: StrBlobPtr(): curr(0) {} StrBlobPtr(StrBlob &a, std::size_t sz = 0): wptr(a.data), curr(sz) {} std::string& deref() const; StrBlobPtr& incr(); private: std::shared_ptr<std::vector<std::string>> check(std::size_t, const std::string&) const; std::weak_ptr<std::vector<std::string>> wptr; std::size_t curr; }; #endif
[ "2426984972@qq.com" ]
2426984972@qq.com
2aeae221bc9b50ddcc7f9d296187513cbf20c3d8
b243484c252a0be6bba3f7d821deffa5648a6944
/c++/101-150/103_Binary_Tree_Zigzag_Level_Order_Traversal.cpp
6034a7e0089001d46a572301c8523005af722651
[]
no_license
lqryo/leetcode
a3e913ad15b2d2e5d99e03845dd505c4cf9f37a2
cf13de4958e4b4c2fb8fc79cf98d7035d23f83c3
refs/heads/master
2020-05-15T20:10:27.415993
2020-01-16T07:51:13
2020-01-16T07:51:13
182,472,085
0
0
null
null
null
null
UTF-8
C++
false
false
1,597
cpp
#include <functional> #include <iostream> #include <sstream> #include <string> #include <vector> #include <algorithm> #include <glog/logging.h> using namespace std; //Definition for a binary tree node. struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: vector<vector<int>> zigzagLevelOrder(TreeNode* root) { if (root == NULL) return ans; vector<TreeNode*> curLevel; curLevel.push_back(root); while (curLevel.size() != 0) { vector<int> tmp; if (left2right) { for (auto it = curLevel.begin(); it != curLevel.end(); ++it) { if (*it == NULL) continue; else tmp.push_back((*it)->val); } } else { for (auto it = curLevel.rbegin(); it != curLevel.rend(); ++it) { if (*it == NULL) continue; else tmp.push_back((*it)->val); } } if (tmp.size() != 0) ans.push_back(tmp); vector<TreeNode*> curLevel_copy; curLevel.swap(curLevel_copy); for (auto x : curLevel_copy) { if (x == NULL) continue; curLevel.push_back(x->left); curLevel.push_back(x->right); } left2right = !left2right; } return ans; } private: vector<vector<int>> ans; bool left2right = true; }; int main(int argc, char* argv[]) { TreeNode* root = new TreeNode(3); root->left = new TreeNode(9); root->right = new TreeNode(20); root->right->left = new TreeNode(15); root->right->right = new TreeNode(7); Solution s; vector<vector<int>> ans = s.zigzagLevelOrder(root); std::cin.get(); }
[ "liangqi1995@gmail.com" ]
liangqi1995@gmail.com
bca5a6f9ec0f1fdb3feb3890517081bc85ffee44
44c286b522cf72b338671c3795fdccf5e4e30017
/src/functions.cpp
d1fa6f4c416faafb423fb585ce385a7c84083757
[ "Unlicense" ]
permissive
traversc/trqwe
e994bec3182c8a7a4fccdf002047b3608cb2a041
dcf57673ca308dd8d1889d1621b6976b78e4bd26
refs/heads/master
2021-06-03T16:27:01.406016
2020-11-30T19:24:56
2020-11-30T19:24:56
97,065,323
23
2
null
null
null
null
UTF-8
C++
false
false
1,484
cpp
#include <Rcpp.h> #include <unordered_map> using namespace Rcpp; // [[Rcpp::plugins("cpp11")]] // [[Rcpp::export]] std::unordered_map<SEXP, int> tablec_string(CharacterVector x) { std::unordered_map<SEXP, int> tab; int n = x.size(); for(int i=0;i<n;i++) { tab[x[i]]++; } return tab; } // [[Rcpp::export]] std::unordered_map<int, int> tablec_int(IntegerVector x) { std::unordered_map<int, int> tab; int n = x.size(); for(int i=0;i<n;i++) { tab[x[i]]++; } return tab; } // [[Rcpp::export]] IntegerVector tablec_factor(IntegerVector x) { LogicalVector nas = is_na(x); bool has_nas = is_true(any(nas)); CharacterVector _levels = x.attr("levels"); int tab_size = has_nas ? _levels.size() + 1 : _levels.size(); IntegerVector tab=rep(0, tab_size); int n = x.size(); for(int i=0;i<n;i++) { if(nas[i]) { tab[tab_size-1]++; } else { tab[x[i]-1]++; } } tab.attr("names") = _levels; return tab; } // [[Rcpp::export]] NumericMatrix fast_euclidean_dist(NumericMatrix x, NumericMatrix y) { int xrow = x.nrow(); int yrow = y.nrow(); int ndims = x.ncol(); NumericMatrix xy(xrow, yrow); for(int i=0; i<xrow; i++) { for(int j=0; j<yrow; j++) { xy(i,j) = 0; for(int k=0; k<ndims; k++) { xy(i,j) += (x(i,k) - y(j,k)) * (x(i,k) - y(j,k)); } } } return xy; }
[ "traversc@gmail.com" ]
traversc@gmail.com
110c3ab235be1e09ed0ec1b452c046baa8e9c24e
31f5cddb9885fc03b5c05fba5f9727b2f775cf47
/engine/core/render/vulkan/vk_texture.h
198cf3729071a31403bccfa0c524f50278552d71
[ "MIT" ]
permissive
timi-liuliang/echo
2935a34b80b598eeb2c2039d686a15d42907d6f7
d6e40d83c86431a819c6ef4ebb0f930c1b4d0f24
refs/heads/master
2023-08-17T05:35:08.104918
2023-08-11T18:10:35
2023-08-11T18:10:35
124,620,874
822
102
MIT
2021-06-11T14:29:03
2018-03-10T04:07:35
C++
UTF-8
C++
false
false
2,747
h
#pragma once #include "base/texture/texture.h" #include "base/texture/texture_render_target_2d.h" #include "vk_render_base.h" #include "vk_render_state.h" namespace Echo { class VKTexture { public: VKTexture(); virtual ~VKTexture(); // get vk image view virtual VkImageView getVkImageView() { return m_vkImageView; } // get vk descriptor image info VkDescriptorImageInfo* getVkDescriptorImageInfo() { return m_vkDescriptorImageInfo.sampler ? &m_vkDescriptorImageInfo : nullptr; } protected: // VkImage bool createVkImage(SamplerStatePtr samplerState, PixelFormat format, i32 width, i32 height, i32 depth, VkImageUsageFlags usage, VkFlags requirementsMask, VkImageTiling tiling, VkImageLayout initialLayout); void destroyVkImage(); // VkImageMemory void createVkImageMemory(VkFlags requirementsMask); void destroyVkImageMemory(); // VkImageView void createVkImageView(PixelFormat format); void destroyVkImageView(); // Descriptor info void createDescriptorImageInfo(SamplerStatePtr samplerState); // set surface data void setVkImageSurfaceData(int level, PixelFormat pixFmt, Dword usage, ui32 width, ui32 height, const Buffer& buff, bool isUseStaging); // tool set image layout void setImageLayout(VkCommandBuffer cmdBuffer, VkImage image, VkImageLayout oldImageLayout, VkImageLayout newImageLayout); protected: VkImage m_vkImage = VK_NULL_HANDLE; VkDeviceMemory m_vkImageMemory = VK_NULL_HANDLE; VkImageView m_vkImageView = VK_NULL_HANDLE; VkDescriptorImageInfo m_vkDescriptorImageInfo = {}; }; class VKTexture2D : public Texture, public VKTexture { public: VKTexture2D(const String& pathName); virtual ~VKTexture2D(); // type virtual TexType getType() const override { return TT_2D; } // get vulkan texture // get vulkan sampler // load virtual bool load() override; // update data virtual bool updateTexture2D(PixelFormat format, TexUsage usage, i32 width, i32 height, void* data, ui32 size); private: // convert format void convertFormat(Image* image); }; class VKTextureRender : public TextureRenderTarget2D, public VKTexture { public: VKTextureRender(const String& name); virtual ~VKTextureRender(); // get vk image view virtual VkImageView getVkImageView() override; public: // unload virtual bool unload() override; // update texture by rect virtual bool updateTexture2D(PixelFormat format, TexUsage usage, i32 width, i32 height, void* data, ui32 size) override; }; }
[ "qq79402005@gmail.com" ]
qq79402005@gmail.com
dff839e9c34f3272db9fe7e0357d23405fad5182
d1d92df0b664942a12e22e35a4f58d2f51e0fb40
/src/parser.cpp
937bba10ead020e237b346d08641c84eddd489ca
[]
no_license
mkhasan/client_interface_ros
a21e6aba657fa965629f5cb26cb7d9360dd2f789
fc8424047316eefd8cd2b9337c5156fa27c5ee30
refs/heads/master
2022-06-12T03:55:24.559962
2020-05-05T18:38:47
2020-05-05T18:38:47
261,414,995
0
1
null
null
null
null
UTF-8
C++
false
false
7,696
cpp
#include "client_interface/parser.h" #include "client_interface/client_interface.h" #include "ros/ros.h" #include <iostream> #include <fstream> #include <vector> #include <sstream> #include <memory> #include <assert.h> #include <boost/algorithm/string.hpp> #include <unistd.h> #define KNNOT2MS 0.514444444 using namespace std; namespace client_interface { inline bool condition(int ch) { bool flag; flag = (ch == '#' || ch == '$' || ch == 'M'); return flag; } void parse(DeviceGroup & devices, char *buffer, int index) { static int maxLen = 0; static char temp[1024]; if(index < MIN_INDEX || index > MAX_INDEX) return; if(condition(buffer[0]) == false) return; buffer[index] = 0; if(buffer[0] == '#') ParseDevice(devices, buffer, "IMU"); else if (buffer[0] == '$') ParseDevice(devices, buffer, "GPS"); else if (buffer[0] == 'M') { int i=0; for(i=0; i<index; i++) temp[i] = buffer[i]; temp[i] = 0; ROS_DEBUG("temp is: %s", temp); ParseDevice(devices, buffer, "MotorInfo"); } } void ParseIMU(DeviceGroup & devices, const vector<string> results) { try { devices.dr_imu.seq = stoi(results[0]); int size = results.size(); int i=1; if(i+14<size) { devices.dr_imu.estyaw = stof(results[i+1]); i+=2; for (int k=0; k<3; k++) { devices.dr_imu.gyro[k] = stoi(results[i+1+k]); } i += 1+3; for (int k=0; k<3; k++) { devices.dr_imu.accel[k] = stoi(results[i+1+k]); } i += 1+3; for (int k=0; k<3; k++) { devices.dr_imu.compass[k] = stoi(results[i+1+k]); } i += 1+3; } } catch (const exception & e) { THROW(RobotException, string("Nested error " + string(e.what())).c_str()); } } void ParseGPS(DeviceGroup & devices, const vector<string> results) { int i=0; int size = results.size(); if(8<results.size()) { i++; if(results[i].length() < sizeof(devices.dr_gps.timestamp)) strcpy(devices.dr_gps.timestamp, results[i].c_str()); else strcpy(devices.dr_gps.timestamp, "None"); i++; if(results[i] == "A") strcpy(devices.dr_gps.state, "Valid"); else if(results[i] == "V") strcpy(devices.dr_gps.state, "Invalid"); else strcpy(devices.dr_gps.state, "None"); i++; string temp = results[i+1] + string(":") + results[i]; if(temp.length() < sizeof(devices.dr_gps.latitude)) strcpy(devices.dr_gps.latitude, temp.c_str()); else strcpy(devices.dr_gps.latitude, "None"); i+=2; temp = results[i+1] + string(":") + results[i]; if(temp.length() < sizeof(devices.dr_gps.longuitude)) strcpy(devices.dr_gps.longuitude, temp.c_str()); else strcpy(devices.dr_gps.longuitude, "None"); i+=2; if(results[i].length() > 0) devices.dr_gps.vog = stof(results[i])*KNNOT2MS; else devices.dr_gps.vog = -1.0; i++; if(results[i].length() > 0) devices.dr_gps.cog = stof(results[i]); else devices.dr_gps.cog = -1.0; i++; } } void ParseMotorInfo(DeviceGroup & devices, char * buffer) { if(!(buffer[0] == 'M' && buffer[1] == 'M' && (buffer[2] == '0' || buffer[2] == '1') && buffer[3] == ' ')) THROW(RobotException, "abnormal start of msg"); int index = buffer[2]-'0'; char * p = &buffer[4]; if(strlen(p) == 0) THROW(RobotException, "buffer too short"); int i; for(i=0; p[i] != '\r'; i++) if(i == strlen(p)) { THROW(RobotException, "carriage return not found"); } p[i] = NULL; vector<string> results, division; boost::split(results, p, [](char c){return c == '=';}); if(results.size() < 2) { stringstream ss; ss << "primary split failed with src=" << p; THROW(RobotException, ss.str().c_str()); } boost::split(division, results[1], [](char c) {return c == ':';}); if(division.size() == 0) { stringstream ss; ss << "secondary split failed with src=" << results[1]; THROW(RobotException, ss.str().c_str()); } try { if (results[0] == "A") { devices.dr_motor.current[2*index+0] = stof(division[0])/10.0; devices.dr_motor.current[2*index+1] = stof(division[1])/10.0 ; } else if (results[0] == "AI") { devices.dr_motor.temperature[2*index+0] = ad2Temperature(stoi(division[2])); devices.dr_motor.temperature[2*index+1] = ad2Temperature(stoi(division[3])); } else if (results[0] == "C") { devices.dr_motor.position[2*index+0] = stoi(division[0]); devices.dr_motor.position[2*index+1] = stoi(division[1]); } else if (results[0] == "P") { devices.dr_motor.pwm[2*index+0] = stoi(division[0]); devices.dr_motor.pwm[2*index+1] = stoi(division[1]); } else if (results[0] == "S") { devices.dr_motor.speed[2*index+0] = stoi(division[0]); devices.dr_motor.speed[2*index+1] = stoi(division[1]); } else if (results[0] == "V") { devices.dr_motor.voltage = stof(division[1])/10.0; } else if (results[0] == "FF") { //ROS_INFO("buffer is %s", buffer); string Drv; int driverState[4]; driverState[index] = stoi(results[1]); if ((driverState[index] & 0x1) != 0){ Drv = "OH"; } if ((driverState[index] & 0x2) != 0){ Drv += "OV"; } if ((driverState[index] & 0x4) != 0){ Drv += "UV"; } if ((driverState[index] & 0x8) != 0){ Drv += "SHT"; } if ((driverState[index] & 0x10) != 0){ Drv += "ESTOP"; } if ((driverState[index] & 0x20) != 0){ Drv += "SEPF"; } if ((driverState[index] & 0x40) != 0){ Drv += "PromF"; } if ((driverState[index] & 0x80) != 0){ Drv += "ConfF"; } if(Drv.length() < sizeof(devices.dr_motor.driverstate[index])) strcpy(devices.dr_motor.driverstate[index], Drv.c_str()); else THROW(RobotException, "driverstate size is too short"); } } catch (const exception & e) { THROW(RobotException, string("Nested error " + string(e.what())).c_str()); } } void ParseDevice(DeviceGroup & devices, char * buffer, const char *deviceName) { static bool first = true; if(first) cout << buffer << endl; if(strcmp(deviceName, "MotorInfo") == 0) { try { ParseMotorInfo(devices, buffer); } catch(const exception& e) { ROS_ERROR("Error: %s", e.what()); } return; } const char *p = &buffer[1]; vector<std::string> results; try { boost::split(results, p, [](char c){return c == ',';}); if(first) { cout << "size is " << results.size() << endl; cout << results[1] << endl; } if(strcmp(deviceName, "IMU") == 0) ParseIMU(devices, results); else if(strcmp(deviceName, "GPS") == 0) ParseGPS(devices, results); } catch (const exception & e) { ROS_ERROR("Error: %s", e.what()); } first = false; } float ad2Temperature(int adValue) { //for new temperature sensor const double FULLAD = 4095; const double resTable[25] = { 114660, 84510, 62927, 47077, 35563, 27119, 20860, 16204, 12683, 10000, 7942, 6327, 5074, 4103, 3336, 2724, 2237, 1846, 1530, 1275, 1068, 899.3, 760.7, 645.2, 549.4 }; const double tempTable[25] = { -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100 }; double tempM = 0; double k = (adValue / FULLAD); double resValue = 0; if (k != 1) { resValue = 10000 * k / (1 - k); //AD value to resistor } else { resValue = resTable[0]; } int index = -1; if (resValue >= resTable[0]) //too lower { tempM = -20; } else if (resValue <= resTable[24]) { tempM = 100; } else { for (int i = 0; i < 24; i++) { if ((resValue <= resTable[i]) && (resValue >= resTable[i + 1])) { index = i; break; } } if (index >= 0) { tempM = tempTable[index] + (resValue - resTable[index]) / (resTable[index + 1] - resTable[index]) * (tempTable[index + 1] - tempTable[index]); } else { tempM = 0; } } return tempM; } }
[ "hasan@kaist.ac.kr" ]
hasan@kaist.ac.kr
721a07b054dc1acb38c6ffa4f872bc8a0ee9c0b8
897ef84932251c57a790b75b1410a147b9b64792
/guiheader.h
9ec21ecf01d473e1f52d3bade66a86de83acafdf
[]
no_license
erophames/CamX
a92b789d758e514d43e6fd676dbb9eed1b7b3468
56b08ed02d976621f538feca10e1aaa58926aa5a
refs/heads/master
2021-06-21T21:14:27.776691
2017-07-22T11:46:09
2017-07-22T11:46:09
98,467,657
1
2
null
null
null
null
UTF-8
C++
false
false
2,203
h
#ifndef CAMX_guiTimeLine_H #define CAMX_guiTimeLine_H 1 #include "object.h" #include "winzoom.h" #include "seqtime.h" #include "timestring.h" class guiZoom; class Seq_Signature; class Seq_Song; class guiGadget_CW; class guiTimeLinePos:public OStart { friend class guiTimeLine; public: guiTimeLinePos(){nextmeasure=0;} OSTART GetStart(){return ostart;} guiTimeLinePos *PrevPosition() {return (guiTimeLinePos *)prev;} guiTimeLinePos *NextPosition() {return (guiTimeLinePos *)next;} guiTimeLinePos *nextmeasure; OSTART measure,beat,zoom; int x,type; bool showtext; }; class guiTimeLine { public: enum { MID_SONGPOSITION, MID_MIDPOSITION }; guiTimeLine(); void DeInit(); void BufferOldMidPosition(); void DrawPositionRaster(guiBitmap *); void DrawPositionRaster(guiBitmap *,int y,int y2); bool CheckMousePositionAndSongPosition(); guiTimeLinePos* FirstPosition() { return (guiTimeLinePos *)lpos.GetRoot(); } guiTimeLinePos* LastPosition() { return (guiTimeLinePos *)lpos.Getc_end(); } guiTimeLinePos* FindPositionX(int posx); guiTimeLinePos *AddPosition(OSTART time,int x,int type,bool showtext,OSTART measure=0,OSTART beat=0,OSTART zoom=0); int ConvertTimeToX(OSTART,int cx2); // -1,0 or x co int ConvertTimeToX(OSTART); // -1,0 or x co void RemoveAllPositions(); OSTART ConvertXPosToTime(int); // -1 if not in header guiTimeLinePos *RemovePosition(guiTimeLinePos *); bool CheckIfInHeader(OSTART pos); bool CheckIfCycle(int cx,int cy); bool CheckMousePosition(int cx); bool CheckMousePosition(int cx,int cy); void ShowCycleAndPositions(); void Draw(); void RecalcSamplePositions(); Seq_Pos pos; TimeString timestring; guiZoom *zoom; // X zoom guiWindow *win; guiBitmap *bitmap; guiGadget_CW *dbgadget; OSTART headertime,mousetime,addtomovecycle,oldmidposition,showzoom; LONGLONG *sampleposition; double samplesperpixel; // sample mode int sampleposition_size, headertimex,headertimex2, headersongstoppositionx,headersongstoppositionx2, mousetimex,midmode,oldmidposx, x,y,x2,y2,splity,cyclex,cyclex2,cycley2,cyclepos_x,cyclepos_x2,flag,format; bool cycleonheader,cycleon,movesongposition; private: OListStart lpos; }; #endif
[ "matthieu.brucher@gmail.com" ]
matthieu.brucher@gmail.com
9f602d5e4523fea2f07bf08127d9f33dc46c6dab
32b8db47c9335f65aeb39848c928c3b64fc8a52e
/tgame-client-classes-20160829/game/fightendless/StrengthenItem.cpp
4b9d6301ec615728431d440131f5673ebad27c8e
[]
no_license
mengtest/backup-1
763dedbb09d662b0940a2cedffb4b9fd1f7fb35d
d9f34e5bc08fe88485ac82f8e9aa09b994bb0e54
refs/heads/master
2020-05-04T14:29:30.181303
2016-12-13T02:28:23
2016-12-13T02:28:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,753
cpp
#include "StrengthenItem.h" #include "NounHelper.h" #include "defines.h" #include "FightEndlessControl.h" #include "TextHelper.h" #include "UserObj.h" #include "CommonDialog.h" #include "tip/TipControl.h" CStrengthenItem::CStrengthenItem(){ } CStrengthenItem::~CStrengthenItem(){ } CStrengthenItem* CStrengthenItem::create(UILayout *pRefLayout){ CStrengthenItem *pRet = new CStrengthenItem(); if(pRet != NULL && pRet->initWithLayout(pRefLayout)) { pRet->autorelease(); } else { CC_SAFE_DELETE(pRet); } return pRet; } bool CStrengthenItem::initWithLayout(UILayout *pRefLayout) { bool bRet = false; do { CC_BREAK_IF(!BaseLayout::init()); initLayoutWithUICopy(pRefLayout); addChild(m_pRootLayout); initUI(); bRet = true; } while (0); return bRet; } bool CStrengthenItem::init(){ bool bRet = false; do{ CC_BREAK_IF(!BaseLayout::init()); initLayoutFromJsonFile("ui_v2/strengthen_item_ui.ExportJson"); addChild(m_pRootLayout); initUI(); bRet = true; }while(0); return bRet; } void CStrengthenItem::initUI(){ UIImageView *pImg = dynamic_cast<UIImageView*>(m_pRootLayout->getChildByName("icon_bg")); m_pCell = IconCell::create(); m_pCell->showNumTxt(); m_pCell->setInfo(THING_TYPE_GOLD, 0, 0); pImg->addChild(m_pCell); m_pDesTxt = dynamic_cast<UILabel*>(m_pRootLayout->getChildByName("desc_txt")); m_pBtn = dynamic_cast<UIButton*>(m_pRootLayout->getChildByName("cost_btn")); m_pBtnTxt = dynamic_cast<UILabel*>(m_pBtn->getChildByName("btn_txt")); m_pBtn->addTouchEventListener(this, toucheventselector(CStrengthenItem::touchEventHandler)); } void CStrengthenItem::setObj(unsigned int idx, const vmsg::CSGen& info){ m_uIDX = idx; m_stInfo = info; m_pBtnTxt->setText(to_string(info.costcoin())); if(idx == 0){ m_pDesTxt->setText(TextStr(ENDLESS_RAND_GEN)); return; } m_pDesTxt->setText(P_ENDLESS_CTRL->getDescByGenInfo(info)); if(info.cnt() > 0){ m_pCell->setNum(info.cnt(), ccYELLOW); }else{ m_pCell->setNum(0, ccYELLOW); } } const vmsg::CSGen& CStrengthenItem::getObj(){ return m_stInfo; } unsigned int CStrengthenItem::getIDX(){ return m_uIDX; } void CStrengthenItem::touchEventHandler(CCObject *pSender, TouchEventType type){ UIWidget *pWidget = dynamic_cast<UIWidget*>(pSender); const char *pszWidgetName = pWidget->getName(); string strWidgetName = pWidget->getName(); switch (type) { case TOUCH_EVENT_ENDED: if(strcmp(pszWidgetName, "cost_btn") == 0) { if(!P_TIP_CTRL->CoinCostTip(m_stInfo.costcoin(), this)){ return; } P_ENDLESS_CTRL->sendInfiniteBuyGenRqst(m_uIDX); } break; default: break; } }
[ "1027718562@qq.com" ]
1027718562@qq.com
9d4f1ee1b368fcea13ff12713799eeb2426c42ac
2c2ad6088a624dc68566bf5db343af40831dd78d
/common/Msg2SmvPdu.cpp
63687e5245c9349d44348cd705d7b2f698508938
[]
no_license
xjsh2017/WSAnalKit
7afecb55b29d64cde4a83b5f99943973b905745d
6ffb9cb0703485240a056ae4f243ca0b1b27f09e
refs/heads/master
2021-01-22T20:29:13.785967
2017-03-17T15:10:24
2017-03-17T15:10:24
85,325,335
0
1
null
2017-03-17T15:13:19
2017-03-17T15:13:19
null
UTF-8
C++
false
false
9,822
cpp
#pragma execution_character_set("UTF-8") #include "Msg2SmvPdu.h" //#include "AnalyzeMMSData.h" #include <cmath> //#include <iostream.h> #include<list> using namespace std; template <typename Integer> Integer Reverse(Integer value) { Integer result = value; volatile char *p1 = reinterpret_cast<char*>(&result); volatile char *p2 = p1 + sizeof(Integer) - 1; for (; p1 < p2; ++p1, --p2) { swap(*p1, *p2); } return result; } int CreateAsduInfo(SMV_INFO_STRUCT *p_info_struct) { if( (NULL==p_info_struct) || (p_info_struct->n_asdu_num<=0) ) return -1; p_info_struct->p_asdu_info_struct = new ASDU_INFO_STRUCT[p_info_struct->n_asdu_num]; return 0; } int GetValueOffset(TLV_STRUCT *p_tlv) { if(NULL==p_tlv) return -1; return p_tlv->n_lenlen +1; } //ASDU计数部分 //返回本部分内容所占字节数 int MSIS_ASDU_Sum(const char *c_msg_buf,SMV_INFO_STRUCT *p_info_struct) { if (NULL==c_msg_buf || NULL==p_info_struct) { return -1; } int n_tag=0; int n_offset=0; TLV_STRUCT tlv; //PDU首结构 tag为60,L可能为一个字节或三个字节 memset(&tlv,0,sizeof(tlv)); ParseASN1_TLV(c_msg_buf,&tlv); n_offset=GetValueOffset(&tlv); //解析ASDU个数 memset(&tlv,0,sizeof(tlv)); n_offset+=ParseASN1_TLV(c_msg_buf+n_offset,&tlv); if(tlv.n_len==1) memcpy((char *)&p_info_struct->n_asdu_num,tlv.c_value,1); else if (tlv.n_len==2) { int ntemp=0; memcpy((char *)&ntemp,tlv.c_value,1); p_info_struct->n_asdu_num+=256*ntemp; ntemp = 0; memcpy((char *)&ntemp,tlv.c_value+1,1); p_info_struct->n_asdu_num+=ntemp; } else//规范规定ASDU个数为1...65535,不会多于2字节。此处代码效率低 { int ntemp=0; for (int i=0; i<tlv.n_len-1; i++) { memcpy((char *)&ntemp,&tlv.c_value[i],1); p_info_struct->n_asdu_num += pow(256.0,double(tlv.n_len-1-i))*ntemp; } ntemp = 0; memcpy((char *)&ntemp,&tlv.c_value[tlv.n_len-1],1); p_info_struct->n_asdu_num += ntemp; } //过掉sequence of ParseASN1_TLV(c_msg_buf+n_offset,&tlv); n_offset+=GetValueOffset(&tlv); return n_offset; } //以太网类型PDU首部信息 //返回本部分内容所占字节数 int MSIS_Eth_Pdu(const char *c_msg_buf,SMV_INFO_STRUCT *p_info_struct) { if (NULL==c_msg_buf || NULL==p_info_struct) { return -1; } int ntemp=0; //APPID // memcpy(temp,c_msg_buf,2);//test code memcpy((char *)&p_info_struct->n_app_id,c_msg_buf,2); // //高位 p_info_struct->n_app_id = 0; memcpy((char *)&ntemp,c_msg_buf,1); p_info_struct->n_app_id+=256*ntemp; //低位 c_msg_buf+=1; memcpy((char *)&ntemp,c_msg_buf,1); p_info_struct->n_app_id+=ntemp; c_msg_buf+=1; //高位 memcpy((char *)&ntemp,c_msg_buf,1); p_info_struct->n_msg_len+=256*ntemp; //低位 c_msg_buf+=1; memcpy((char *)&ntemp,c_msg_buf,1); p_info_struct->n_msg_len+=ntemp; //后4个字节预留 return 8; } int ParseASDU_Total_Len(const char *c_msg_buf,int &n_tag,int &n_len) { if (NULL==c_msg_buf) { return -1; } return -1; } int MSIS_ASDU(const char *c_msg_buf,ASDU_INFO_STRUCT *p_asdu,bool b_parseData) { if (NULL==c_msg_buf || NULL==p_asdu) { return -1; } int n_tag=0; int n_offset=0; TLV_STRUCT tlv; //判断ASDU首结构 tag为30,L可能为一个字节或三个字节 ParseASN1_TLV(c_msg_buf, &tlv); n_offset = GetValueOffset(&tlv); p_asdu->n_asdu_len = tlv.n_len; //处理本帧ASDU基本属性 n_offset += ParseASDU_Atr(c_msg_buf+n_offset, p_asdu); //算出dataset总长度 ParseASN1_TLV(c_msg_buf+n_offset, &tlv); int n_dataset_len = tlv.n_len; n_offset += GetValueOffset(&tlv); if (b_parseData) { //处理数据集各数据 n_offset += ParseASDU_DataSet(c_msg_buf+n_offset, p_asdu, n_dataset_len); } else { n_offset += n_dataset_len; } return n_offset; } int ConvertValue_Int(TLV_STRUCT &tlv) { int nRet=0; if(tlv.n_len==1) memcpy((char *)&nRet,tlv.c_value,1); else { int ntemp = 0; for (int i=0; i<tlv.n_len-1; i++) { ntemp = 0; memcpy((char *)&ntemp, tlv.c_value+i, 1); nRet += pow(256.0,double(tlv.n_len-i-1))*ntemp; } memcpy((char *)&ntemp, tlv.c_value+tlv.n_len-1, 1); nRet += ntemp; } return nRet; } unsigned int ConvertValue_uInt(TLV_STRUCT &tlv) { unsigned int nRet=0; int ntemp=0; char *p_tmp = NULL; p_tmp = tlv.c_value; if(tlv.n_len==1)//一字节 memcpy((char *)&nRet,tlv.c_value,1); else if (tlv.n_len==2)//二字节 { nRet = (unsigned char)p_tmp[1] + ( ((unsigned char)p_tmp[0]) << 8 ); } else if (tlv.n_len==3)//三字节 { nRet = (unsigned char)p_tmp[2] + (((unsigned char)p_tmp[1]) << 8) + (((unsigned char)p_tmp[0]) << 16); } else if (tlv.n_len==4)//四字节 { nRet = (unsigned char)p_tmp[3] + (((unsigned char)p_tmp[2]) << 8) + (((unsigned char)p_tmp[1]) << 16) + (((unsigned char)p_tmp[0]) << 24); } else//多于四字节 { int ntemp = 0; for (int i=0; i<tlv.n_len-1; i++) { ntemp = 0; memcpy((char *)&ntemp, tlv.c_value+i, 1); nRet += pow(256.0,double(tlv.n_len-i-1))*ntemp; } ntemp = 0; memcpy((char *)&ntemp, tlv.c_value+tlv.n_len-1, 1); nRet += ntemp; } return nRet; } int ParseASDU_Atr(const char *c_msg_buf,ASDU_INFO_STRUCT *p_asdu) { if (NULL==c_msg_buf || NULL==p_asdu) { return -1; } int n_offset=0; TLV_STRUCT tlv; int ntemp=0; while(1) //非数据集成员 { memset(&tlv,0,sizeof(tlv)); //解析TLV ntemp=ParseASN1_TLV(c_msg_buf+n_offset,&tlv); if(tlv.n_tag==0x87) break; n_offset+=ntemp; switch(tlv.n_tag) { case 0x80: //svID memcpy(p_asdu->c_svID,tlv.c_value,tlv.n_len); break; case 0x81: //dataset memcpy(p_asdu->c_dataset,tlv.c_value,tlv.n_len); break; case 0x82: //smpCnt 规范定为Uint16 p_asdu->n_smpCnt=ConvertValue_uInt(tlv); break; case 0x83: //confRev //写死为1 规范定为Uint32 // p_asdu->n_confRev=1; p_asdu->n_confRev=ConvertValue_uInt(tlv);//modified on 20120701 by ljm,暂时不改为unsigned int,规范是unsigned int break; case 0x84: //refrTm memcpy(p_asdu->c_refrTm,tlv.c_value,tlv.n_len); break; case 0x85: //smpSynch p_asdu->b_smpSynch=(int)ConvertValue_uInt(tlv); break; case 0x86: //smpRate 规范定为Uint16 p_asdu->n_smpRate=ConvertValue_uInt(tlv); break; default: //默认情况 break; } } return n_offset; } int CreateSMVDataStruct(ASDU_INFO_STRUCT *p_asdu,int n_data_num) { if( (NULL==p_asdu) || (n_data_num<=0) ) return -1; p_asdu->p_smv_data_struct = new SMV_DATA_STRUCT[n_data_num]; p_asdu->n_data_num = n_data_num; //补充数据个数 return 0; } int Hex2Binary(char *cHex) { int n_strlen = 0; char cTemp[MAX_MMS_INFO_DATA_LEN]; long l_Temp; n_strlen = strlen(cHex); if (NULL == cHex) { return -1; } memset(cTemp,0,MAX_MMS_INFO_DATA_LEN); l_Temp=strtoul(cHex,NULL,16); // itoa(l_Temp, cHex, 2); my_itoa(l_Temp, cHex, 2); //前面补齐0 while (strlen(cHex) < 4*n_strlen) { strcpy(cTemp, "0"); strcat(cTemp, cHex); strcpy(cHex, cTemp); } return 0; } int ParseASDU_DataSet(const char *c_msg_buf,ASDU_INFO_STRUCT *p_asdu,int n_dataset_len) { if (NULL==c_msg_buf || NULL==p_asdu) { return -1; } // const char *p_quality = NULL; // char c_data[5]; int n_data_num=n_dataset_len/8; CreateSMVDataStruct(p_asdu,n_data_num); p_asdu->n_danum_actual = n_data_num; int n_temp=0; const char *p_buf_emp; for(int i=0; i<n_data_num; i++) { //效率太低,2012-08-03删除 // memcpy((char *)&n_temp,c_msg_buf+8*i,4); // (p_asdu->p_smv_data_struct[i]).n_value=Reverse<int>(n_temp); //值 (p_asdu->p_smv_data_struct[i]).n_value = Buf2Int32(c_msg_buf+8*i); //数据品质 p_buf_emp = c_msg_buf+8*i+4; memcpy( (p_asdu->p_smv_data_struct[i]).c_quality, p_buf_emp, 4);//modified on 2012/8/9 为了提高在线分析性能,统一处理 // sprintf((p_asdu->p_smv_data_struct[i]).c_quality,"%02x%02x%02x%02x",(unsigned char)p_buf_emp[0],(unsigned char)p_buf_emp[1], // (unsigned char)p_buf_emp[2],(unsigned char)p_buf_emp[3]); // strcpy(c_data,(p_asdu->p_smv_data_struct[i]).c_quality); // Hex2Binary(c_data);//将数据由16进制转换为2进制-此处效率极其低下,建议将此函数关闭,品质的转换在应用时使用 // p_quality = c_data; // p_quality = p_quality+strlen(c_data)-14;//保留最后14位 //品质因数quality // strcpy((p_asdu->p_smv_data_struct[i]).c_quality,p_quality);//delete by yzh 20120509 } return n_dataset_len; } int my_itoa(int val, char* buf, int radix) { // const int radix = 10; char* p; int a; //every digit int len; char* b; //start of the digit char char temp; p = buf; if (val < 0) { *p++ = '-'; val = 0 - val; } b = p; do { a = val % radix; val /= radix; *p++ = a + '0'; } while (val > 0); len = (int)(p - buf); *p-- = 0; //swap do { temp = *p; *p = *b; *b = temp; --p; ++b; } while (b < p); return len; } int Buf2Int32(const char* c_msg_buf) { int ndestval = 0; unsigned int ntmpval = 0; unsigned char c1,c2,c3,c4; // unsigned int n_1=0,n_2=0,n_3=0,n_4=0; int nt = c_msg_buf[0] & 0X80; if ( nt == 0X80)//负数 { c1 = ~c_msg_buf[0]; c2 = ~c_msg_buf[1]; c3 = ~c_msg_buf[2]; c4 = (~c_msg_buf[3]) + 1; ntmpval = c4 + (c3<<8) + (c2<<16) + (c1<<24); ndestval = -ntmpval; } else//正数 { // n_1 = ((unsigned char)c_msg_buf[2]) << 8; // n_2 = ((unsigned char)c_msg_buf[1]) << 16; // n_3 = ((unsigned char)c_msg_buf[0]) << 24; // ntest = (unsigned char)c_msg_buf[3] + n_1 + n_2 + n_3; ndestval = (unsigned char)c_msg_buf[3] + (((unsigned char)c_msg_buf[2]) << 8) + (((unsigned char)c_msg_buf[1]) << 16) + (((unsigned char)c_msg_buf[0]) << 24); } return ndestval; }
[ "benevo@163.com" ]
benevo@163.com
f2d9b642a2edf9d046792886e362b9bcffe180ab
843518e45edb72fd0a7a16493f5fa75ed16bf921
/src/stabilize/stabHeaders/stabClass.h
108e91bc68335404b3be906017184c587d2144a6
[]
no_license
risenanti/skyshark
635a7bea48c94eb0209ae74f3cd1723e6f06952f
ba2f556db6a7bc78e4a22048c6d648d226641a2e
refs/heads/master
2021-09-14T12:01:12.123192
2018-02-23T16:20:32
2018-02-23T16:20:32
99,359,404
0
0
null
null
null
null
UTF-8
C++
false
false
1,073
h
/*Copyright Jackal Robotics LLC*/ /*Keith Conley 2017*/ #ifndef stabClass_h #define stabClass_h #include "std_msgs/Header.h" #include "skyshark_msgs/VelocityTarget.h" #include "skyshark_msgs/frameAngle.h" //angle of frame body #include "skyshark_msgs/StabTargets.h"//targets from rcInput #include "pid.h" #include "ros/ros.h" class stabClass { public: void input_processingCallback(const skyshark_msgs::StabTargets &message); void frame_angleCallback(const skyshark_msgs::frameAngle &message); void computeStab(void); float getRCout1(); float getRCout2(); float getRCout3(); float getRCout4(); stabClass(); private: double rcthr, rcyaw, rcpit, rcroll; double roll; //measured values inputs to PID double pitch; double yaw; double yaw_target; /*velocity Outputs DO NOT LEAVE FIX THIS SHIT*/ float rcOut1, rcOut2, rcOut3, rcOut4; /*Create Rate PIDS*/ PID pitchRate; PID rollRate; PID yawRate; /*Create Stability PIDS*/ PID pitchStab; PID rollStab; PID yawStab; }; #endif /*Copyright Jackal Robotics LLC*/ /*Keith Conley 2017*/
[ "risenanti@gmail.com" ]
risenanti@gmail.com
ff29da07e4cdefcec22ca650ca45bce4aaa3d2b5
ef66e297a49d04098d98a711ca3fda7b8a9a657c
/Algorithm/ACGT inverted counts/ACGT inverted counts/main.cpp
f05bdd91bf1157ab9087021a97aef4e6530131e7
[]
no_license
breezy1812/MyCodes
34940357954dad35ddcf39aa6c9bc9e5cd1748eb
9e3d117d17025b3b587c5a80638cb8b3de754195
refs/heads/master
2020-07-19T13:36:05.270908
2018-12-15T08:54:30
2018-12-15T08:54:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
592
cpp
#include <iostream> #include <cstdio> using namespace std; #pragma warning(disable:4996) int algo(char *s, int len) { int sum = 0; int c[4] = { 0 }; for (int i = 0; i < len; i++) { switch (s[i]) { case 'A': sum += c[1] + c[2] + c[3]; c[0]++; break; case 'C': sum += c[2] + c[3]; c[1]++; break; case 'G': sum += c[3]; c[2]++; break; case 'T': c[3]++; break; default: break; } } return sum; } int main() { char s[13] = "ACGGGCTACGTC"; s[12] = '\0'; cout << s << endl; int ans = algo(s, 12); cout << ans; cin.get(); return 0; }
[ "449195172@qq.com" ]
449195172@qq.com
bb81bc6cbd9df0022a2f6b58ec8f9012938439de
b49b52be52ef1ba3aca1e059d1c817f492fde686
/TinyNetPerf/Headers/Interfaces/ISocket-Bind-Handling.h
7384ad66599c486408a771a349da94a166621293
[ "BSD-3-Clause" ]
permissive
jwolak/TinyNetPerf-Beta-Research
4726dcf969fb7eef9cd5d6751796c0d7a0f65fd4
075830b0408ae5d74f7ecb81b930b1f74f2a1d2a
refs/heads/master
2022-04-24T00:21:49.711219
2020-04-28T20:52:53
2020-04-28T20:52:53
259,747,981
1
0
null
null
null
null
UTF-8
C++
false
false
2,128
h
/* * ISocket-Bind-Handling.h * * Author: Janusz Wolak */ /*- * Copyright (c) 2020 Janusz Wolak * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ #ifndef HEADERS_INTERFACES_ISOCKET_BIND_HANDLING_H_ #define HEADERS_INTERFACES_ISOCKET_BIND_HANDLING_H_ #include <sys/types.h> #include <sys/types.h> #include <cstdint> #include <memory> namespace tinynetperf { namespace socketDataHandling { class ISocketBindHandling { public: virtual ~ISocketBindHandling() = default; virtual bool BindSocketWithAddress() = 0; }; } /* namespace socketDataHanding */ } /* namespace tinynetperf */ #endif /* HEADERS_INTERFACES_ISOCKET_BIND_HANDLING_H_ */
[ "januszvdm@gmail.com" ]
januszvdm@gmail.com
5169eb553f2354b8a0179f9a64463b287d8ac7bd
13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab
/home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/src/stan/mcmc/hmc/static_uniform/dense_e_static_uniform.hpp
57f97add57a1edcb86cf3a2843b3fc295966603e
[ "Unlicense" ]
permissive
tommybutler/mlearnpy2
8ec52bcd03208c9771d8d02ede8eaa91a95bda30
9e5d377d0242ac5eb1e82a357e6701095a8ca1ff
refs/heads/master
2022-10-24T23:30:18.705329
2022-10-17T15:41:37
2022-10-17T15:41:37
118,529,175
0
2
Unlicense
2022-10-15T23:32:18
2018-01-22T23:27:10
Python
UTF-8
C++
false
false
1,041
hpp
#ifndef STAN_MCMC_HMC_STATIC_UNIFORM_DENSE_E_STATIC_UNIFORM_HPP #define STAN_MCMC_HMC_STATIC_UNIFORM_DENSE_E_STATIC_UNIFORM_HPP #include <stan/mcmc/hmc/static_uniform/base_static_uniform.hpp> #include <stan/mcmc/hmc/hamiltonians/dense_e_point.hpp> #include <stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp> #include <stan/mcmc/hmc/integrators/expl_leapfrog.hpp> namespace stan { namespace mcmc { /** * Hamiltonian Monte Carlo implementation that uniformly samples * from trajectories with a static integration time with a * Gaussian-Euclidean disintegration and dense metric */ template <typename Model, class BaseRNG> class dense_e_static_uniform : public base_static_uniform<Model, dense_e_metric, expl_leapfrog, BaseRNG> { public: dense_e_static_uniform(const Model& model, BaseRNG& rng): base_static_uniform<Model, dense_e_metric, expl_leapfrog, BaseRNG>(model, rng) { } }; } // mcmc } // stan #endif
[ "tbutler.github@internetalias.net" ]
tbutler.github@internetalias.net
7ec3087df8e66cbf6817e428a3345132931cbd5e
381ad93d4670abf05e9822eb5600fabddb5d1ddc
/valuationEngine/src/market/zeroCouponCurve.cpp
7c2b08868da3f77db3ceca06f7cc81d034fe9196
[]
no_license
miguel240/cmake_example
93bfe2fe210519d4c00425a9defdb8e48a03d7c7
2def380c3e6738e9acd8712a182f454e5c1791a7
refs/heads/master
2023-04-27T08:17:55.240919
2021-05-21T15:17:54
2021-05-21T15:17:54
361,815,235
0
1
null
null
null
null
UTF-8
C++
false
false
845
cpp
#include <valarray> #include "zeroCouponCurve.h" market::ZeroCouponCurve::ZeroCouponCurve(types::MapDiscountCurveType curveData, const types::date today) : curveData_{curveData}, today_{today}, fixedRate_{} {} boost::optional<double> market::ZeroCouponCurve::getRate(types::date date) const { if (fixedRate_) return fixedRate_; auto it = curveData_.find(date); return it != curveData_.end() ? it->second : boost::optional<double>(); } // Return e^-rt or null if not exist the date in the curveData boost::optional<double> market::ZeroCouponCurve::getDiscountCurve(types::date date) const { auto rate = getRate(date); // If key doesn't exists if (!rate) return boost::optional<double>(); double fractionDate = dcfCalculator_(today_, date); return std::exp(-(*rate) * fractionDate); }
[ "measix.miguelr@gmail.com" ]
measix.miguelr@gmail.com
0ebf88599d3368a8d6917541f757913224488373
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_new_hunk_1157.cpp
763f6c449d938ec95f501ab29ffe1be22c00e442
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,134
cpp
{ const char *fname; int rc; if (*s->error_fname == '|') { apr_file_t *dummy = NULL; apr_cmdtype_e cmdtype = APR_SHELLCMD_ENV; fname = s->error_fname + 1; /* In 2.4 favor PROGRAM_ENV, accept "||prog" syntax for compatibility * and "|$cmd" to override the default. * Any 2.2 backport would continue to favor SHELLCMD_ENV so there * accept "||prog" to override, and "|$cmd" to ease conversion. */ if (*fname == '|') { cmdtype = APR_PROGRAM_ENV; ++fname; } if (*fname == '$') ++fname; /* Spawn a new child logger. If this is the main server_rec, * the new child must use a dummy stderr since the current * stderr might be a pipe to the old logger. Otherwise, the * child inherits the parents stderr. */ rc = log_child(p, fname, &dummy, cmdtype, is_main); if (rc != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_STARTUP, rc, NULL, "Couldn't start ErrorLog process"); return DONE; }
[ "993273596@qq.com" ]
993273596@qq.com
51b010337dc813ee4238ed7302d488cc816b33c6
d14ec94bf8daaf8d302da069b1a5fdb93bf18241
/tests/shell/test.cpp
9e78566da591afdb56c9f4189db3271b9b4bb67a
[ "Apache-2.0" ]
permissive
egranata/puppy
7128ed79e1aa109bcfbeb689016401e28c2428cc
dc8b9bd7620966d94b18cbfaf50c9c5e142b9f6c
refs/heads/master
2021-07-04T13:14:59.947100
2019-02-18T19:22:26
2019-02-18T19:22:26
135,356,842
28
2
null
null
null
null
UTF-8
C++
false
false
2,579
cpp
/* * Copyright 2018 Google LLC * * 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 <libcheckup/test.h> #include <libcheckup/testplan.h> #include <libcheckup/assert.h> #include <libshell/system.h> #include <stdio.h> class IoRedirectionTest : public Test { public: IoRedirectionTest() : Test("shell.IoRedirectionTest") {} protected: void run() override { FILE *f = fopen("/tmp/redir.in", "w"); CHECK_NOT_EQ(f, nullptr); fprintf(f, "echo \"Test file\" > /tmp/redir.out\n"); fclose(f); f = fopen("/tmp/redir.sh", "w"); CHECK_NOT_EQ(f, nullptr); fprintf(f, "shell < /tmp/redir.in\n"); fclose(f); libShellSupport::system("shell /tmp/redir.sh"); f = fopen("/tmp/redir.out", "r"); CHECK_NOT_EQ(f, nullptr); CHECK_EQ(fgetc(f), 'T'); CHECK_EQ(fgetc(f), 'e'); CHECK_EQ(fgetc(f), 's'); CHECK_EQ(fgetc(f), 't'); CHECK_EQ(fgetc(f), ' '); fclose(f); } }; class SuccessConcatTest : public Test { public: SuccessConcatTest() : Test("shell.SuccessConcatTest") {} protected: void run() override { const char* script = getTempFile("sct.script.sh"); const char* dest = getTempFile("sct.script.txt"); FILE* f = fopen(script, "w"); CHECK_NOT_NULL(f); fprintf(f, "#!/system/apps/shell\n"); fprintf(f, "touch %s && echo 1 > %s && cat %s && echo 234 > %s\n", dest, dest, dest, dest); fclose(f); int ok = libShellSupport::system(script); CHECK_EQ(ok, 0); f = fopen(dest, "r"); CHECK_EQ('2', fgetc(f)); CHECK_EQ('3', fgetc(f)); CHECK_EQ('4', fgetc(f)); } }; int main() { auto& testPlan = TestPlan::defaultPlan(TEST_NAME); testPlan.add<IoRedirectionTest>() .add<SuccessConcatTest>(); testPlan.test(); return 0; }
[ "granata.enrico@gmail.com" ]
granata.enrico@gmail.com
867262754f1d14f7cd0d4e12f0d78e857955d3b0
65a429a1b4ba173ebb6ce3c7e7b2d51318fbd18e
/Week3/different_summands/different_summands.cpp
30373a5400abf9835b031b1fce5827d1fe4efdde
[]
no_license
amanchhajed/AlgorithmicToolbox
e1cffd62da334dd5533122f0f3eb5ddb5592ec85
9c80d58993f68aff04059711a052ececbbed383f
refs/heads/master
2022-07-31T00:03:49.845617
2020-05-17T13:39:45
2020-05-17T13:39:45
264,674,438
0
0
null
null
null
null
UTF-8
C++
false
false
532
cpp
#include <iostream> #include <vector> using std::vector; vector<int> optimal_summands(int n) { vector<int> summands; //write your code here for(int i=1;i<=n && n>=0;i++) { n = n-i; if( n > i) { summands.push_back(i); } else { summands.push_back(n+i); } } return summands; } int main() { int n; std::cin >> n; vector<int> summands = optimal_summands(n); std::cout << summands.size() << '\n'; for (size_t i = 0; i < summands.size(); ++i) { std::cout << summands[i] << ' '; } }
[ "chajedaman@Amans-MacBook-Pro.local" ]
chajedaman@Amans-MacBook-Pro.local
53bae301e12255d96933c7b31e2205a15a2813de
3166b70d3a41550e6ec5102b1397e8ad9aa26e22
/parallel_computing_mini_project/main.cpp
da2ce1bceb99d588f39083b9354535a28a0627a0
[]
no_license
tommitah/cpp_mini_projects
b6545ee9b213c3d5cba4f3d0aa9a4af58f7adddc
c4982e156d39d6b149de49eda70c7e635fc853da
refs/heads/master
2023-04-21T21:52:54.141004
2021-05-06T12:46:18
2021-05-06T12:46:18
350,132,572
0
0
null
null
null
null
UTF-8
C++
false
false
3,818
cpp
#include <cmath> #include <cstdlib> #include <ctime> #include <iostream> #include <chrono> #include <string> #include <vector> #include <array> #include <algorithm> #include <execution> #include <future> constexpr auto COLS = 300; constexpr auto ROWS = 300; /** * Military unit strengths (positive = AI unit, * negative = player unit, 0 = empty) * */ double map[COLS][ROWS]; /** * Influence map. * */ double influence_map[COLS][ROWS]; std::vector<std::array<double, 300>> inf_map_rows = {}; /** * Calculates distance between (c0, r0) and (c1, r1). * */ inline double distance(int c0, int r0, int c1, int r1) { return sqrt((r0 - r1) * (r0 - r1) + (c0 - c1) * (c0 - c1)); } auto time_elapsed(const std::chrono::steady_clock::time_point& start, const std::chrono::steady_clock::time_point& end) { std::chrono::duration<double> elapsed_seconds = end-start; std::cout << "time: " << elapsed_seconds.count() << std::endl; } auto calculate_influence_map() { auto start = std::chrono::steady_clock::now(); for(int i = 0; i < COLS; i++) { for(int j = 0; j < ROWS; j++) { influence_map[i][j] = 0; for(int k = 0; k < COLS; k++) { for(int h = 0; h < ROWS; h++) { influence_map[i][j] += (map[k][h] / (1 + distance(i, j, k, h))); } } } } auto end = std::chrono::steady_clock::now(); time_elapsed(start, end); } auto inf_in_row = [](auto arr) { for(int i = 0; i < COLS; i++) { for(int j = 0; j < ROWS; j++) { arr[i] = 0; for(int x = 0; x < COLS; x++) { for(int y = 0; y < ROWS; y++) { arr[i] += (map[x][y] / (1 + distance(i, j, x, y))); } } } } }; //auto calc_inf_async() { //auto start = std::chrono::steady_clock::now(); //std::future<std::vector<std::array<double, 300>>> inf_map = //std::async(std::launch::deferred, inf_in_row, //inf_map_rows.begin(), inf_map_rows.end()); //auto end = std::chrono::steady_clock::now(); //time_elapsed(start, end); //} auto calc_inf_for_each() { auto start = std::chrono::steady_clock::now(); std::for_each(std::execution::par_unseq, begin(inf_map_rows), end(inf_map_rows), [](auto arr) { for(int i = 0; i < COLS; i++) { for(int j = 0; j < ROWS; j++) { arr[i] = 0; for(int x = 0; x < COLS; x++) { for(int y = 0; y < ROWS; y++) { arr[i] += (map[x][y] / (1 + distance(i, j, x, y))); } } } }}); auto end = std::chrono::steady_clock::now(); time_elapsed(start, end); } /** * */ auto populate_map() { // AI units, amt: 7 map[19][244] = 80; map[56][206] = 40; map[75][263] = 40; map[94][206] = 20; map[113][188] = 20; map[150][244] = 40; map[169][263] = 60; // player units, amt: 5 map[38][38] = -40; map[187][7] = -40; map[225][168] = -40; map[263][131] = -40; map[281][225] = -40; } auto log_units() { for(int i = 0; i < COLS; i++) { for(int j = 0; j < ROWS; j++) { std::cout << map[i][j]; } std::cout << std::endl; } } auto log_influence() { for(int i = 0; i < COLS; i++) { for(int j = 0; j < ROWS; j++) { std::cout << influence_map[i][j]; } std::cout << std::endl; } } // Copy a row to std::array to be stored int the vector. auto set_map_vector() { for(int i = 0; i < COLS; i++) { std::array<double, 300> arr; for(int j = 0; j < ROWS; j++) arr[i] = map[i][j]; inf_map_rows.push_back(arr); } std::cout << "Vector size: " << inf_map_rows.size(); } int main() { /** * TODO * * Calculate influence_map values from map values. * */ /** * Seed data. * */ populate_map(); //log_units(); set_map_vector(); calc_inf_for_each(); //calculate_influence_map(); //log_influence(); return 0; }
[ "reijotahvanainen15@gmail.com" ]
reijotahvanainen15@gmail.com
8e9daba253ed9bd0c19071992ae62287531f02ad
5956f43258d6a1bff90b0dd497552913b2134b86
/basic/7.cpp
f7e111dbf4f147f10fd22389d895063c163ae7e8
[]
no_license
shilpasayura/cpp
91a8c87974a40a5ef9e1db97bf8ae91911df551a
98536ca6eab311ba6818bf5bd4d1afa4b471dded
refs/heads/main
2023-08-03T01:34:06.176663
2021-09-20T17:40:54
2021-09-20T17:40:54
395,855,122
0
0
null
null
null
null
UTF-8
C++
false
false
173
cpp
#include<iostream> using namespace std; main() { cout<<sizeof(char)<<endl; cout<<sizeof(int)<<endl; cout<<sizeof(float)<<endl; cout<<sizeof(double)<<endl; }
[ "niranjan.meegammana@gamil.com" ]
niranjan.meegammana@gamil.com
67f967260f430dc8cd48ac74e008cbe42451400c
407d2a50f70fcdc3803f3a9abbafa845bb1b3054
/완전탐색/카펫/solve.cpp
f938e6e710e644f049fe41681409804635045070
[]
no_license
wizleysw/Programmers
d7d4007b375163f66f572f7803d53142c7757043
c13e379e5c25f663193dac17e0d125b756c71b90
refs/heads/master
2022-12-18T15:39:00.356728
2020-09-24T12:34:08
2020-09-24T12:34:10
293,737,435
0
0
null
null
null
null
UTF-8
C++
false
false
523
cpp
#include <string> #include <vector> #include <iostream> using namespace std; vector<int> solution(int brown, int yellow) { vector<int> answer; int total = brown + yellow; for(int i=1; i<total; i++){ if(total%i !=0) continue; int j = total/i; if(i<j || j<3) continue; int border = i*2 + (j-2)*2; if(total-border == yellow){ answer.push_back(i); answer.push_back(j); break; } } return answer; }
[ "wizley@kakao.com" ]
wizley@kakao.com
97ae3ffa9461154c8793d9c8edc608aac774c0b6
18ca065a9fb413a409d19cc83b04b56d9e314ba6
/gfg1.cpp
70e4345773ec9400760941d6eb8786d40e6779de
[]
no_license
shubhamchauhan269/Pattern
85558a3eddb1ceefaa0ebe601264b9a4a6433118
b119e1bf0f5ba4d1452bd9fb85a15dfd1c887fe5
refs/heads/master
2021-02-27T04:18:03.939924
2020-03-07T06:11:40
2020-03-07T06:11:40
245,578,072
0
0
null
null
null
null
UTF-8
C++
false
false
345
cpp
#include<stdio.h> int def(int l,int temp) { if(l==temp) return 0; else l=l+5; printf("%d ",l); def(l,temp); } int sub(int p,int temp) { if(p>0) { printf("%d ",p); p=p-5; return sub(p,temp); } else { printf("%d ",p); return def(p,temp); } } int main() { int p,temp; scanf("%d",&p); temp=p; sub(p,temp); return 0; }
[ "shubhamchauhan269@gmail.com" ]
shubhamchauhan269@gmail.com
1e3d6ef44c92b42bd1ded20b71545d8986cafb0e
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_old_log_7587.cpp
7427a01569c4adcb7803791b2ca46ffe464b5ab2
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
516
cpp
fputs( " url_effective The URL that was fetched last. This is most mean-\n" " ingful if you've told curl to follow location:\n" " headers.\n" "\n" " filename_effective\n" " The ultimate filename that curl writes out to.\n" " This is only meaningful if curl is told to write\n" " to a file with the --remote-name or --output\n" , stdout);
[ "993273596@qq.com" ]
993273596@qq.com
d58fec04490068e8c7649f520ae34de7645b62c9
20ca57ad4b62b7c34d60557a8df48dae02c02106
/MidiJDraw/src/MidijMidiObject.h
ba8475f19291e732a99e4333480afff19577bfdb
[]
no_license
amilcarsantos/maemo-midij
91b27489ce655bc8254ed02eaf96641a229e341e
e64d30e224db4898fb6d1fa4c44d96bde34031ff
refs/heads/master
2021-01-02T08:19:44.556813
2014-10-26T18:53:14
2014-10-26T18:53:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,618
h
/* * MidijMidiObject.h * * Created on: 26 de Jun de 2011 * Author: Amilcar */ #ifndef MIDIJMIDIOBJECT_H_ #define MIDIJMIDIOBJECT_H_ #include "midij/mixxx/MidiObject.h" class MidiMappingDraw; class MidiMapping; struct MidijQueuedMessage { uchar status; uchar midicontrol; uchar midivalue; MidijQueuedMessage(uchar s, uchar mc, uchar mv) { status = s; midicontrol = mc; midivalue = mv; } }; class MidijMidiObject : public MidiObject { Q_OBJECT public: enum QueueReceives { NoQueue, QueueAfterEvent, QueueAlways }; MidijMidiObject(MidiMappingDraw* midiMappingGui, QObject *parent=0); virtual ~MidijMidiObject(); void setMidiMapping(MidiMapping* midiMapping); void queueReceives(QueueReceives b); public slots: void emulReceive(uchar status, uchar midicontrol, uchar midivalue); void processPendingReceives(); signals: void receiveFinished(); protected: virtual void sendShortMsg(unsigned int word); virtual void sendSysexMsg(unsigned char data[], unsigned int length); bool execute(const MidiMessage& inputCommand, char midivalue); MidiMappingDraw* m_midiMappingGui; MidiMapping* m_midiMapping; QQueue<MidijQueuedMessage> m_pendingReceives; QueueReceives m_queueReceives; }; inline void MidijMidiObject::setMidiMapping(MidiMapping* midiMapping) { m_midiMapping = midiMapping; } // enqueue MIDI receives (prevents deadlocks of QtScript debugger) inline void MidijMidiObject::queueReceives(QueueReceives b) { m_queueReceives = b; } #endif /* MIDIJMIDIOBJECT_H_ */
[ "amilcar.santos@gmail.com" ]
amilcar.santos@gmail.com
ff5abce0a12c648d93168680eb1ea4ad921a2373
b71cdbc9fc78604111c8588b97ce23dfc5782b63
/Source/PointCloudSelecting/PointCloudRenderingComponent.h
00c75ae978e8021196c816428f3a41d262fc0406
[]
no_license
FloatingObjectSegmentation/UnrealScanner
99a1ac369af8b42188948a2a6e65e94ddb6f3a4c
61520559c3b1fdcfcc3a2c0d4a9291d1d88699b1
refs/heads/master
2020-03-25T05:20:25.449090
2018-12-30T19:03:20
2018-12-30T19:03:20
143,441,666
2
0
null
null
null
null
UTF-8
C++
false
false
2,576
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include <fstream> #include <iostream> #include <string> #include <sstream> #include "Rpc.h" #include "CoreMinimal.h" #include "Components/ActorComponent.h" #include "PointCloud.h" #include "Runtime/Core/Public/Misc/FileHelper.h" #include "Runtime/Core/Public/Misc/Guid.h" #include "Runtime/Core/Public/Containers/UnrealString.h" #include "Runtime/Core/Public/Misc/StringFormatArg.h" #include "PointCloudHelper.h" #include "PointCloudActor.h" #include "Engine/World.h" #include "PointCloudRenderingComponent.generated.h" UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) ) class POINTCLOUDSELECTING_API UPointCloudRenderingComponent : public UActorComponent { GENERATED_BODY() private: APointCloudActor * PointCloudHostActor; TArray<FPointCloudPoint> LoadedPoints; UPointCloud* PointCloud; float MaxX; float MinY; float MinZ; FString PointCloudFile = TEXT("C:\\Users\\km\\Desktop\\playground\\unreal\\unreal_workspaces\\PointCloudia\\simon.txt"); FString PointCloudClassFile = TEXT("C:\\Users\\km\\Desktop\\playground\\unreal\\unreal_workspaces\\PointCloudia\\simonclass.txt"); public: UPointCloudRenderingComponent(); protected: virtual void BeginPlay() override; public: virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override; public: // API UFUNCTION(BlueprintCallable) FString ProcessSelectedPoints(FVector& CenterInWorldSpace, FVector& BoundingBox); UFUNCTION(BlueprintCallable) void SetNewPointCloud(TArray<FPointCloudPoint>& pts); protected: // auxiliary void SpaceTransformPCToLocal(TArray<FPointCloudPoint> &LoadedPoints); UPointCloud * PrepareRenderingSettings(TArray<FPointCloudPoint> &Points, FString pointCloudName, FString settingsName); void SpawnPointCloudHostActor(FTransform const &SpawningTransform); void GetPointCloudPoints(TArray<FPointCloudPoint> &LoadedPoints); TArray<FPointCloudPoint> LoadPointCloudFromFileTXT(FString filename, FVector2D RgbRange = FVector2D(0.0f, 256.0f * 256.0f - 1.0f)); void FindExtremes(TArray<FPointCloudPoint> & LoadedPoints); void MarkSubsetWithinLoadedPoints(TArray<int32> &QueryResultIndices); TArray<FPointCloudPoint> GetPointSubset(TArray<int32> &QueryResultIndices); void FindSelectionIndices(FVector & CenterInWorldSpace, FVector & BoundingBox, TArray<int32> &QueryResultIndices); void RerenderPointCloud(); FString SelectedPointsToPointCloudTxtFormatString(TArray<FPointCloudPoint> PointsToSave); };
[ "kristijan.mirceta@gmail.com" ]
kristijan.mirceta@gmail.com
460a142d8a7708b40714471d1a798df210d7e69d
bb337e0e505794811151a09154891bf8f50e03e9
/Detyrat ne shtepi/banesa.cpp
ca148f38f6e0237218c3caf1073c4a725e6614fe
[]
no_license
adisylejmani/Gjuhe-Programuese
484178ecd832582dc70b71df9f677b06f9c15c68
c3c0a89334bfa80faba13d0137e76085ec12f7dc
refs/heads/master
2021-10-26T22:47:43.538121
2019-04-14T14:02:37
2019-04-14T14:02:37
181,306,846
0
0
null
null
null
null
UTF-8
C++
false
false
1,367
cpp
//#include<iostream> //#include<string> //using namespace std; //const int n = 5; //string M[] = { "ulpiana","dardani","vranjefc" }; //enum mahalla //{ // // ulpian,dardani,vranjefc //}; //struct banesa //{ // mahalla lagjja; int kati; double cmimi; int S_dhomave[n]; //}; //void vijat(char s,int x) //{ // for (size_t i = 0; i < x; i++) // { // cout << s; // } // cout << endl; //} //int siperfaqja_dhomave(banesa b) //{ // int s = 0; // for (size_t i = 0; i < n; i++) // { // s = s + b.S_dhomave[i]; // } // return s; //} //void shfaq(banesa b) //{ // cout << "mahalla: " << M[b.lagjja] << endl; // cout << "kati: " << b.kati << endl; // cout << "cmimi i banese eshte: " << b.cmimi << "euro" << endl; // cout << "siperfaqja e dhomave \n"; // for (size_t i = 0; i < n; i++) // { // cout << "dhoma " << i + 1 << ": " << b.S_dhomave[i]<<endl; // // } // cout << "siperfaqja e baneses: " << siperfaqja_dhomave(b) << endl; //} //banesa meeshtrejt(banesa b1,banesa b2) //{ // if (b1.cmimi>b2.cmimi) // { // return b1; // } // else // { // return b2; // } //} //void main() //{ // banesa b1 = { ulpian,2,140000,{25,10,30,45,5} }; // banesa b2 = { vranjefc,1,160000,{50,20,10,45,20} }; // shfaq(b1); // vijat('-',5); // shfaq(b2); // vijat('-',5); // banesa bsh = meeshtrejt(b1, b2); // cout << "banesa me e shtrejte eshte ne lagjen: " << M[bsh.lagjja] << endl; // //}
[ "adisylejmani123@gmail.com" ]
adisylejmani123@gmail.com
9d121daf936d256f5353f0668a7df9e9931a39be
b030551a29ab11029e62844f3dddaba8429db08d
/GAME_LEARNING-Space Out/AllienSprite.cpp
da124f742ed928972a78ca98ca4c100c586059d2
[]
no_license
xeonv3/lion
a1b6cb7cea8e5bf53800d0e8d9b99f07559b7f3a
44a7a728d4fe217f74773b5524acc6f2f465899f
refs/heads/master
2020-06-02T14:52:49.550295
2013-09-08T16:26:34
2013-09-08T16:26:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,840
cpp
#include "AlienSprite.h" extern Bitmap* g_pBlobboBitmap; extern Bitmap* g_pBMissileBitmap; extern Bitmap* g_pJellyBitmap; extern Bitmap* g_pJMissileBitmap; extern Bitmap* g_pTimmyBitmap; extern Bitmap* g_pTMissileBitmap; extern int g_iDifficulty; //----------------------------------------------------------------- // AlienSprite Constructor(s)/Destructor //----------------------------------------------------------------- AlienSprite::AlienSprite(Bitmap* pBitmap, RECT& rcBounds, BOUNDSACTION baBoundsAction) : Sprite(pBitmap, rcBounds, baBoundsAction) { } AlienSprite::~AlienSprite() { } //----------------------------------------------------------------- // AlienSprite General Methods //----------------------------------------------------------------- SPRITEACTION AlienSprite::Update() { // Call the base sprite Update() method SPRITEACTION saSpriteAction; saSpriteAction = Sprite::Update(); // See if the alien should fire a missile if ((rand() % (g_iDifficulty / 2)) == 0) saSpriteAction |= SA_ADDSPRITE; return saSpriteAction; } Sprite* AlienSprite::AddSprite() { // Create a new missile sprite RECT rcBounds = { 0, 0, 640, 410 }; RECT rcPos = GetPosition(); Sprite* pSprite = NULL; if (GetBitmap() == g_pBlobboBitmap) { // Blobbo missile pSprite = new Sprite(g_pBMissileBitmap, rcBounds, BA_DIE); pSprite->SetVelocity(0, 7); } else if (GetBitmap() == g_pJellyBitmap) { // Jelly missile pSprite = new Sprite(g_pJMissileBitmap, rcBounds, BA_DIE); pSprite->SetVelocity(0, 5); } else { // Timmy missile pSprite = new Sprite(g_pTMissileBitmap, rcBounds, BA_DIE); pSprite->SetVelocity(0, 3); } // Set the missile sprite's position and return it pSprite->SetPosition(rcPos.left + (GetWidth() / 2), rcPos.bottom); return pSprite; }
[ "super163mail@163.com" ]
super163mail@163.com
6f051c681c19b6199a8f4a572da9a382b8ee9dba
2531d0068c47df2933f0935e334e98bdba844361
/arca_engine/core/source/core.cpp
078e5c4572b1bdf558fd2bc3795e33a3267c483d
[]
no_license
arcashka/arca_vulkan
d75b3db26c549c4ab0bde2cf352dc4fbec52ed75
a6d5a75eb1988bbe3cf0d3124af7f7a59c5e5d95
refs/heads/master
2020-04-29T11:50:42.956823
2019-05-26T12:03:58
2019-05-26T12:03:58
176,115,124
0
0
null
null
null
null
UTF-8
C++
false
false
586
cpp
#include "core.h" #include <assert.h> #include "iwindow.h" namespace arca::core { namespace { static std::shared_ptr<Core> instance = nullptr; } std::shared_ptr<Core> Core::getInstance() { assert(instance && "initialize must be called before getting instance!"); return instance; } void Core::initialize(const CoreInitializer & initializer) { assert(!instance && "initialize must be called once!"); instance = std::shared_ptr<Core>(new Core(initializer.window)); } Core::Core(std::shared_ptr<window::IWindow> window) : window(window) { } }
[ "pewpewstol@gmail.com" ]
pewpewstol@gmail.com
6e11754d978b21bbcd2b4ec132fb298a3b84a70f
f197f6f11aa848df1454d2ff4a7c4bc4356b05b3
/include/hermes/IR/Instrs.h
63d00b693afa59d2b7fea89a23a5ed82faa00ec0
[ "MIT" ]
permissive
luism3861/hermes
10211deec7269e95c338a9da7fa6ec9b8cf6af25
47ae05137f5a30ad3892c3ea783c22dafa1dbeca
refs/heads/master
2022-11-17T22:08:10.488210
2020-07-11T07:17:01
2020-07-11T07:18:13
278,903,170
0
0
MIT
2020-07-11T16:49:27
2020-07-11T16:49:26
null
UTF-8
C++
false
false
86,318
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifndef HERMES_IR_INSTRS_H #define HERMES_IR_INSTRS_H #include <string> #include <utility> #include "hermes/FrontEndDefs/Builtins.h" #include "hermes/IR/IR.h" #include "llvh/ADT/SmallVector.h" #include "llvh/ADT/ilist_node.h" #include "llvh/IR/CFG.h" #include "llvh/IR/SymbolTableListTraits.h" using llvh::ArrayRef; using llvh::cast; namespace hermes { /// \returns true if the type \p T is side effect free in the context of /// binary operations. bool isSideEffectFree(Type T); /// Base class for instructions that have exactly one operand. It guarantees /// that only one operand is pushed and it provides getSingleOperand(). class SingleOperandInst : public Instruction { SingleOperandInst(const SingleOperandInst &) = delete; void operator=(const SingleOperandInst &) = delete; // Make pushOperand private to ensure derived classes don't use it. using Instruction::pushOperand; protected: explicit SingleOperandInst(ValueKind K, Value *Op) : Instruction(K) { pushOperand(Op); } public: enum { SingleOperandIdx }; explicit SingleOperandInst( const SingleOperandInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) { assert(operands.size() == 1 && "SingleOperandInst must have 1 operand!"); } Value *getSingleOperand() const { return getOperand(0); } SideEffectKind getSideEffect() { llvm_unreachable("SingleOperandInst must be inherited."); } WordBitSet<> getChangedOperandsImpl() { llvm_unreachable("SingleOperandInst must be inherited."); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::SingleOperandInstKind); } }; /// Subclasses of this class are all able to terminate a basic /// block. Thus, these are all the flow control type of operations. class TerminatorInst : public Instruction { TerminatorInst(const TerminatorInst &) = delete; void operator=(const TerminatorInst &) = delete; protected: explicit TerminatorInst(ValueKind K) : Instruction(K) {} public: explicit TerminatorInst( const TerminatorInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} unsigned getNumSuccessors() const; BasicBlock *getSuccessor(unsigned idx) const; void setSuccessor(unsigned idx, BasicBlock *B); SideEffectKind getSideEffect() { llvm_unreachable("TerminatorInst must be inherited."); } WordBitSet<> getChangedOperandsImpl() { llvm_unreachable("TerminatorInst must be inherited."); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::TerminatorInstKind); } using succ_iterator = llvh::SuccIterator<TerminatorInst, BasicBlock>; using succ_const_iterator = llvh::SuccIterator<const TerminatorInst, const BasicBlock>; using succ_range = llvh::iterator_range<succ_iterator>; using succ_const_range = llvh::iterator_range<succ_const_iterator>; private: inline succ_iterator succ_begin() { return succ_iterator(this); } inline succ_const_iterator succ_begin() const { return succ_const_iterator(this); } inline succ_iterator succ_end() { return succ_iterator(this, true); } inline succ_const_iterator succ_end() const { return succ_const_iterator(this, true); } public: inline succ_range successors() { return succ_range(succ_begin(), succ_end()); } inline succ_const_range successors() const { return succ_const_range(succ_begin(), succ_end()); } }; class BranchInst : public TerminatorInst { BranchInst(const BranchInst &) = delete; void operator=(const BranchInst &) = delete; public: enum { BranchDestIdx }; BasicBlock *getBranchDest() const { return cast<BasicBlock>(getOperand(BranchDestIdx)); } explicit BranchInst(BasicBlock *parent, BasicBlock *dest) : TerminatorInst(ValueKind::BranchInstKind) { pushOperand(dest); } explicit BranchInst(const BranchInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::BranchInstKind); } unsigned getNumSuccessors() const { return 1; } BasicBlock *getSuccessor(unsigned idx) const { assert(idx == 0 && "BranchInst only have 1 successor!"); return getBranchDest(); } void setSuccessor(unsigned idx, BasicBlock *B) { assert(idx == 0 && "BranchInst only have 1 successor!"); setOperand(B, idx); } }; class AddEmptyStringInst : public SingleOperandInst { AddEmptyStringInst(const AddEmptyStringInst &) = delete; void operator=(const AddEmptyStringInst &) = delete; public: explicit AddEmptyStringInst(Value *value) : SingleOperandInst(ValueKind::AddEmptyStringInstKind, value) { setType(Type::createString()); } explicit AddEmptyStringInst( const AddEmptyStringInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AddEmptyStringInstKind); } }; class AsNumberInst : public SingleOperandInst { AsNumberInst(const AsNumberInst &) = delete; void operator=(const AsNumberInst &) = delete; public: explicit AsNumberInst(Value *value) : SingleOperandInst(ValueKind::AsNumberInstKind, value) { setType(Type::createNumber()); } explicit AsNumberInst( const AsNumberInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AsNumberInstKind); } }; class AsInt32Inst : public SingleOperandInst { AsInt32Inst(const AsInt32Inst &) = delete; void operator=(const AsInt32Inst &) = delete; public: explicit AsInt32Inst(Value *value) : SingleOperandInst(ValueKind::AsInt32InstKind, value) { setType(Type::createNumber()); } explicit AsInt32Inst(const AsInt32Inst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AsInt32InstKind); } }; class CondBranchInst : public TerminatorInst { CondBranchInst(const CondBranchInst &) = delete; void operator=(const CondBranchInst &) = delete; public: enum { ConditionIdx, TrueBlockIdx, FalseBlockIdx }; Value *getCondition() const { return getOperand(ConditionIdx); } BasicBlock *getTrueDest() const { return cast<BasicBlock>(getOperand(TrueBlockIdx)); } BasicBlock *getFalseDest() const { return cast<BasicBlock>(getOperand(FalseBlockIdx)); } explicit CondBranchInst( BasicBlock *parent, Value *cond, BasicBlock *trueBlock, BasicBlock *falseBlock) : TerminatorInst(ValueKind::CondBranchInstKind) { pushOperand(cond); pushOperand(trueBlock); pushOperand(falseBlock); } explicit CondBranchInst( const CondBranchInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CondBranchInstKind); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { if (idx == 0) return getTrueDest(); if (idx == 1) return getFalseDest(); llvm_unreachable("CondBranchInst only have 2 successors!"); } void setSuccessor(unsigned idx, BasicBlock *B) { assert(idx <= 1 && "CondBranchInst only have 2 successors!"); setOperand(B, idx + TrueBlockIdx); } }; class ReturnInst : public TerminatorInst { ReturnInst(const ReturnInst &) = delete; void operator=(const ReturnInst &) = delete; public: enum { ReturnValueIdx }; Value *getValue() const { return getOperand(ReturnValueIdx); } explicit ReturnInst(Value *val) : TerminatorInst(ValueKind::ReturnInstKind) { pushOperand(val); } explicit ReturnInst(const ReturnInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ReturnInstKind); } unsigned getNumSuccessors() const { return 0; } BasicBlock *getSuccessor(unsigned idx) const { llvm_unreachable("ReturnInst has no successor!"); } void setSuccessor(unsigned idx, BasicBlock *B) { llvm_unreachable("ReturnInst has no successor!"); } }; class AllocStackInst : public Instruction { AllocStackInst(const AllocStackInst &) = delete; void operator=(const AllocStackInst &) = delete; Label variableName; public: enum { VariableNameIdx }; explicit AllocStackInst(Identifier varName) : Instruction(ValueKind::AllocStackInstKind), variableName(varName) { pushOperand(&variableName); } explicit AllocStackInst( const AllocStackInst *src, llvh::ArrayRef<Value *> operands) : AllocStackInst(cast<Label>(operands[0])->get()) { // NOTE: we are playing a little trick here since the Label is not heap // allocated. } Identifier getVariableName() const { return variableName.get(); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AllocStackInstKind); } }; class LoadStackInst : public SingleOperandInst { LoadStackInst(const LoadStackInst &) = delete; void operator=(const LoadStackInst &) = delete; public: explicit LoadStackInst(AllocStackInst *alloc) : SingleOperandInst(ValueKind::LoadStackInstKind, alloc) {} explicit LoadStackInst( const LoadStackInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} AllocStackInst *getPtr() const { return cast<AllocStackInst>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::MayRead; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::LoadStackInstKind); } }; class StoreStackInst : public Instruction { StoreStackInst(const StoreStackInst &) = delete; void operator=(const StoreStackInst &) = delete; public: enum { StoredValueIdx, PtrIdx }; Value *getValue() const { return getOperand(StoredValueIdx); } AllocStackInst *getPtr() const { return cast<AllocStackInst>(getOperand(PtrIdx)); } explicit StoreStackInst(Value *storedValue, AllocStackInst *ptr) : Instruction(ValueKind::StoreStackInstKind) { pushOperand(storedValue); pushOperand(ptr); } explicit StoreStackInst( const StoreStackInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StoreStackInstKind); } }; class LoadFrameInst : public SingleOperandInst { LoadFrameInst(const LoadFrameInst &) = delete; void operator=(const LoadFrameInst &) = delete; public: explicit LoadFrameInst(Variable *alloc) : SingleOperandInst(ValueKind::LoadFrameInstKind, alloc) {} explicit LoadFrameInst( const LoadFrameInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} Variable *getLoadVariable() const { return cast<Variable>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::MayRead; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::LoadFrameInstKind); } }; class StoreFrameInst : public Instruction { StoreFrameInst(const StoreFrameInst &) = delete; void operator=(const StoreFrameInst &) = delete; public: enum { StoredValueIdx, VariableIdx }; Value *getValue() const { return getOperand(StoredValueIdx); } Variable *getVariable() const { return cast<Variable>(getOperand(VariableIdx)); } explicit StoreFrameInst(Value *storedValue, Variable *ptr) : Instruction(ValueKind::StoreFrameInstKind) { pushOperand(storedValue); pushOperand(ptr); } explicit StoreFrameInst( const StoreFrameInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StoreFrameInstKind); } }; class CreateFunctionInst : public Instruction { CreateFunctionInst(const CreateFunctionInst &) = delete; void operator=(const CreateFunctionInst &) = delete; public: enum { FunctionCodeIdx, LAST_IDX }; explicit CreateFunctionInst(ValueKind kind, Function *code) : Instruction(kind) { setType(Type::createClosure()); pushOperand(code); } explicit CreateFunctionInst(Function *code) : CreateFunctionInst(ValueKind::CreateFunctionInstKind, code) {} explicit CreateFunctionInst( const CreateFunctionInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Function *getFunctionCode() const { return cast<Function>(getOperand(FunctionCodeIdx)); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CreateFunctionInstKind); } }; class CallInst : public Instruction { CallInst(const CallInst &) = delete; void operator=(const CallInst &) = delete; public: enum { CalleeIdx, ThisIdx }; using ArgumentList = llvh::SmallVector<Value *, 2>; Value *getCallee() const { return getOperand(CalleeIdx); } /// Get argument 0, the value for 'this'. Value *getThis() const { return getOperand(ThisIdx); } /// Get argument by index. 'this' is argument 0. Value *getArgument(unsigned idx) { return getOperand(ThisIdx + idx); } /// Set the value \p v at index \p idx. 'this' is argument 0. void setArgument(Value *V, unsigned idx) { setOperand(V, ThisIdx + idx); } unsigned getNumArguments() const { return getNumOperands() - 1; } explicit CallInst( ValueKind kind, Value *callee, Value *thisValue, ArrayRef<Value *> args) : Instruction(kind) { pushOperand(callee); pushOperand(thisValue); for (const auto &arg : args) { pushOperand(arg); } } explicit CallInst(const CallInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CallInstKind); } }; class ConstructInst : public CallInst { ConstructInst(const ConstructInst &) = delete; void operator=(const ConstructInst &) = delete; public: Value *getConstructor() const { return getCallee(); } explicit ConstructInst( Value *constructor, LiteralUndefined *undefined, ArrayRef<Value *> args) : CallInst(ValueKind::ConstructInstKind, constructor, undefined, args) { setType(Type::createObject()); } explicit ConstructInst( const ConstructInst *src, llvh::ArrayRef<Value *> operands) : CallInst(src, operands) {} static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ConstructInstKind); } }; /// Call a VM builtin with the specified number and undefined as the "this" /// parameter. class CallBuiltinInst : public CallInst { CallBuiltinInst(const CallBuiltinInst &) = delete; void operator=(const CallBuiltinInst &) = delete; public: static constexpr unsigned MAX_ARGUMENTS = UINT8_MAX; explicit CallBuiltinInst( LiteralNumber *callee, LiteralUndefined *thisValue, ArrayRef<Value *> args) : CallInst(ValueKind::CallBuiltinInstKind, callee, thisValue, args) { assert( getNumArguments() <= MAX_ARGUMENTS && "Too many arguments to CallBuiltin"); assert( callee->getValue() == (int)callee->getValue() && callee->getValue() < BuiltinMethod::_count && "invalid builtin call"); } explicit CallBuiltinInst( const CallBuiltinInst *src, llvh::ArrayRef<Value *> operands) : CallInst(src, operands) {} BuiltinMethod::Enum getBuiltinIndex() const { return (BuiltinMethod::Enum)cast<LiteralNumber>(getCallee())->asInt32(); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CallBuiltinInstKind); } }; class HBCCallNInst : public CallInst { public: /// The minimum number of args supported by a CallN instruction, including /// 'this'. static constexpr uint32_t kMinArgs = 1; /// The maximum (inclusive) number of args supported by a CallN instruction, /// including 'this'. static constexpr uint32_t kMaxArgs = 4; explicit HBCCallNInst(Value *callee, Value *thisValue, ArrayRef<Value *> args) : CallInst(ValueKind::HBCCallNInstKind, callee, thisValue, args) { // +1 for 'this'. assert( kMinArgs <= args.size() + 1 && args.size() + 1 <= kMaxArgs && "Invalid arg count for HBCCallNInst"); } explicit HBCCallNInst( const HBCCallNInst *src, llvh::ArrayRef<Value *> operands) : CallInst(src, operands) {} static bool classof(const Value *V) { return V->getKind() == ValueKind::HBCCallNInstKind; } }; class HBCGetGlobalObjectInst : public Instruction { HBCGetGlobalObjectInst(const HBCGetGlobalObjectInst &) = delete; void operator=(const HBCGetGlobalObjectInst &) = delete; public: explicit HBCGetGlobalObjectInst() : Instruction(ValueKind::HBCGetGlobalObjectInstKind) { setType(Type::createObject()); } explicit HBCGetGlobalObjectInst( const HBCGetGlobalObjectInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCGetGlobalObjectInstKind); } }; class StorePropertyInst : public Instruction { StorePropertyInst(const StorePropertyInst &) = delete; void operator=(const StorePropertyInst &) = delete; protected: explicit StorePropertyInst( ValueKind kind, Value *storedValue, Value *object, Value *property) : Instruction(kind) { pushOperand(storedValue); pushOperand(object); pushOperand(property); } public: enum { StoredValueIdx, ObjectIdx, PropertyIdx }; Value *getStoredValue() const { return getOperand(StoredValueIdx); } Value *getObject() const { return getOperand(ObjectIdx); }; Value *getProperty() const { return getOperand(PropertyIdx); } explicit StorePropertyInst(Value *storedValue, Value *object, Value *property) : StorePropertyInst( ValueKind::StorePropertyInstKind, storedValue, object, property) {} explicit StorePropertyInst( const StorePropertyInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StorePropertyInstKind); } }; class TryStoreGlobalPropertyInst : public StorePropertyInst { TryStoreGlobalPropertyInst(const TryStoreGlobalPropertyInst &) = delete; void operator=(const TryStoreGlobalPropertyInst &) = delete; public: LiteralString *getProperty() const { return cast<LiteralString>(StorePropertyInst::getProperty()); } explicit TryStoreGlobalPropertyInst( Value *storedValue, Value *globalObject, LiteralString *property) : StorePropertyInst( ValueKind::TryStoreGlobalPropertyInstKind, storedValue, globalObject, property) { assert( (llvh::isa<GlobalObject>(globalObject) || llvh::isa<HBCGetGlobalObjectInst>(globalObject)) && "globalObject must refer to the global object"); } explicit TryStoreGlobalPropertyInst( const TryStoreGlobalPropertyInst *src, llvh::ArrayRef<Value *> operands) : StorePropertyInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::TryStoreGlobalPropertyInstKind); } }; class StoreOwnPropertyInst : public Instruction { StoreOwnPropertyInst(const StoreOwnPropertyInst &) = delete; void operator=(const StoreOwnPropertyInst &) = delete; protected: explicit StoreOwnPropertyInst( ValueKind kind, Value *storedValue, Value *object, Value *property, LiteralBool *isEnumerable) : Instruction(kind) { pushOperand(storedValue); pushOperand(object); pushOperand(property); pushOperand(isEnumerable); } public: enum { StoredValueIdx, ObjectIdx, PropertyIdx, IsEnumerableIdx }; Value *getStoredValue() const { return getOperand(StoredValueIdx); } Value *getObject() const { return getOperand(ObjectIdx); } Value *getProperty() const { return getOperand(PropertyIdx); } bool getIsEnumerable() const { return cast<LiteralBool>(getOperand(IsEnumerableIdx))->getValue(); } explicit StoreOwnPropertyInst( Value *storedValue, Value *object, Value *property, LiteralBool *isEnumerable) : StoreOwnPropertyInst( ValueKind::StoreOwnPropertyInstKind, storedValue, object, property, isEnumerable) {} explicit StoreOwnPropertyInst( const StoreOwnPropertyInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StoreOwnPropertyInstKind); } }; class StoreNewOwnPropertyInst : public StoreOwnPropertyInst { StoreNewOwnPropertyInst(const StoreNewOwnPropertyInst &) = delete; void operator=(const StoreNewOwnPropertyInst &) = delete; public: LiteralString *getPropertyName() const { return cast<LiteralString>(getOperand(PropertyIdx)); } explicit StoreNewOwnPropertyInst( Value *storedValue, Value *object, LiteralString *property, LiteralBool *isEnumerable) : StoreOwnPropertyInst( ValueKind::StoreNewOwnPropertyInstKind, storedValue, object, property, isEnumerable) { assert( object->getType().isObjectType() && "object operand must be known to be an object"); } explicit StoreNewOwnPropertyInst( const StoreNewOwnPropertyInst *src, llvh::ArrayRef<Value *> operands) : StoreOwnPropertyInst(src, operands) {} static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StoreNewOwnPropertyInstKind); } }; class StoreGetterSetterInst : public Instruction { StoreGetterSetterInst(const StoreGetterSetterInst &) = delete; void operator=(const StoreGetterSetterInst &) = delete; public: enum { StoredGetterIdx, StoredSetterIdx, ObjectIdx, PropertyIdx, IsEnumerableIdx }; Value *getStoredGetter() const { return getOperand(StoredGetterIdx); } Value *getStoredSetter() const { return getOperand(StoredSetterIdx); } Value *getObject() const { return getOperand(ObjectIdx); } Value *getProperty() const { return getOperand(PropertyIdx); } bool getIsEnumerable() const { return cast<LiteralBool>(getOperand(IsEnumerableIdx))->getValue(); } explicit StoreGetterSetterInst( Value *storedGetter, Value *storedSetter, Value *object, Value *property, LiteralBool *isEnumerable) : Instruction(ValueKind::StoreGetterSetterInstKind) { pushOperand(storedGetter); pushOperand(storedSetter); pushOperand(object); pushOperand(property); pushOperand(isEnumerable); } explicit StoreGetterSetterInst( const StoreGetterSetterInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StoreGetterSetterInstKind); } }; class DeletePropertyInst : public Instruction { DeletePropertyInst(const DeletePropertyInst &) = delete; void operator=(const DeletePropertyInst &) = delete; public: enum { ObjectIdx, PropertyIdx }; Value *getObject() const { return getOperand(ObjectIdx); } Value *getProperty() const { return getOperand(PropertyIdx); } explicit DeletePropertyInst(Value *object, Value *property) : Instruction(ValueKind::DeletePropertyInstKind) { pushOperand(object); pushOperand(property); } explicit DeletePropertyInst( const DeletePropertyInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::DeletePropertyInstKind); } }; class LoadPropertyInst : public Instruction { LoadPropertyInst(const LoadPropertyInst &) = delete; void operator=(const LoadPropertyInst &) = delete; protected: explicit LoadPropertyInst(ValueKind kind, Value *object, Value *property) : Instruction(kind) { pushOperand(object); pushOperand(property); } public: enum { ObjectIdx, PropertyIdx }; Value *getObject() const { return getOperand(ObjectIdx); }; Value *getProperty() const { return getOperand(PropertyIdx); } explicit LoadPropertyInst(Value *object, Value *property) : LoadPropertyInst(ValueKind::LoadPropertyInstKind, object, property) {} explicit LoadPropertyInst( const LoadPropertyInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::LoadPropertyInstKind); } }; class TryLoadGlobalPropertyInst : public LoadPropertyInst { TryLoadGlobalPropertyInst(const TryLoadGlobalPropertyInst &) = delete; void operator=(const TryLoadGlobalPropertyInst &) = delete; public: LiteralString *getProperty() const { return cast<LiteralString>(LoadPropertyInst::getProperty()); } explicit TryLoadGlobalPropertyInst( Value *globalObject, LiteralString *property) : LoadPropertyInst( ValueKind::TryLoadGlobalPropertyInstKind, globalObject, property) { assert( (llvh::isa<GlobalObject>(globalObject) || llvh::isa<HBCGetGlobalObjectInst>(globalObject)) && "globalObject must refer to the global object"); } explicit TryLoadGlobalPropertyInst( const TryLoadGlobalPropertyInst *src, llvh::ArrayRef<Value *> operands) : LoadPropertyInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::TryLoadGlobalPropertyInstKind); } }; class AllocObjectInst : public Instruction { AllocObjectInst(const AllocObjectInst &) = delete; void operator=(const AllocObjectInst &) = delete; public: enum { SizeIdx, ParentObjectIdx }; uint32_t getSize() const { return cast<LiteralNumber>(getOperand(SizeIdx))->asUInt32(); } Value *getParentObject() const { return getOperand(ParentObjectIdx); } explicit AllocObjectInst(LiteralNumber *size, Value *parentObject) : Instruction(ValueKind::AllocObjectInstKind) { setType(Type::createObject()); assert(size->isUInt32Representible() && "size must be uint32"); pushOperand(size); pushOperand(parentObject); } explicit AllocObjectInst( const AllocObjectInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AllocObjectInstKind); } }; class HBCAllocObjectFromBufferInst : public Instruction { HBCAllocObjectFromBufferInst(const HBCAllocObjectFromBufferInst &) = delete; void operator=(const HBCAllocObjectFromBufferInst &) = delete; public: enum { SizeIdx, FirstKeyIdx }; using ObjectPropertyMap = llvh::SmallVector<std::pair<Literal *, Literal *>, 4>; /// \sizeHint is a hint for the VM regarding the final size of this object. /// It is the number of entries in the object declaration including /// non-literal ones. \prop_map is all the literal key/value entries. explicit HBCAllocObjectFromBufferInst( LiteralNumber *sizeHint, const ObjectPropertyMap &prop_map) : Instruction(ValueKind::HBCAllocObjectFromBufferInstKind) { setType(Type::createObject()); assert(sizeHint->isUInt32Representible() && "size hint must be uint32"); pushOperand(sizeHint); for (size_t i = 0; i < prop_map.size(); i++) { pushOperand(prop_map[i].first); pushOperand(prop_map[i].second); } } explicit HBCAllocObjectFromBufferInst( const HBCAllocObjectFromBufferInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } /// Number of consecutive literal key/value pairs in the object. unsigned getKeyValuePairCount() const { return (getNumOperands() - FirstKeyIdx) / 2; } /// Return the \index 'd sequential literal key/value pair. std::pair<Literal *, Literal *> getKeyValuePair(unsigned index) const { return std::pair<Literal *, Literal *>{ cast<Literal>(getOperand(FirstKeyIdx + 2 * index)), cast<Literal>(getOperand(FirstKeyIdx + 1 + 2 * index))}; } LiteralNumber *getSizeHint() const { return cast<LiteralNumber>(getOperand(SizeIdx)); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCAllocObjectFromBufferInstKind); } }; class AllocArrayInst : public Instruction { AllocArrayInst(const AllocArrayInst &) = delete; void operator=(const AllocArrayInst &) = delete; public: enum { SizeHintIdx, ElementStartIdx }; using ArrayValueList = llvh::SmallVector<Value *, 4>; explicit AllocArrayInst(ArrayValueList &val_list, LiteralNumber *sizeHint) : Instruction(ValueKind::AllocArrayInstKind) { // TODO: refine this type annotation to "array" ?. setType(Type::createObject()); pushOperand(sizeHint); for (auto val : val_list) { pushOperand(val); } } explicit AllocArrayInst( const AllocArrayInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} /// Return the size of array to be allocated. LiteralNumber *getSizeHint() const { return cast<LiteralNumber>(getOperand(SizeHintIdx)); } /// Number of consecutive literal elements in the array. unsigned getElementCount() const { return getNumOperands() - 1; } /// Return the real position and value of the \p index's non-elision /// element. Value *getArrayElement(unsigned index) const { return getOperand(ElementStartIdx + index); } /// Returns the index of the first non-literal element. /// Returns -1 if every element is a literal. int getFirstNonLiteralIndex() const { for (unsigned i = 0, e = getElementCount(); i < e; ++i) { if (!llvh::isa<Literal>(getArrayElement(i))) return i; } return -1; } /// Returns true if ths is an array with only literal elements. bool isLiteralArray() const { return getFirstNonLiteralIndex() == -1; } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::AllocArrayInstKind); } }; class CreateArgumentsInst : public Instruction { CreateArgumentsInst(const CreateArgumentsInst &) = delete; void operator=(const CreateArgumentsInst &) = delete; public: explicit CreateArgumentsInst() : Instruction(ValueKind::CreateArgumentsInstKind) { setType(Type::createObject()); } explicit CreateArgumentsInst( const CreateArgumentsInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CreateArgumentsInstKind); } }; class CreateRegExpInst : public Instruction { CreateRegExpInst(const CreateRegExpInst &) = delete; void operator=(const CreateRegExpInst &) = delete; public: enum { PatternIdx, FlagsIdx }; LiteralString *getPattern() const { return cast<LiteralString>(getOperand(PatternIdx)); } LiteralString *getFlags() const { return cast<LiteralString>(getOperand(FlagsIdx)); } explicit CreateRegExpInst(LiteralString *pattern, LiteralString *flags) : Instruction(ValueKind::CreateRegExpInstKind) { setType(Type::createRegExp()); pushOperand(pattern); pushOperand(flags); } explicit CreateRegExpInst( const CreateRegExpInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CreateRegExpInstKind); } }; class UnaryOperatorInst : public SingleOperandInst { public: /// JavaScript Binary operators as defined in the ECMA spec. /// http://www.ecma-international.org/ecma-262/7.0/index.html#sec-unary-operators enum class OpKind { DeleteKind, // delete VoidKind, // void TypeofKind, // typeof PlusKind, // + MinusKind, // - TildeKind, // ~ BangKind, // ! LAST_OPCODE }; private: UnaryOperatorInst(const UnaryOperatorInst &) = delete; void operator=(const UnaryOperatorInst &) = delete; /// The operator kind. OpKind op_; // A list of textual representation of the operators above. static const char *opStringRepr[(int)OpKind::LAST_OPCODE]; public: /// \return the binary operator kind. OpKind getOperatorKind() const { return op_; } // Convert the operator string \p into the enum representation or assert // fail if the string is invalud. static OpKind parseOperator(StringRef op); /// \return the string representation of the operator. StringRef getOperatorStr() { return opStringRepr[static_cast<int>(op_)]; } explicit UnaryOperatorInst(Value *value, OpKind opKind) : SingleOperandInst(ValueKind::UnaryOperatorInstKind, value), op_(opKind) {} explicit UnaryOperatorInst( const UnaryOperatorInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands), op_(src->op_) {} SideEffectKind getSideEffect(); WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::UnaryOperatorInstKind); } }; class BinaryOperatorInst : public Instruction { public: /// JavaScript Binary operators as defined in the ECMA spec. /// http://ecma-international.org/ecma-262/5.1/#sec-11 enum class OpKind { IdentityKind, // nop (assignment operator, no arithmetic op) EqualKind, // == NotEqualKind, // != StrictlyEqualKind, // === StrictlyNotEqualKind, // !== LessThanKind, // < LessThanOrEqualKind, // <= GreaterThanKind, // > GreaterThanOrEqualKind, // >= LeftShiftKind, // << (<<=) RightShiftKind, // >> (>>=) UnsignedRightShiftKind, // >>> (>>>=) AddKind, // + (+=) SubtractKind, // - (-=) MultiplyKind, // * (*=) DivideKind, // / (/=) ModuloKind, // % (%=) OrKind, // | (|=) XorKind, // ^ (^=) AndKind, // & (^=) ExponentiationKind, // ** (**=) InKind, // "in" InstanceOfKind, // instanceof LAST_OPCODE }; // A list of textual representation of the operators above. static const char *opStringRepr[(int)OpKind::LAST_OPCODE]; // A list of textual representation of the assignment operators that match the // operators above. static const char *assignmentOpStringRepr[(int)OpKind::LAST_OPCODE]; private: BinaryOperatorInst(const BinaryOperatorInst &) = delete; void operator=(const BinaryOperatorInst &) = delete; /// The operator kind. OpKind op_; public: enum { LeftHandSideIdx, RightHandSideIdx }; /// \return the binary operator kind. OpKind getOperatorKind() const { return op_; } Value *getLeftHandSide() const { return getOperand(LeftHandSideIdx); } Value *getRightHandSide() const { return getOperand(RightHandSideIdx); } // Convert the operator string \p into the enum representation or assert // fail if the string is invalud. static OpKind parseOperator(StringRef op); // Convert the assignment operator string \p into the enum representation or // assert fail if the string is invalud. static OpKind parseAssignmentOperator(StringRef op); // Get the operator that allows you to swap the operands, if one exists. // >= becomes <= and + becomes +. static llvh::Optional<OpKind> tryGetReverseOperator(OpKind op); /// \return the string representation of the operator. StringRef getOperatorStr() { return opStringRepr[static_cast<int>(op_)]; } explicit BinaryOperatorInst(Value *left, Value *right, OpKind opKind) : Instruction(ValueKind::BinaryOperatorInstKind), op_(opKind) { pushOperand(left); pushOperand(right); } explicit BinaryOperatorInst( const BinaryOperatorInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands), op_(src->op_) {} SideEffectKind getSideEffect() { return getBinarySideEffect( getLeftHandSide()->getType(), getRightHandSide()->getType(), getOperatorKind()); } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::BinaryOperatorInstKind); } /// Calculate the side effect of a binary operator, given inferred types of /// its arguments. static SideEffectKind getBinarySideEffect(Type leftTy, Type rightTy, OpKind op); }; class CatchInst : public Instruction { CatchInst(const CatchInst &) = delete; void operator=(const CatchInst &) = delete; public: explicit CatchInst() : Instruction(ValueKind::CatchInstKind) {} explicit CatchInst(const CatchInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CatchInstKind); } }; class ThrowInst : public TerminatorInst { ThrowInst(const ThrowInst &) = delete; void operator=(const ThrowInst &) = delete; public: enum { ThrownValueIdx }; explicit ThrowInst(Value *thrownValue) : TerminatorInst(ValueKind::ThrowInstKind) { pushOperand(thrownValue); } explicit ThrowInst(const ThrowInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } Value *getThrownValue() const { return getOperand(ThrownValueIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ThrowInstKind); } unsigned getNumSuccessors() const { return 0; } BasicBlock *getSuccessor(unsigned idx) const { llvm_unreachable("ThrowInst has no successor!"); } void setSuccessor(unsigned idx, BasicBlock *B) { llvm_unreachable("ThrowInst has no successor!"); } }; class SwitchInst : public TerminatorInst { SwitchInst(const SwitchInst &) = delete; void operator=(const SwitchInst &) = delete; public: enum { InputIdx, DefaultBlockIdx, FirstCaseIdx }; using ValueListType = llvh::SmallVector<Literal *, 8>; using BasicBlockListType = llvh::SmallVector<BasicBlock *, 8>; /// \returns the number of switch case values. unsigned getNumCasePair() const; /// Returns the n'th pair of value-basicblock that represent a case /// destination. std::pair<Literal *, BasicBlock *> getCasePair(unsigned i) const; /// \returns the destination of the default target. BasicBlock *getDefaultDestination() const; /// \returns the input value. This is the value we switch on. Value *getInputValue() const; explicit SwitchInst( Value *input, BasicBlock *defaultBlock, const ValueListType &values, const BasicBlockListType &blocks); explicit SwitchInst(const SwitchInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::SwitchInstKind); } unsigned getNumSuccessors() const { return getNumCasePair() + 1; } BasicBlock *getSuccessor(unsigned idx) const; void setSuccessor(unsigned idx, BasicBlock *B); }; class GetPNamesInst : public TerminatorInst { GetPNamesInst(const GetPNamesInst &) = delete; void operator=(const GetPNamesInst &) = delete; public: enum { IteratorIdx, BaseIdx, IndexIdx, SizeIdx, OnEmptyIdx, OnSomeIdx }; explicit GetPNamesInst( BasicBlock *parent, Value *iteratorAddr, Value *baseAddr, Value *indexAddr, Value *sizeAddr, BasicBlock *onEmpty, BasicBlock *onSome); explicit GetPNamesInst( const GetPNamesInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} Value *getIterator() const { return getOperand(IteratorIdx); } Value *getBase() const { return getOperand(BaseIdx); } Value *getIndex() const { return getOperand(IndexIdx); } Value *getSize() const { return getOperand(SizeIdx); } BasicBlock *getOnEmptyDest() const { return cast<BasicBlock>(getOperand(OnEmptyIdx)); } BasicBlock *getOnSomeDest() const { return cast<BasicBlock>(getOperand(OnSomeIdx)); } SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return WordBitSet<>{} .set(IteratorIdx) .set(BaseIdx) .set(IndexIdx) .set(SizeIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::GetPNamesInstKind); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { if (idx == 0) return getOnEmptyDest(); if (idx == 1) return getOnSomeDest(); llvm_unreachable("GetPNamesInst only have 2 successors!"); } void setSuccessor(unsigned idx, BasicBlock *B) { if (idx == 0) return setOperand(B, OnEmptyIdx); if (idx == 1) return setOperand(B, OnSomeIdx); llvm_unreachable("GetPNamesInst only have 2 successors!"); } }; class GetNextPNameInst : public TerminatorInst { GetNextPNameInst(const GetNextPNameInst &) = delete; void operator=(const GetNextPNameInst &) = delete; public: enum { PropertyIdx, BaseIdx, IndexIdx, SizeIdx, IteratorIdx, OnLastIdx, OnSomeIdx }; explicit GetNextPNameInst( BasicBlock *parent, Value *propertyAddr, Value *baseAddr, Value *indexAddr, Value *sizeAddr, Value *iteratorAddr, BasicBlock *onLast, BasicBlock *onSome); explicit GetNextPNameInst( const GetNextPNameInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return WordBitSet<>{} .set(IteratorIdx) .set(BaseIdx) .set(IndexIdx) .set(SizeIdx) .set(PropertyIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::GetNextPNameInstKind); } Value *getPropertyAddr() const { return getOperand(PropertyIdx); } Value *getBaseAddr() const { return getOperand(BaseIdx); } Value *getIndexAddr() const { return getOperand(IndexIdx); } Value *getSizeAddr() const { return getOperand(SizeIdx); } Value *getIteratorAddr() const { return getOperand(IteratorIdx); } BasicBlock *getOnLastDest() const { return cast<BasicBlock>(getOperand(OnLastIdx)); } BasicBlock *getOnSomeDest() const { return cast<BasicBlock>(getOperand(OnSomeIdx)); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { if (idx == 0) return getOnLastDest(); if (idx == 1) return getOnSomeDest(); llvm_unreachable("GetNextPNameInst only have 2 successors!"); } void setSuccessor(unsigned idx, BasicBlock *B) { if (idx == 0) return setOperand(B, OnLastIdx); if (idx == 1) return setOperand(B, OnSomeIdx); llvm_unreachable("GetNextPNameInst only have 2 successors!"); } }; class CheckHasInstanceInst : public TerminatorInst { CheckHasInstanceInst(const CheckHasInstanceInst &) = delete; void operator=(const CheckHasInstanceInst &) = delete; public: enum { ResultIdx, LeftIdx, RightIdx, OnTrueIdx, OnFalseIdx }; explicit CheckHasInstanceInst( AllocStackInst *result, Value *left, Value *right, BasicBlock *onTrue, BasicBlock *onFalse) : TerminatorInst(ValueKind::CheckHasInstanceInstKind) { pushOperand(result); pushOperand(left); pushOperand(right); pushOperand(onTrue); pushOperand(onFalse); } explicit CheckHasInstanceInst( const CheckHasInstanceInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CheckHasInstanceInstKind); } AllocStackInst *getResult() const { return cast<AllocStackInst>(getOperand(ResultIdx)); } Value *getLeft() const { return getOperand(LeftIdx); } Value *getRight() const { return getOperand(RightIdx); } BasicBlock *getOnTrueDest() const { return cast<BasicBlock>(getOperand(OnTrueIdx)); } BasicBlock *getOnFalseDest() const { return cast<BasicBlock>(getOperand(OnFalseIdx)); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { if (idx == 0) return getOnTrueDest(); if (idx == 1) return getOnFalseDest(); llvm_unreachable("CheckHasInstanceInst only have 2 successors!"); } void setSuccessor(unsigned idx, BasicBlock *B) { if (idx == 0) return setOperand(B, OnTrueIdx); if (idx == 1) return setOperand(B, OnFalseIdx); llvm_unreachable("CheckHasInstanceInst only have 2 successors!"); } }; class TryStartInst : public TerminatorInst { TryStartInst(const TryStartInst &) = delete; void operator=(const TryStartInst &) = delete; // CatchTarget is positioned before TryBody in the successor list, // so that during Post Order Scan, we lay out TryBody first. public: enum { CatchTargetBlockIdx, TryBodyBlockIdx }; explicit TryStartInst(BasicBlock *tryBodyBlock, BasicBlock *catchTargetBlock) : TerminatorInst(ValueKind::TryStartInstKind) { pushOperand(catchTargetBlock); pushOperand(tryBodyBlock); } explicit TryStartInst( const TryStartInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} BasicBlock *getTryBody() const { return cast<BasicBlock>(getOperand(TryBodyBlockIdx)); } BasicBlock *getCatchTarget() const { return cast<BasicBlock>(getOperand(CatchTargetBlockIdx)); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::TryStartInstKind); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { return cast<BasicBlock>(getOperand(idx)); } void setSuccessor(unsigned idx, BasicBlock *B) { setOperand(B, idx); } }; class TryEndInst : public Instruction { TryEndInst(const TryEndInst &) = delete; void operator=(const TryEndInst &) = delete; public: explicit TryEndInst() : Instruction(ValueKind::TryEndInstKind) {} explicit TryEndInst(const TryEndInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::TryEndInstKind); } }; class PhiInst : public Instruction { PhiInst(const PhiInst &) = delete; void operator=(const PhiInst &) = delete; public: using ValueListType = llvh::SmallVector<Value *, 8>; using BasicBlockListType = llvh::SmallVector<BasicBlock *, 8>; /// \returns the number of phi incoming values. unsigned getNumEntries() const; /// Returns the n'th pair of value-basicblock that represent a case /// destination. std::pair<Value *, BasicBlock *> getEntry(unsigned i) const; /// Update the n'th pair of value-basicblock that represent a case /// destination. void updateEntry(unsigned i, Value *val, BasicBlock *BB); /// Add a pair of value-basicblock that represent a case destination. void addEntry(Value *val, BasicBlock *BB); /// Remove an entry pair (incoming basic block and value) at index \p index. void removeEntry(unsigned index); /// Remove an entry pair (incoming basic block and value) for incoming block // \p BB. void removeEntry(BasicBlock *BB); explicit PhiInst( const ValueListType &values, const BasicBlockListType &blocks); explicit PhiInst(const PhiInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::PhiInstKind); } }; class MovInst : public SingleOperandInst { MovInst(const MovInst &) = delete; void operator=(const MovInst &) = delete; public: explicit MovInst(Value *input) : SingleOperandInst(ValueKind::MovInstKind, input) { setType(input->getType()); } explicit MovInst(const MovInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::MovInstKind); } }; /// ImplicitMovInst may be emitted as part of lowering to express instructions /// which perform a Mov as part of their implementation, to registers not /// explicitly marked as a destination. They serve as IR optimization barriers /// but emit no bytecode. class ImplicitMovInst : public SingleOperandInst { public: explicit ImplicitMovInst(Value *input) : SingleOperandInst(ValueKind::ImplicitMovInstKind, input) { setType(input->getType()); } explicit ImplicitMovInst( const ImplicitMovInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ImplicitMovInstKind); } }; class CoerceThisNSInst : public SingleOperandInst { CoerceThisNSInst(const MovInst &) = delete; void operator=(const CoerceThisNSInst &) = delete; public: explicit CoerceThisNSInst(Value *input) : SingleOperandInst(ValueKind::CoerceThisNSInstKind, input) { setType(input->getType()); } explicit CoerceThisNSInst( const CoerceThisNSInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CoerceThisNSInstKind); } }; class DebuggerInst : public Instruction { DebuggerInst(const DebuggerInst &) = delete; void operator=(const DebuggerInst &) = delete; public: explicit DebuggerInst() : Instruction(ValueKind::DebuggerInstKind) {} explicit DebuggerInst( const DebuggerInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::DebuggerInstKind); } }; class GetNewTargetInst : public Instruction { GetNewTargetInst(const GetNewTargetInst &) = delete; void operator=(const GetNewTargetInst &) = delete; public: explicit GetNewTargetInst() : Instruction(ValueKind::GetNewTargetInstKind) {} explicit GetNewTargetInst( const GetNewTargetInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::GetNewTargetInstKind); } }; class ThrowIfUndefinedInst : public Instruction { ThrowIfUndefinedInst(const ThrowIfUndefinedInst &) = delete; void operator=(const ThrowIfUndefinedInst &) = delete; public: enum { CheckedValueIdx }; explicit ThrowIfUndefinedInst(Value *checkedValue) : Instruction(ValueKind::ThrowIfUndefinedInstKind) { pushOperand(checkedValue); setType(Type::createEmptyType()); } explicit ThrowIfUndefinedInst( const ThrowIfUndefinedInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Value *getCheckedValue() { return getOperand(CheckedValueIdx); } SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ThrowIfUndefinedInstKind); } }; class HBCResolveEnvironment : public SingleOperandInst { HBCResolveEnvironment(const HBCResolveEnvironment &) = delete; void operator=(const HBCResolveEnvironment &) = delete; public: explicit HBCResolveEnvironment(VariableScope *scope) : SingleOperandInst(ValueKind::HBCResolveEnvironmentKind, scope) {} explicit HBCResolveEnvironment( const HBCResolveEnvironment *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} VariableScope *getScope() const { return cast<VariableScope>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCResolveEnvironmentKind); } }; class HBCStoreToEnvironmentInst : public Instruction { HBCStoreToEnvironmentInst(const HBCStoreToEnvironmentInst &) = delete; void operator=(const HBCStoreToEnvironmentInst &) = delete; public: enum { EnvIdx, ValueIdx, NameIdx }; explicit HBCStoreToEnvironmentInst(Value *env, Value *toPut, Variable *var) : Instruction(ValueKind::HBCStoreToEnvironmentInstKind) { pushOperand(env); pushOperand(toPut); pushOperand(var); } explicit HBCStoreToEnvironmentInst( const HBCStoreToEnvironmentInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Variable *getResolvedName() const { return cast<Variable>(getOperand(NameIdx)); } Value *getEnvironment() const { return getOperand(EnvIdx); } Value *getStoredValue() const { return getOperand(ValueIdx); } SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCStoreToEnvironmentInstKind); } }; class HBCLoadFromEnvironmentInst : public Instruction { HBCLoadFromEnvironmentInst(const HBCLoadFromEnvironmentInst &) = delete; void operator=(const HBCLoadFromEnvironmentInst &) = delete; public: enum { EnvIdx, NameIdx }; explicit HBCLoadFromEnvironmentInst(Value *env, Variable *var) : Instruction(ValueKind::HBCLoadFromEnvironmentInstKind) { pushOperand(env); pushOperand(var); } explicit HBCLoadFromEnvironmentInst( const HBCLoadFromEnvironmentInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Variable *getResolvedName() const { return cast<Variable>(getOperand(NameIdx)); } Value *getEnvironment() const { return getOperand(EnvIdx); } SideEffectKind getSideEffect() { return SideEffectKind::MayRead; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCLoadFromEnvironmentInstKind); } }; class SwitchImmInst : public TerminatorInst { SwitchImmInst(const SwitchImmInst &) = delete; void operator=(const SwitchImmInst &) = delete; public: enum { InputIdx, DefaultBlockIdx, MinValueIdx, SizeIdx, FirstCaseIdx }; using ValueListType = llvh::SmallVector<LiteralNumber *, 8>; using BasicBlockListType = llvh::SmallVector<BasicBlock *, 8>; /// \returns the number of switch case values. unsigned getNumCasePair() const { // The number of cases is computed as the total number of operands, minus // the input value and the default basic block. Take this number and divide // it in two, because we are counting pairs. return (getNumOperands() - FirstCaseIdx) / 2; } /// Returns the n'th pair of value-basicblock that represent a case /// destination. std::pair<LiteralNumber *, BasicBlock *> getCasePair(unsigned i) const { // The values and lables are twined together. Find the index of the pair // that we are fetching and return the two values. unsigned base = i * 2 + FirstCaseIdx; return std::make_pair( cast<LiteralNumber>(getOperand(base)), cast<BasicBlock>(getOperand(base + 1))); } /// \returns the destination of the default target. BasicBlock *getDefaultDestination() const { return cast<BasicBlock>(getOperand(DefaultBlockIdx)); } /// \returns the input value. This is the value we switch on. Value *getInputValue() const { return getOperand(InputIdx); } uint32_t getMinValue() const { return cast<LiteralNumber>(getOperand(MinValueIdx))->asUInt32(); } uint32_t getSize() const { return cast<LiteralNumber>(getOperand(SizeIdx))->asUInt32(); } /// \p input is the discriminator value. /// \p defaultBlock is the block to jump to if nothing matches. /// \p minValue the smallest (integer) value of all switch cases. /// \p size the difference between minValue and the largest value + 1. explicit SwitchImmInst( Value *input, BasicBlock *defaultBlock, LiteralNumber *minValue, LiteralNumber *size, const ValueListType &values, const BasicBlockListType &blocks); explicit SwitchImmInst( const SwitchImmInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::SwitchImmInstKind); } unsigned getNumSuccessors() const { return getNumCasePair() + 1; } BasicBlock *getSuccessor(unsigned idx) const; void setSuccessor(unsigned idx, BasicBlock *B); }; class SaveAndYieldInst : public TerminatorInst { SaveAndYieldInst(const SaveAndYieldInst &) = delete; void operator=(const SaveAndYieldInst &) = delete; public: enum { ResultIdx, NextBlockIdx }; Value *getResult() const { return getOperand(ResultIdx); } BasicBlock *getNextBlock() const { return cast<BasicBlock>(getOperand(NextBlockIdx)); } explicit SaveAndYieldInst(Value *result, BasicBlock *nextBlock) : TerminatorInst(ValueKind::SaveAndYieldInstKind) { pushOperand(result); pushOperand(nextBlock); } explicit SaveAndYieldInst( const SaveAndYieldInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } unsigned getNumSuccessors() const { return 1; } BasicBlock *getSuccessor(unsigned idx) const { assert(idx == 0 && "SaveAndYieldInst should only have 1 successor"); return getNextBlock(); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::SaveAndYieldInstKind); } }; class DirectEvalInst : public SingleOperandInst { DirectEvalInst(const DirectEvalInst &) = delete; void operator=(const DirectEvalInst &) = delete; public: explicit DirectEvalInst(Value *value) : SingleOperandInst(ValueKind::DirectEvalInstKind, value) {} explicit DirectEvalInst( const DirectEvalInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} SideEffectKind getSideEffect() const { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::DirectEvalInstKind); } }; class HBCCreateEnvironmentInst : public Instruction { HBCCreateEnvironmentInst(const HBCCreateEnvironmentInst &) = delete; void operator=(const HBCCreateEnvironmentInst &) = delete; public: explicit HBCCreateEnvironmentInst() : Instruction(ValueKind::HBCCreateEnvironmentInstKind) {} explicit HBCCreateEnvironmentInst( const HBCCreateEnvironmentInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCCreateEnvironmentInstKind); } }; class HBCProfilePointInst : public Instruction { HBCProfilePointInst(const HBCProfilePointInst &) = delete; void operator=(const HBCProfilePointInst &) = delete; uint16_t pointIndex_{0}; public: explicit HBCProfilePointInst(uint16_t pointIndex) : Instruction(ValueKind::HBCProfilePointInstKind), pointIndex_(pointIndex) {} explicit HBCProfilePointInst( const HBCProfilePointInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands), pointIndex_(src->pointIndex_) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCProfilePointInstKind); } uint16_t getPointIndex() const { return pointIndex_; } }; class HBCLoadConstInst : public SingleOperandInst { HBCLoadConstInst(const HBCLoadConstInst &) = delete; void operator=(const HBCLoadConstInst &) = delete; public: explicit HBCLoadConstInst(Literal *input) : SingleOperandInst(ValueKind::HBCLoadConstInstKind, input) { setType(input->getType()); } explicit HBCLoadConstInst( const HBCLoadConstInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} Literal *getConst() const { return cast<Literal>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCLoadConstInstKind); } }; /// Load a formal parameter. Parameter 0 is "this", the rest of the params start /// at index 1. class HBCLoadParamInst : public SingleOperandInst { HBCLoadParamInst(const HBCLoadParamInst &) = delete; void operator=(const HBCLoadParamInst &) = delete; public: explicit HBCLoadParamInst(LiteralNumber *input) : SingleOperandInst(ValueKind::HBCLoadParamInstKind, input) {} explicit HBCLoadParamInst( const HBCLoadParamInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} LiteralNumber *getIndex() const { return cast<LiteralNumber>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCLoadParamInstKind); } }; /// Load the "this" parameter in non-strict mode, which coerces it to an object, /// boxing primitives and converting "null" and "undefined" to the global /// object. class HBCGetThisNSInst : public Instruction { HBCGetThisNSInst(const HBCGetThisNSInst &) = delete; void operator=(const HBCGetThisNSInst &) = delete; public: explicit HBCGetThisNSInst() : Instruction(ValueKind::HBCGetThisNSInstKind) {} explicit HBCGetThisNSInst( const HBCGetThisNSInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCGetThisNSInstKind); } }; // Get `arguments.length`, without having to create a real array. class HBCGetArgumentsLengthInst : public SingleOperandInst { HBCGetArgumentsLengthInst(const HBCGetArgumentsLengthInst &) = delete; void operator=(const HBCGetArgumentsLengthInst &) = delete; public: explicit HBCGetArgumentsLengthInst(AllocStackInst *reg) : SingleOperandInst(ValueKind::HBCGetArgumentsLengthInstKind, reg) {} explicit HBCGetArgumentsLengthInst( const HBCGetArgumentsLengthInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} Value *getLazyRegister() const { return getSingleOperand(); } SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCGetArgumentsLengthInstKind); } }; // Get `arguments[i]` without having to create a real array. class HBCGetArgumentsPropByValInst : public Instruction { HBCGetArgumentsPropByValInst(const HBCGetArgumentsPropByValInst &) = delete; void operator=(const HBCGetArgumentsPropByValInst &) = delete; public: enum { IndexIdx, LazyRegisterIdx }; explicit HBCGetArgumentsPropByValInst(Value *index, AllocStackInst *reg) : Instruction(ValueKind::HBCGetArgumentsPropByValInstKind) { pushOperand(index); pushOperand(reg); } explicit HBCGetArgumentsPropByValInst( const HBCGetArgumentsPropByValInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Value *getIndex() const { return getOperand(IndexIdx); } Value *getLazyRegister() const { return getOperand(LazyRegisterIdx); } SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCGetArgumentsPropByValInstKind); } }; // Create a real array for `arguments` for when getting the length and elements // by index isn't enough. class HBCReifyArgumentsInst : public SingleOperandInst { HBCReifyArgumentsInst(const HBCReifyArgumentsInst &) = delete; void operator=(const HBCReifyArgumentsInst &) = delete; public: explicit HBCReifyArgumentsInst(AllocStackInst *reg) : SingleOperandInst(ValueKind::HBCReifyArgumentsInstKind, reg) {} explicit HBCReifyArgumentsInst( const HBCReifyArgumentsInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} Value *getLazyRegister() const { return getSingleOperand(); } SideEffectKind getSideEffect() { return SideEffectKind::MayWrite; } WordBitSet<> getChangedOperandsImpl() { return WordBitSet<>{}.set(0); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCReifyArgumentsInstKind); } }; /// Create a 'this' object to be filled in by a constructor. class HBCCreateThisInst : public Instruction { HBCCreateThisInst(const HBCCreateThisInst &) = delete; void operator=(const HBCCreateThisInst &) = delete; public: enum { PrototypeIdx, ClosureIdx }; explicit HBCCreateThisInst(Value *prototype, Value *closure) : Instruction(ValueKind::HBCCreateThisInstKind) { pushOperand(prototype); pushOperand(closure); } explicit HBCCreateThisInst( const HBCCreateThisInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Value *getPrototype() const { return getOperand(PrototypeIdx); } Value *getClosure() const { return getOperand(ClosureIdx); } SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCCreateThisInstKind); } }; /// Call a constructor. thisValue can be created with HBCCreateThisInst. class HBCConstructInst : public CallInst { HBCConstructInst(const HBCConstructInst &) = delete; void operator=(const HBCConstructInst &) = delete; public: explicit HBCConstructInst( Value *callee, Value *thisValue, ArrayRef<Value *> args) : CallInst(ValueKind::HBCConstructInstKind, callee, thisValue, args) {} explicit HBCConstructInst( const HBCConstructInst *src, llvh::ArrayRef<Value *> operands) : CallInst(src, operands) {} static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCConstructInstKind); } }; /// Choose between 'this' and the object returned by a constructor. class HBCGetConstructedObjectInst : public Instruction { HBCGetConstructedObjectInst(const HBCGetConstructedObjectInst &) = delete; void operator=(const HBCGetConstructedObjectInst &) = delete; public: enum { ThisValueIdx, ConstructorReturnValueIdx }; explicit HBCGetConstructedObjectInst( HBCCreateThisInst *thisValue, HBCConstructInst *constructorReturnValue) : Instruction(ValueKind::HBCGetConstructedObjectInstKind) { pushOperand(thisValue); pushOperand(constructorReturnValue); } explicit HBCGetConstructedObjectInst( const HBCGetConstructedObjectInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} Value *getThisValue() const { // While originally a HBCCreateThisInst, it may have been replaced by a mov // or similar. return getOperand(ThisValueIdx); } Value *getConstructorReturnValue() const { return getOperand(ConstructorReturnValueIdx); } SideEffectKind getSideEffect() { return SideEffectKind::MayRead; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCGetConstructedObjectInstKind); } }; class HBCCallDirectInst : public CallInst { HBCCallDirectInst(const HBCCallDirectInst &) = delete; void operator=(const HBCCallDirectInst &) = delete; public: static constexpr unsigned MAX_ARGUMENTS = 255; explicit HBCCallDirectInst( Function *callee, Value *thisValue, ArrayRef<Value *> args) : CallInst(ValueKind::HBCCallDirectInstKind, callee, thisValue, args) { assert( getNumArguments() <= MAX_ARGUMENTS && "Too many arguments to HBCCallDirect"); } explicit HBCCallDirectInst( const HBCCallDirectInst *src, llvh::ArrayRef<Value *> operands) : CallInst(src, operands) {} Function *getFunctionCode() const { return cast<Function>(getCallee()); } static bool classof(const Value *V) { return V->getKind() == ValueKind::HBCCallDirectInstKind; } }; /// Creating a closure in HBC requires an explicit environment. class HBCCreateFunctionInst : public CreateFunctionInst { HBCCreateFunctionInst(const HBCCreateFunctionInst &) = delete; void operator=(const HBCCreateFunctionInst &) = delete; public: enum { EnvIdx = CreateFunctionInst::LAST_IDX }; explicit HBCCreateFunctionInst(Function *code, Value *env) : CreateFunctionInst(ValueKind::HBCCreateFunctionInstKind, code) { pushOperand(env); } explicit HBCCreateFunctionInst( const HBCCreateFunctionInst *src, llvh::ArrayRef<Value *> operands) : CreateFunctionInst(src, operands) {} Value *getEnvironment() const { return getOperand(EnvIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCCreateFunctionInstKind); } }; /// Identical to a Mov, except it should never be eliminated. /// Elimination will undo spilling and cause failures during bc gen. class HBCSpillMovInst : public SingleOperandInst { HBCSpillMovInst(const HBCSpillMovInst &) = delete; void operator=(const HBCSpillMovInst &) = delete; public: explicit HBCSpillMovInst(Instruction *value) : SingleOperandInst(ValueKind::HBCSpillMovInstKind, value) {} explicit HBCSpillMovInst( const HBCSpillMovInst *src, llvh::ArrayRef<Value *> operands) : SingleOperandInst(src, operands) {} Instruction *getValue() const { return cast<Instruction>(getSingleOperand()); } SideEffectKind getSideEffect() { return SideEffectKind::None; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCSpillMovInstKind); } }; class CompareBranchInst : public TerminatorInst { CompareBranchInst(const CompareBranchInst &) = delete; void operator=(const CompareBranchInst &) = delete; /// The operator kind. BinaryOperatorInst::OpKind op_; public: enum { LeftHandSideIdx, RightHandSideIdx, TrueBlockIdx, FalseBlockIdx }; BinaryOperatorInst::OpKind getOperatorKind() const { return op_; } Value *getLeftHandSide() const { return getOperand(LeftHandSideIdx); } Value *getRightHandSide() const { return getOperand(RightHandSideIdx); } BasicBlock *getTrueDest() const { return cast<BasicBlock>(getOperand(TrueBlockIdx)); } BasicBlock *getFalseDest() const { return cast<BasicBlock>(getOperand(FalseBlockIdx)); } /// \return the string representation of the operator. StringRef getOperatorStr() { return BinaryOperatorInst::opStringRepr[static_cast<int>(op_)]; } explicit CompareBranchInst( Value *left, Value *right, BinaryOperatorInst::OpKind opKind, BasicBlock *trueBlock, BasicBlock *falseBlock) : TerminatorInst(ValueKind::CompareBranchInstKind), op_(opKind) { pushOperand(left); pushOperand(right); pushOperand(trueBlock); pushOperand(falseBlock); } explicit CompareBranchInst( const CompareBranchInst *src, llvh::ArrayRef<Value *> operands) : TerminatorInst(src, operands), op_(src->op_) {} SideEffectKind getSideEffect() { return BinaryOperatorInst::getBinarySideEffect( getLeftHandSide()->getType(), getRightHandSide()->getType(), getOperatorKind()); } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CompareBranchInstKind); } unsigned getNumSuccessors() const { return 2; } BasicBlock *getSuccessor(unsigned idx) const { if (idx == 0) return getTrueDest(); if (idx == 1) return getFalseDest(); llvm_unreachable("CompareBranchInst only have 2 successors!"); } void setSuccessor(unsigned idx, BasicBlock *B) { assert(idx <= 1 && "CompareBranchInst only have 2 successors!"); setOperand(B, idx + TrueBlockIdx); } }; class CreateGeneratorInst : public CreateFunctionInst { CreateGeneratorInst(const CreateGeneratorInst &) = delete; void operator=(const CreateGeneratorInst &) = delete; public: explicit CreateGeneratorInst(ValueKind kind, Function *genFunction) : CreateFunctionInst(kind, genFunction) { setType(Type::createObject()); } explicit CreateGeneratorInst(Function *genFunction) : CreateGeneratorInst(ValueKind::CreateGeneratorInstKind, genFunction) {} explicit CreateGeneratorInst( const CreateGeneratorInst *src, llvh::ArrayRef<Value *> operands) : CreateFunctionInst(src, operands) {} static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::CreateGeneratorInstKind); } }; /// Creating a closure in HBC requires an explicit environment. class HBCCreateGeneratorInst : public CreateGeneratorInst { HBCCreateGeneratorInst(const HBCCreateGeneratorInst &) = delete; void operator=(const HBCCreateGeneratorInst &) = delete; public: enum { EnvIdx = CreateGeneratorInst::LAST_IDX }; explicit HBCCreateGeneratorInst(Function *code, Value *env) : CreateGeneratorInst(ValueKind::HBCCreateGeneratorInstKind, code) { pushOperand(env); } explicit HBCCreateGeneratorInst( const HBCCreateGeneratorInst *src, llvh::ArrayRef<Value *> operands) : CreateGeneratorInst(src, operands) {} Value *getEnvironment() const { return getOperand(EnvIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::HBCCreateGeneratorInstKind); } }; class StartGeneratorInst : public Instruction { StartGeneratorInst(const StartGeneratorInst &) = delete; void operator=(const StartGeneratorInst &) = delete; public: explicit StartGeneratorInst() : Instruction(ValueKind::StartGeneratorInstKind) {} explicit StartGeneratorInst( const StartGeneratorInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::StartGeneratorInstKind); } }; class ResumeGeneratorInst : public Instruction { ResumeGeneratorInst(const ResumeGeneratorInst &) = delete; void operator=(const ResumeGeneratorInst &) = delete; public: enum { IsReturnIdx }; explicit ResumeGeneratorInst(Value *isReturn) : Instruction(ValueKind::ResumeGeneratorInstKind) { pushOperand(isReturn); } explicit ResumeGeneratorInst( const ResumeGeneratorInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } Value *getIsReturn() { return getOperand(IsReturnIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::ResumeGeneratorInstKind); } }; class IteratorBeginInst : public Instruction { IteratorBeginInst(const IteratorBeginInst &) = delete; void operator=(const IteratorBeginInst &) = delete; public: enum { SourceOrNextIdx }; explicit IteratorBeginInst(AllocStackInst *sourceOrNext) : Instruction(ValueKind::IteratorBeginInstKind) { pushOperand(sourceOrNext); } explicit IteratorBeginInst( const IteratorBeginInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() const { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return WordBitSet<>{}.set(SourceOrNextIdx); } Value *getSourceOrNext() const { return getOperand(SourceOrNextIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::IteratorBeginInstKind); } }; class IteratorNextInst : public Instruction { IteratorNextInst(const IteratorNextInst &) = delete; void operator=(const IteratorNextInst &) = delete; public: enum { IteratorIdx, SourceOrNextIdx }; explicit IteratorNextInst( AllocStackInst *iterator, AllocStackInst *sourceOrNext) : Instruction(ValueKind::IteratorNextInstKind) { pushOperand(iterator); pushOperand(sourceOrNext); } explicit IteratorNextInst( const IteratorNextInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() const { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return WordBitSet<>{}.set(IteratorIdx); } Value *getIterator() const { return getOperand(IteratorIdx); } Value *getSourceOrNext() const { return getOperand(SourceOrNextIdx); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::IteratorNextInstKind); } }; class IteratorCloseInst : public Instruction { IteratorCloseInst(const IteratorCloseInst &) = delete; void operator=(const IteratorCloseInst &) = delete; public: enum { IteratorIdx, IgnoreInnerExceptionIdx }; using TargetList = llvh::SmallVector<Value *, 2>; explicit IteratorCloseInst( AllocStackInst *iterator, LiteralBool *ignoreInnerException) : Instruction(ValueKind::IteratorCloseInstKind) { pushOperand(iterator); pushOperand(ignoreInnerException); } explicit IteratorCloseInst( const IteratorCloseInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() const { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } Value *getIterator() const { return getOperand(IteratorIdx); } bool getIgnoreInnerException() const { return cast<LiteralBool>(getOperand(IgnoreInnerExceptionIdx))->getValue(); } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::IteratorCloseInstKind); } }; /// A bytecode version of llvm_unreachable, for use in stubs and similar. class UnreachableInst : public Instruction { UnreachableInst(const UnreachableInst &) = delete; void operator=(const UnreachableInst &) = delete; public: explicit UnreachableInst() : Instruction(ValueKind::UnreachableInstKind) {} explicit UnreachableInst( const UnreachableInst *src, llvh::ArrayRef<Value *> operands) : Instruction(src, operands) {} SideEffectKind getSideEffect() { return SideEffectKind::Unknown; } WordBitSet<> getChangedOperandsImpl() { return {}; } static bool classof(const Value *V) { return kindIsA(V->getKind(), ValueKind::UnreachableInstKind); } }; } // end namespace hermes #endif
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
8a1b0b57585f0f2b8afcd054111c2b8252941bb1
44e2a537ca3472fc3b00a3edd4c22e07e859e40e
/components/sync/nigori/nigori_model_type_processor.cc
982eba90b80824844558b1b1db7c92904bfe3185
[ "BSD-3-Clause" ]
permissive
JACB920/chromium
cd6f836f5dbc6b44f4c7836a33ffbbcc8270f4bb
c8af0e6f42e95a02af31801aa386f4feaedb2b46
refs/heads/master
2023-02-26T20:36:17.814303
2020-01-15T22:11:38
2020-01-15T22:11:38
234,184,746
1
0
null
2020-01-15T22:18:50
2020-01-15T22:18:49
null
UTF-8
C++
false
false
15,282
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/sync/nigori/nigori_model_type_processor.h" #include "base/metrics/histogram_macros.h" #include "base/threading/sequenced_task_runner_handle.h" #include "components/sync/base/client_tag_hash.h" #include "components/sync/base/data_type_histogram.h" #include "components/sync/base/time.h" #include "components/sync/engine/commit_queue.h" #include "components/sync/engine_impl/conflict_resolver.h" #include "components/sync/model_impl/processor_entity.h" #include "components/sync/nigori/forwarding_model_type_processor.h" #include "components/sync/nigori/nigori_sync_bridge.h" #include "components/sync/protocol/proto_memory_estimations.h" #include "components/sync/protocol/proto_value_conversions.h" namespace syncer { namespace { // TODO(mamir): remove those and adjust the code accordingly. Similarly in // tests. const char kNigoriStorageKey[] = "NigoriStorageKey"; const char kRawNigoriClientTagHash[] = "NigoriClientTagHash"; } // namespace NigoriModelTypeProcessor::NigoriModelTypeProcessor() : bridge_(nullptr) {} NigoriModelTypeProcessor::~NigoriModelTypeProcessor() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); } void NigoriModelTypeProcessor::ConnectSync( std::unique_ptr<CommitQueue> worker) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DVLOG(1) << "Successfully connected Encryption Keys"; worker_ = std::move(worker); NudgeForCommitIfNeeded(); } void NigoriModelTypeProcessor::DisconnectSync() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(IsConnected()); DVLOG(1) << "Disconnecting sync for Encryption Keys"; worker_.reset(); if (entity_) { entity_->ClearTransientSyncState(); } } void NigoriModelTypeProcessor::GetLocalChanges( size_t max_entries, GetLocalChangesCallback callback) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK_GT(max_entries, 0U); // If there is a model error, it must have been reported already but hasn't // reached the sync engine yet. In this case return directly to avoid // interactions with the bridge. if (model_error_) { std::move(callback).Run(CommitRequestDataList()); return; } DCHECK(entity_); // No local changes to commit. if (!entity_->RequiresCommitRequest()) { std::move(callback).Run(CommitRequestDataList()); return; } if (entity_->RequiresCommitData()) { // SetCommitData will update EntityData's fields with values from // metadata. entity_->SetCommitData(bridge_->GetData()); } auto commit_request_data = std::make_unique<CommitRequestData>(); entity_->InitializeCommitRequestData(commit_request_data.get()); CommitRequestDataList commit_request_data_list; commit_request_data_list.push_back(std::move(commit_request_data)); std::move(callback).Run(std::move(commit_request_data_list)); } void NigoriModelTypeProcessor::OnCommitCompleted( const sync_pb::ModelTypeState& type_state, const CommitResponseDataList& response_list) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(entity_); model_type_state_ = type_state; if (!response_list.empty()) { entity_->ReceiveCommitResponse(response_list[0], /*commit_only=*/false, ModelType::NIGORI); } else { // If the entity hasn't been mentioned in response_list, then it's not // committed and we should reset its commit_requested_sequence_number so // they are committed again on next sync cycle. entity_->ClearTransientSyncState(); } // Ask the bridge to persist the new metadata. bridge_->ApplySyncChanges(/*data=*/base::nullopt); } void NigoriModelTypeProcessor::OnUpdateReceived( const sync_pb::ModelTypeState& type_state, UpdateResponseDataList updates) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(model_ready_to_sync_); // If there is a model error, it must have been reported already but hasn't // reached the sync engine yet. In this case return directly to avoid // interactions with the bridge. if (model_error_) { return; } base::Optional<ModelError> error; bool is_initial_sync = !model_type_state_.initial_sync_done(); model_type_state_ = type_state; if (is_initial_sync) { DCHECK(!entity_); if (updates.empty()) { error = bridge_->MergeSyncData(base::nullopt); } else { DCHECK(!updates[0].entity.is_deleted()); entity_ = ProcessorEntity::CreateNew( kNigoriStorageKey, ClientTagHash::FromHashed(kRawNigoriClientTagHash), updates[0].entity.id, updates[0].entity.creation_time); entity_->RecordAcceptedUpdate(updates[0]); error = bridge_->MergeSyncData(std::move(updates[0].entity)); } if (error) { ReportError(*error); } return; } if (updates.empty()) { bridge_->ApplySyncChanges(/*data=*/base::nullopt); return; } DCHECK(entity_); // We assume the bridge will issue errors in case of deletions. Therefore, we // are adding the following DCHECK to simplify the code. DCHECK(!updates[0].entity.is_deleted()); if (entity_->UpdateIsReflection(updates[0].response_version)) { // Seen this update before; just ignore it. bridge_->ApplySyncChanges(/*data=*/base::nullopt); return; } if (entity_->IsUnsynced()) { // Remote update always win in case of conflict, because bridge takes care // of reapplying pending local changes after processing the remote update. entity_->RecordForcedUpdate(updates[0]); error = bridge_->ApplySyncChanges(std::move(updates[0].entity)); UMA_HISTOGRAM_ENUMERATION("Sync.ResolveConflict", ConflictResolution::kUseRemote, ConflictResolution::kTypeSize); UMA_HISTOGRAM_ENUMERATION("Sync.ResolveSimpleConflict", ConflictResolver::NIGORI_MERGE, ConflictResolver::CONFLICT_RESOLUTION_SIZE); } else if (!entity_->MatchesData(updates[0].entity)) { // Inform the bridge of the new or updated data. entity_->RecordAcceptedUpdate(updates[0]); error = bridge_->ApplySyncChanges(std::move(updates[0].entity)); } if (error) { ReportError(*error); return; } // There may be new reasons to commit by the time this function is done. NudgeForCommitIfNeeded(); } void NigoriModelTypeProcessor::OnSyncStarting( const DataTypeActivationRequest& request, StartCallback callback) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DVLOG(1) << "Sync is starting for Encryption Keys"; DCHECK(request.error_handler) << "Encryption Keys"; DCHECK(callback) << "Encryption Keys"; DCHECK(!start_callback_) << "Encryption Keys"; DCHECK(!IsConnected()) << "Encryption Keys"; start_callback_ = std::move(callback); activation_request_ = request; ConnectIfReady(); } void NigoriModelTypeProcessor::OnSyncStopping( SyncStopMetadataFate metadata_fate) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); // Disabling sync for a type shouldn't happen before the model is loaded // because OnSyncStopping() is not allowed to be called before // OnSyncStarting() has completed. DCHECK(!start_callback_); worker_.reset(); switch (metadata_fate) { case syncer::KEEP_METADATA: { break; } case syncer::CLEAR_METADATA: { // The bridge is responsible for deleting all data and metadata upon // disabling sync. bridge_->ApplyDisableSyncChanges(); model_ready_to_sync_ = false; entity_.reset(); model_type_state_ = sync_pb::ModelTypeState(); model_type_state_.mutable_progress_marker()->set_data_type_id( sync_pb::EntitySpecifics::kNigoriFieldNumber); // The model is still ready to sync (with the same |bridge_|) and same // sync metadata. ModelReadyToSync(bridge_, NigoriMetadataBatch()); break; } } } void NigoriModelTypeProcessor::GetAllNodesForDebugging( AllNodesCallback callback) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); std::unique_ptr<EntityData> entity_data = bridge_->GetData(); if (!entity_data) { std::move(callback).Run(syncer::NIGORI, std::make_unique<base::ListValue>()); return; } if (entity_) { const sync_pb::EntityMetadata& metadata = entity_->metadata(); // Set id value as directory, "s" means server. entity_data->id = "s" + metadata.server_id(); entity_data->creation_time = ProtoTimeToTime(metadata.creation_time()); entity_data->modification_time = ProtoTimeToTime(metadata.modification_time()); } std::unique_ptr<base::DictionaryValue> root_node; root_node = entity_data->ToDictionaryValue(); if (entity_) { root_node->Set("metadata", EntityMetadataToValue(entity_->metadata())); } // Function isTypeRootNode in sync_node_browser.js use PARENT_ID and // UNIQUE_SERVER_TAG to check if the node is root node. isChildOf in // sync_node_browser.js uses modelType to check if root node is parent of real // data node. root_node->SetString("PARENT_ID", "r"); root_node->SetString("UNIQUE_SERVER_TAG", "Nigori"); root_node->SetString("modelType", ModelTypeToString(NIGORI)); auto all_nodes = std::make_unique<base::ListValue>(); all_nodes->Append(std::move(root_node)); std::move(callback).Run(syncer::NIGORI, std::move(all_nodes)); } void NigoriModelTypeProcessor::GetStatusCountersForDebugging( StatusCountersCallback callback) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); StatusCounters counters; counters.num_entries = entity_ ? 1 : 0; counters.num_entries_and_tombstones = counters.num_entries; std::move(callback).Run(syncer::NIGORI, counters); } void NigoriModelTypeProcessor::RecordMemoryUsageAndCountsHistograms() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); size_t memory_usage = 0; memory_usage += EstimateMemoryUsage(model_type_state_); memory_usage += entity_ ? entity_->EstimateMemoryUsage() : 0; SyncRecordModelTypeMemoryHistogram(ModelType::NIGORI, memory_usage); SyncRecordModelTypeCountHistogram(ModelType::NIGORI, entity_ ? 1 : 0); } void NigoriModelTypeProcessor::ModelReadyToSync( NigoriSyncBridge* bridge, NigoriMetadataBatch nigori_metadata) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(bridge); DCHECK(!model_ready_to_sync_); bridge_ = bridge; model_ready_to_sync_ = true; // Abort if the model already experienced an error. if (model_error_) { return; } if (nigori_metadata.model_type_state.initial_sync_done() && nigori_metadata.entity_metadata) { model_type_state_ = std::move(nigori_metadata.model_type_state); sync_pb::EntityMetadata metadata = std::move(*nigori_metadata.entity_metadata); metadata.set_client_tag_hash(kRawNigoriClientTagHash); entity_ = ProcessorEntity::CreateFromMetadata(kNigoriStorageKey, std::move(metadata)); } else { // First time syncing or persisted data are corrupted; initialize metadata. model_type_state_.mutable_progress_marker()->set_data_type_id( sync_pb::EntitySpecifics::kNigoriFieldNumber); } ConnectIfReady(); } void NigoriModelTypeProcessor::Put(std::unique_ptr<EntityData> entity_data) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(entity_data); DCHECK(!entity_data->is_deleted()); DCHECK(entity_data->is_folder); DCHECK(!entity_data->name.empty()); DCHECK(!entity_data->specifics.has_encrypted()); DCHECK_EQ(NIGORI, GetModelTypeFromSpecifics(entity_data->specifics)); DCHECK(entity_); if (!model_type_state_.initial_sync_done()) { // Ignore changes before the initial sync is done. return; } if (entity_->MatchesData(*entity_data)) { // Ignore changes that don't actually change anything. return; } entity_->MakeLocalChange(std::move(entity_data)); NudgeForCommitIfNeeded(); } bool NigoriModelTypeProcessor::IsEntityUnsynced() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); if (entity_ == nullptr) { return false; } return entity_->IsUnsynced(); } NigoriMetadataBatch NigoriModelTypeProcessor::GetMetadata() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(IsTrackingMetadata()); DCHECK(entity_); NigoriMetadataBatch nigori_metadata_batch; nigori_metadata_batch.model_type_state = model_type_state_; nigori_metadata_batch.entity_metadata = entity_->metadata(); return nigori_metadata_batch; } void NigoriModelTypeProcessor::ReportError(const ModelError& error) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); // Ignore all errors after the first. if (model_error_) { return; } model_error_ = error; if (IsConnected()) { DisconnectSync(); } // Shouldn't connect anymore. start_callback_.Reset(); if (activation_request_.error_handler) { // Tell sync about the error. activation_request_.error_handler.Run(error); } } base::WeakPtr<ModelTypeControllerDelegate> NigoriModelTypeProcessor::GetControllerDelegate() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); return weak_ptr_factory_for_controller_.GetWeakPtr(); } bool NigoriModelTypeProcessor::IsConnectedForTest() const { return IsConnected(); } bool NigoriModelTypeProcessor::IsTrackingMetadata() { return model_type_state_.initial_sync_done(); } bool NigoriModelTypeProcessor::IsConnected() const { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); return worker_ != nullptr; } void NigoriModelTypeProcessor::ConnectIfReady() { if (!start_callback_) { return; } if (model_error_) { activation_request_.error_handler.Run(model_error_.value()); start_callback_.Reset(); return; } if (!model_ready_to_sync_) { return; } if (!model_type_state_.has_cache_guid()) { model_type_state_.set_cache_guid(activation_request_.cache_guid); } else if (model_type_state_.cache_guid() != activation_request_.cache_guid) { // TODO(mamir): implement error handling in case of cache GUID mismatch. NOTIMPLEMENTED(); } // Cache GUID verification earlier above guarantees the user is the same. model_type_state_.set_authenticated_account_id( activation_request_.authenticated_account_id.ToString()); auto activation_response = std::make_unique<DataTypeActivationResponse>(); activation_response->model_type_state = model_type_state_; activation_response->type_processor = std::make_unique<ForwardingModelTypeProcessor>(this); std::move(start_callback_).Run(std::move(activation_response)); } void NigoriModelTypeProcessor::NudgeForCommitIfNeeded() const { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); // Don't bother sending anything if there's no one to send to. if (!IsConnected()) { return; } // Don't send anything if the type is not ready to handle commits. if (!model_type_state_.initial_sync_done()) { return; } // Nudge worker if there are any entities with local changes. if (entity_->RequiresCommitRequest()) { worker_->NudgeForCommit(); } } } // namespace syncer
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
3829898b2c339e2677a0444ef52ae64a38a6ec55
6bf94e4b7c7dd2702c1e92951091476d7ec60a40
/src/kinematics/quarternion.cpp
5ac787721746af74a0a9a8578a0e2067396a083e
[]
no_license
jiziye/mynt_basic_algthms
9cb250ac4d693459be7d5c3434d80bbb4dc0f669
0b22b592b3b1257ee323a98bdf0166d4c4220e58
refs/heads/master
2022-07-05T17:56:17.950315
2020-05-21T06:40:10
2020-05-21T06:40:10
265,773,074
0
0
null
null
null
null
UTF-8
C++
false
false
2,412
cpp
// // Created by cg on 9/20/19. // #include "kinematics/quarternion.h" namespace mynt { Quarternion::Quarternion() { #if Q_HAMILTON v4_[0] = 1.0; v4_[1] = 0.0; v4_[2] = 0.0; v4_[3] = 0.0; #else v4_[0] = 0.0; v4_[1] = 0.0; v4_[2] = 0.0; v4_[3] = 1.0; #endif } Quarternion::Quarternion(FLOAT w, FLOAT x, FLOAT y, FLOAT z) { #if Q_HAMILTON v4_[0] = w; v4_[1] = x; v4_[2] = y; v4_[3] = z; #else v4_[0] = x; v4_[1] = y; v4_[2] = z; v4_[3] = w; #endif } Quarternion::Quarternion(const Vector<4> &v4) { assert(v4.size() == 4); v4_ = v4; } Quarternion Quarternion::unit_random() { double u1 = rand() / double(RAND_MAX); // [0, 1] double u2 = rand() / double(RAND_MAX) * M_2_PI; double u3 = rand() / double(RAND_MAX) * M_2_PI; double a = std::sqrt(1 - u1); double b = std::sqrt(u1); // TODO: Hamilton ? return Quarternion(a*sin(u2), a*cos(u2), b*sin(u3), b*cos(u3)).normalized(); } Quarternion Quarternion::small_angle_quaternion(const Vector<3> &v3) { Vector<3> dq = v3 / 2.0; Quarternion q; double dq_square_norm = std::pow(dq.norm(), 2); if (dq_square_norm <= 1) { q.set_vec(dq); q.w() = std::sqrt(1 - dq_square_norm); } else { q.set_vec(dq); q.w() = 1; q = q / std::sqrt(1 + dq_square_norm); } return q; } Matrix Quarternion::rotation_matrix() const { Matrix R(3, 3); #if Q_HAMILTON // TODO #else R = (2 * w() * w() - 1) * Matrix::eye(3) - 2 * w() * skew_symmetric(vec()) + 2 * vec() * vec(); //TODO: Is it necessary to use the approximation equation (Equation (87)) when the rotation angle is small? #endif return R; } Matrix Quarternion::left_product_matrix() const { Matrix L(4,4); #if Q_HAMILTON // TODO #else L(0, 0) = v4_[3]; L(0, 1) = v4_[2]; L(0, 2) = -v4_[1]; L(0, 3) = v4_[0]; L(1, 0) = -v4_[2]; L(1, 1) = v4_[3]; L(1, 2) = v4_[0]; L(1, 3) = v4_[1]; L(2, 0) = v4_[1]; L(2, 1) = -v4_[0]; L(2, 2) = v4_[3]; L(2, 3) = v4_[2]; L(3, 0) = -v4_[0]; L(3, 1) = -v4_[1]; L(3, 2) = -v4_[2]; L(3, 3) = v4_[3]; #endif return L; } }
[ "ziyeji@slightech.com" ]
ziyeji@slightech.com
a19d35a18491b92965ad9568ec57ee0c75bebd51
8e494e01e0f11843d4b1b3e39a454d09240e1427
/cekla.h
111ab944f509970b2200985996824b9a3effefef
[]
no_license
AcidicNut/dp0
add2334b91ded29a98d309d417a3dcba37d37c55
aa4b1bc6c9274588fe33c102bcc3c1af247f7a98
refs/heads/master
2020-07-30T01:15:01.892291
2019-09-22T01:19:01
2019-09-22T01:19:01
210,032,899
0
0
null
null
null
null
UTF-8
C++
false
false
20,909
h
/* -*- c++ -*- $Revision: 862 $ * * Copyright (C) 2011, BME Declarative Programming Course * Authors: Richard Kapolnai, Peter Szeredi * * List functions for Cekla. Released under GPL. */ #ifndef CEKLA_H #define CEKLA_H /** * \english * @file cekla.h Cekla C++ library for builtins. * @mainpage Cekla C++ library for declarative C++. * <h2>Installation</h2> * Simply place the file <tt>cekla.h</tt> in the source directory (with * the <tt>*.cpp</tt> files) or in the preprocessor include path * (directories to be searched for header files). * Or for GCC, set the env var CPATH to point to the directory containing * <tt>cekla.h</tt>. * Test your configuration, for example * <pre>\#include "cekla.h" int is_empty(const #list L) { return L == #nil; } int main() { #writeln(is_empty(#nil)); #writeln(is_empty(#cons(10, #nil))); }</pre> * * <h2>Usage</h2> * - In case of using lists (see \link CeklaList \endlink module) or * function types (see \link CeklaFunctional \endlink module), include * <tt>cekla.h</tt>. * - Non-declarative function calls are allowed for debugging, for * example you can place a <tt>#writeln</tt> call between statements. * - Type <tt>help;</tt> in the Cekla interpreter for the allowed syntax. * * <h2>Macros to change behaviour</h2> * - <tt>NDEBUG</tt>: if defined, #write, #writeln will not print * debugging info (the line number of call in source code). * - <tt>ENABLE_SHARED_PTR</tt>: enables garbage collection to * prevent memory leaks, but usually disables GCC optimization of * tail recursive functions. * * \author Copyright (C) 2011, BME Declarative Programmming Course, Richard Kapolnai, Peter Szeredi * \verbatim http://dp.iit.bme.hu/ $Revision: 862 $ \endverbatim * \endenglish * * \hungarian * @file cekla.h Cekla C++ könyvtár. * @mainpage Cekla C++ könyvtár deklaratív C++-hoz * <h2>Installálás</h2> * Helyezzük a <tt>cekla.h</tt> fájlt a forrásfájlokkal egy könyvtárba, * vagy a header fájlok keresési útvonalába. * Vagy GCC esetén a CPATH környezeti változót állítsuk a <tt>cekla.h</tt>-t * tartalmazó könyvtárra, például <tt>export CPATH=/opt/cekla/include</tt>. * A konfiguráció teszteléséhez egy rövid példa: * <pre>\#include "cekla.h" int is_empty(const #list L) { return L == #nil; } int main() { #writeln(is_empty(#nil)); #writeln(is_empty(#cons(10, #nil))); }</pre> * * <h2>Használat</h2> * - Listákhoz (lásd a \link CeklaList \endlink modult) vagy * függvénytípusokhoz (lásd a \link CeklaFunctional \endlink modult), * használjuk az <tt>#include "cekla.h"</tt> direktívát. * - Nem-deklaratív függvényhívások is megengedettek pl. hibakereséshez * például használhatjuk a <tt>#writeln</tt>-t utasítások között * - Gépeljük be a <tt>help;</tt> parancsot a Cekla értelmezőjében a * megengedett szintaxishoz. * * <h2>Fontos makrók</h2> * - <tt>NDEBUG</tt>: ha definiáljuk, a #write, #writeln hívások nem * írnak ki debug információt (a hívás sorszámát a forráskódban). * - <tt>ENABLE_SHARED_PTR</tt>: bekapcsolja a szemétgyűjtést * megakadályozva a memóriaszivárgást, de lehetetlenné teszi * a GCC-nek, hogy optimalizálja a jobbrekurzív függvényeket. * * \author Copyright (C) 2011, BME Deklaratív Programozás, Kápolnai Richárd, Szeredi Péter * \verbatim http://dp.iit.bme.hu/ $Revision: 862 $ \endverbatim * \endhungarian * * */ #include <stdexcept> #include <string> #include <iomanip> #include <sstream> #include <iostream> #include <cassert> #include <cstring> #include <cassert> #include <algorithm> #include <new> #ifdef ENABLE_INITIALIZER_LIST // __GXX_EXPERIMENTAL_CXX0X__ # include <initializer_list> #endif // Uncomment to disable debugging info in write and writeln //#define NDEBUG // Uncomment to enable garbage collection. // WARNING: defining this macro will cause memory leaks!!! //#define ENABLE_SHARED_PTR /** \addtogroup CeklaList * \english * List handling in C++. * \endenglish * * \hungarian * Listakezelés C++-ban. * \endhungarian * @{ */ /** * \english * List of integers. * Strings (C-style character arrays, e.g. <tt>"hello"</tt>) are * treated as a list of the codes of the characters, not included * the terminating <tt>'\\0'</tt> character. For example: * \endenglish * * \hungarian * Egészek listája. * Sztring (C-nyelvű karaktertömb, pl. <tt>"hello"</tt>) karakterkódok * listájának tekintendő a lezáró <tt>'\\0'</tt> nélkül. Például: * \endhungarian * <tt>cons(72, cons(101, cons(108, cons(108, cons(111, nil))))) == "Hello"</tt>. */ class list { public: /** * \english * Constructs a list of character codes. * @throw std::logic_error if NULL pointer is given. * * Useful for implicit conversion of a string to a list or quick construction. For example * <tt>const list L1 = "Hello", L2 = "";</tt>, or * <tt>X = tl("Hello")</tt> instead of * \endenglish * * \hungarian * Felépíti a karakterkódok listáját. * @throw std::logic_error ha a paraméter NULL pointer. * * Hasznos sztring implicit konverziójához, például * <tt>const list L1 = "Hello", L2 = "";</tt>, vagy * <tt>X = tl("Hello")</tt> rövidíti az alábbit: * \endhungarian * <tt>X = tl(cons('H', cons('e', cons('l', cons('l', cons('o', nil))))))</tt>. */ list(const char *S) throw (std::logic_error); #ifdef ENABLE_INITIALIZER_LIST /** * \english * Constructs a list of integers given in the initializer_list S. * Requires C++0x and ENABLE_INITIALIZER_LIST defined. * E.g.: * \endenglish * * \hungarian * Felépíti listát az inicializáló lista számaiból. * Csak C++0x és ENABLE_INITIALIZER_LIST definálása esetén elérhető. * Például: * \endhungarian * <tt>tl({10, 20, 30})</tt>. */ list(std::initializer_list<int> S); #endif /** * \english * Compares two lists. * @return True (nonzero) if two lists are equival. * \endenglish * * \hungarian * Összehasonlít két listát. * @return Igaz (nem nulla), ha a két lista egyezik. * \endhungarian */ bool operator==(const list & Rhs) const; /** * \english * Compares two lists. * @return True (nonzero) if two lists are not equival. * @see #operator== * \endenglish * * \hungarian * Összehasonlít két listát. * @return Igaz (nem nulla), ha a két lista nem egyezik. * @see #operator== * \endhungarian */ bool operator!=(const list & Rhs) const; #ifdef ENABLE_SHARED_PTR ~list(); #endif // for cons, hd, tl, because couldn't convince Doxygen // to omit friend declarations list(int, const list); int head() const; list tail() const; private: // BFF // friend list cons(int Head, const list Tail); // friend int hd(const list L); // friend list tl(const list L); struct elem; #ifndef ENABLE_SHARED_PTR // C pointer, causes memory leak typedef const elem * shared_ptr; #else // our replacement of TR1 shared_ptr for reference counting // because need to do nasty things in ~list(), need a public counter struct shared_ptr { const elem * p; void inc() { if (p) p->refcount++; } void dec() { if (p) if (0 == --(p->refcount)) delete p; } shared_ptr(const elem *p = NULL) : p(p) { inc(); } shared_ptr(const shared_ptr & o) : p(NULL) { *this = o; } shared_ptr & operator=(const shared_ptr & o) { dec(); p = o.p; inc(); return *this; } const elem* operator->() const { return p; } operator const elem* const & () const { return p; } //const elem operator*() const { //TODO } ~shared_ptr() { dec(); } }; #endif struct elem { // Underlying data int data; // The rest of the list shared_ptr next; elem(int data, shared_ptr next = 0) : data(data), next(next) #ifdef ENABLE_SHARED_PTR , refcount(0) #endif {} #ifdef ENABLE_SHARED_PTR // for smart pointer mutable int refcount; private: void operator=(const elem&); elem(const elem&); #endif }; // The first (head) element of the list shared_ptr first; }; /** * \english * Returns a new list which starts with Head and followed by Tail. * @param Head The element will be the first element of the list. * @param Tail The list will be the rest of the list. * @return The constructed list. * * Complexity: O(1). * * For example: * \endenglish * * \hungarian * Visszaad egy új listát, aminek első eleme Head, a farka a Tail lista. * @param Head Az elem lesz az új lista első eleme. * @param Tail A lista lesz az új lista többi eleme. * @return A felépített lista. * * Futási idő: O(1). * * Például: * \endhungarian * <tt>cons('H', cons('e', cons('l', cons('l', cons('o', nil))))) == "Hello"</tt>. */ list cons(int Head, const list Tail); /** * \english * Returns the head of the non-empty list L. * @return The first element of L. * * Complexity: O(1). * * For example: * \endenglish * * \hungarian * Visszaadja a nemüres L lista fejét. * @return L első eleme. * * Futási idő: O(1). * * Például: * \endhungarian * <tt>hd("Hello") == 'H'</tt>. */ int hd(const list L); /** * \english * Returns the tail of the non-empty list L. * @return A list missing the first element of L. * * Complexity: O(1). * * For example: * \endenglish * * \hungarian * Visszaadja a nemüres L lista farkát. * @return L lista elemei, az első elem kivételével. * * Futási idő: O(1). * * Például: * \endhungarian * <tt>tl("Hello") == "ello"</tt>. */ list tl(const list L); /** * \english * The empty list. * Fact: <tt>nil == ""</tt>. * Useful to decide if a list is empty: <tt>tl("e") == nil</tt>, * or constructing a list: * \endenglish * * \hungarian * Az üres lista. * A <tt>nil == ""</tt> teljesül. * Használható egy lista vizsgálatára, hogy üres-e: <tt>tl("e") == nil</tt>, * vagy lista építésére: * \endhungarian * <tt>cons('H', cons('e', cons('l', cons('l', cons('o', nil))))) == "Hello"</tt>. */ extern const list nil; // ------------------- Other improvements ---------------------- /** * \english * Writes X to the stdout. * @param X Its type can be int, const string or list. * Lists are printed using heuristics: if contains an integer not in * 32..126, then treated as a list of integers (e.g. [10, 20, 30]), * else treated as a list of character codes (e.g. "hello"). * \endenglish * * \hungarian * Kiírja X-et a standard kimenetre. * @param X Típusa lehet int, sztringkonstans vagy lista. * Ha a lista nemcsak 32..126 közötti számokat tartalmaz, egész listaként * íródik ki (pl. [10, 20, 30]), különben karakterkód-listaként (pl. "hello"). * \endhungarian */ template <typename any_type> void write(const any_type & X); #ifdef NDEBUG /** * \english * Writes X to the stdout followed by a newline. * \endenglish * * \hungarian * Kiírja X-et a standard kimenetre, és egy újsorjelet. * \endhungarian * @see write. */ template <typename any_type> void writeln(const any_type & X); #else /** * \english * Writes X to the stdout followed by debugging info and a newline. * \endenglish * * \hungarian * Kiírja X-et a standard kimenetre, debug infóval, majd egy újsorjelet. * \endhungarian */ #define writeln(X) detail::_writeln(X, __FILE__, __LINE__) #endif /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l() { return nil; } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E) { return cons(E, nil); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2) { return cons(E1,l(E2)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3) { return cons(E1,l(E2,E3)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4) { return cons(E1,l(E2,E3,E4)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4,int E5) { return cons(E1,l(E2,E3,E4,E5)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4,int E5,int E6) { return cons(E1,l(E2,E3,E4,E5,E6)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4,int E5,int E6,int E7) { return cons(E1,l(E2,E3,E4,E5,E6,E7)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4,int E5,int E6,int E7,int E8) { return cons(E1,l(E2,E3,E4,E5,E6,E7,E8)); } /// \english Returns the list containging the parameters. \endenglish \hungarian Visszaadja a paraméterekből alkotott listát. \endhungarian list l(int E1,int E2,int E3,int E4,int E5,int E6,int E7,int E8,int E9) { return cons(E1,l(E2,E3,E4,E5,E6,E7,E8,E9)); } /** * \english * Returns the list containging the parameters. * E.g.: * \endenglish * * \hungarian * Visszaadja a paraméterekből alkotott listát. * Például: * \endhungarian * <tt>const list L = l(10,20,30,40,50,60,70,80,90,0);</tt> */ list l(int E1,int E2,int E3,int E4,int E5,int E6,int E7,int E8,int E9,int E10) { return cons(E1,l(E2,E3,E4,E5,E6,E7,E8,E9,E10)); } /** @} * \addtogroup CeklaFunctional * \english * Functional objects for high order functions in C++. @{ * Can be used to pass an integer function. For example, the following * program outputs * \endenglish * * \hungarian * Típusok magasabbrendű függvényekhez. @{ * Egész-függvények átadására használhatóak. Például az alábbi program * kimenete * \endhungarian * <tt>1</tt>: * <pre>\#include "cekla.h" <b>// Returns true if Predicate(X) is true for some element X of list L</b> int contains(const #fun1 Predicate, const list L) { if (L == nil) return 0; else if (Predicate(hd(L))) return 1; else return contains(Predicate, tl(L))); } int even(const int x) { return x % 2 == 0; } int main() { const list L = cons(1, cons(2, cons(3, nil))); write(contains(even, L)); <b>// prints if L contains even number</b> }</pre> */ /** * \english * Unary function for high order functions. * \endenglish * * \hungarian * Egyparaméteres függvénytípus magasabbrendű függvényekhez. * \endhungarian */ typedef int (*fun1)(int); /** * \english * Binary function for high order functions. * \endenglish * * \hungarian * Kétparaméteres függvénytípus magasabbrendű függvényekhez. * \endhungarian */ typedef int (*fun2)(int, int); /// @} // -------------- Details, not important to a regular user ----------- namespace detail { // how much chars are already printed to this line extern volatile int Tab; // prints X, the current source_file:source_line and a newline (for debugging) template <typename any_type> void _writeln(const any_type & X, const char * Source_file, int Source_line); // error handling void error(const char *Errmsg) throw (std::logic_error); // list printing. std::ostream & operator<<(std::ostream & Os, const list & L); } // -------------- Implementation, not important to a regular user ----------- // -------------- WARNING! -------------- // Causes linker error in case of multiple source files: // "multiple definition of ..." // Could be put into a source file (and a lib) but it's easier to deploy in IDEs const list nil = ""; template <typename any_type> void write(const any_type & X) { using namespace detail; std::stringstream S; S << X; detail::Tab += (int)S.str().length(); std::cout << X; } #ifdef NDEBUG template <typename any_type> void writeln(const any_type & X) { write(X); std::cout << std::endl; } #else namespace detail { template <typename any_type> void _writeln(const any_type & X, const char * Source_file, int Source_line) { write(X); using namespace std; cout << setw(60 - Tab) << ' ' << setw(0); cout << " // " << Source_file << ":" << Source_line; Tab = 0; cout << endl; } } #endif list::list(const char *S) throw (std::logic_error) : first() { if (!S) detail::error("ERROR in list(char*): null pointer given"); *this = nil; for (const char * P = S + strlen(S) - 1; P >= S; P--) *this = cons(*P, *this); } #ifdef ENABLE_INITIALIZER_LIST list::list(std::initializer_list<int> S) : first() { for (auto P = S.begin(); P != S.end(); ++P) *this = cons(*P, *this); } #endif bool list::operator==(const list & Rhs) const { shared_ptr p1, p2; for (p1 = first, p2 = Rhs.first; p1 && p2; p1 = p1->next, p2 = p2->next) if (p1->data != p2->data) return false; return !p1 && !p2; } bool list::operator!=(const list & Rhs) const { return ! (*this == Rhs); } #ifdef ENABLE_SHARED_PTR list::~list() { // Non-recursive deletion of linked elements // The builtin desctruction would cause stack overflow for big lists: // ~list() calls ~shared_ptr calls delete calls ~shared_ptr ... // So we delete elements with refcount==1 for (const elem * p = first; p && p->refcount == 1; p = first) { first.p = NULL; // disable delete first = p->next; delete p; } } #endif inline list::list(int Head, const list Tail) : first() { first = new list::elem(Head, Tail.first); } list cons(int Head, const list Tail) { return list(Head, Tail); } inline int list::head() const { if (first==NULL) detail::error("ERROR in head(): list is empty"); return first->data; } int hd(const list L) { return L.head(); } inline list list::tail() const { if (first==NULL) detail::error("ERROR in tail(): list is empty"); list L0 = nil; L0.first = first->next; return L0; } list tl(const list L) { // // prevents a function from being considered for inlining // __attribute__((noinline)) // // From the GCC Manual: To keep such calls from being optimized away, // // put in the called function, to serve as a special side-effect. // asm (""); return L.tail(); } namespace detail { void memory_error() { std::cerr << "ERROR: out of memory" << std::endl; throw std::bad_alloc(); } // to start automatically before main() struct bootstrap { bootstrap() { std::set_new_handler(memory_error); } } _startup; volatile int Tab = 0; void error(const char *errmsg) throw (std::logic_error) { std::logic_error e(errmsg); std::cerr << e.what() << std::endl; throw e; } std::ostream & operator<<(std::ostream & Os, const list & L) { bool Is_szoveg = true; for (list L0 = L; L0 != nil; L0 = tl(L0)) { if (hd(L0) < 32 || 126 < hd(L0)) { Is_szoveg = false; break; } } if (Is_szoveg && L != nil) { // os << '"'; for (list L0 = L; L0 != nil; L0 = tl(L0)) Os << (char) hd(L0); // os << '"'; } else { Os << "["; bool First = true; for (list L0 = L; L0 != nil; L0 = tl(L0)) { if (!First) Os << ","; Os << hd(L0); First = false; } Os << "]"; } return Os; } } #endif /* CEKLA_H */
[ "lb@lb.lb" ]
lb@lb.lb
67e13c35f32596405483f9d27162fdaae318ddb7
b1a8b4515064081a2571a21cef3aab597e2566c4
/unit_tests/os_interface/windows/os_context_win_tests.cpp
b2524ac6a8ba2bc9770c7c334251155901fce500
[ "MIT", "LicenseRef-scancode-free-unknown" ]
permissive
KamilKoprykIntel/compute-runtime
379e9bc66e34b6cbda4b9a1ef7d1cd0da58d9ca2
8ece440625dc178b6f836ea455d8daccda5cdcc0
refs/heads/master
2021-01-08T04:01:29.178394
2020-02-19T19:17:21
2020-02-20T11:10:21
241,906,088
0
0
MIT
2020-02-20T14:32:41
2020-02-20T14:32:40
null
UTF-8
C++
false
false
2,345
cpp
/* * Copyright (C) 2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "core/unit_tests/helpers/debug_manager_state_restore.h" #include "unit_tests/mocks/mock_wddm.h" #include "unit_tests/os_interface/windows/wddm_fixture.h" using namespace NEO; struct OsContextWinTest : public WddmTestWithMockGdiDll { void SetUp() override { WddmTestWithMockGdiDll::SetUp(); preemptionMode = PreemptionHelper::getDefaultPreemptionMode(*platformDevices[0]); engineType = HwHelper::get(platformDevices[0]->platform.eRenderCoreFamily).getGpgpuEngineInstances()[0]; init(); } PreemptionMode preemptionMode; aub_stream::EngineType engineType; }; TEST_F(OsContextWinTest, givenWddm20WhenCreatingOsContextThenOsContextIsInitialized) { osContext = std::make_unique<OsContextWin>(*osInterface->get()->getWddm(), 0u, 1, engineType, preemptionMode, false); EXPECT_TRUE(osContext->isInitialized()); } TEST_F(OsContextWinTest, givenWddm20WhenCreatingWddmContextFailThenOsContextIsNotInitialized) { wddm->device = INVALID_HANDLE; osContext = std::make_unique<OsContextWin>(*osInterface->get()->getWddm(), 0u, 1, engineType, preemptionMode, false); EXPECT_FALSE(osContext->isInitialized()); } TEST_F(OsContextWinTest, givenWddm20WhenCreatingWddmMonitorFenceFailThenOsContextIsNotInitialized) { *getCreateSynchronizationObject2FailCallFcn() = true; osContext = std::make_unique<OsContextWin>(*osInterface->get()->getWddm(), 0u, 1, engineType, preemptionMode, false); EXPECT_FALSE(osContext->isInitialized()); } TEST_F(OsContextWinTest, givenWddm20WhenRegisterTrimCallbackFailThenOsContextIsNotInitialized) { *getRegisterTrimNotificationFailCallFcn() = true; osContext = std::make_unique<OsContextWin>(*osInterface->get()->getWddm(), 0u, 1, engineType, preemptionMode, false); EXPECT_FALSE(osContext->isInitialized()); } TEST_F(OsContextWinTest, givenWddm20WhenRegisterTrimCallbackIsDisabledThenOsContextIsInitialized) { DebugManagerStateRestore stateRestore; DebugManager.flags.DoNotRegisterTrimCallback.set(true); *getRegisterTrimNotificationFailCallFcn() = true; osContext = std::make_unique<OsContextWin>(*osInterface->get()->getWddm(), 0u, 1, engineType, preemptionMode, false); EXPECT_TRUE(osContext->isInitialized()); }
[ "ocldev@intel.com" ]
ocldev@intel.com
79e834b02be630c8ee9ba8e2a0c1bf4124ca7a7c
466f4cf9ed0a9535774d1d2e6fb7d3c53b53481a
/TP1/tests/LOG6302_TP1_for_imbr.cpp
3689c940a47db5f814faeb97aaa3df5b6d38d82c
[]
no_license
phtroa/LOG6302
70a504ee67abb5d741b60f3d1aa58ef77ac6cd7a
27fdab7174a1c564af88eb46c4266dc1c31f4af6
refs/heads/master
2021-01-11T17:12:06.939925
2017-04-14T22:29:09
2017-04-14T22:29:09
79,737,781
0
0
null
null
null
null
UTF-8
C++
false
false
399
cpp
class Foo { public: int x; int bar() { if (false) return 42; for (int i = 0; i < -1; i++) { for (int j = 0; j < -1; j++); } return -1; } }; int main(void) { Foo foo; if (foo.bar() == 17) { while (true) { if (foo.x == 42) { break; } continue; } } return 0; }
[ "philippe.troclet@gmail.com" ]
philippe.troclet@gmail.com
4e5c27648122c0602f6a58a0b542c65cec97a2bb
151ad59f65b87099dfa33b93521a86519719bdaa
/Surrounded 190B.cpp
b110b2e6b7da4507265c317b1d3ba42f91382b90
[]
no_license
saurabh170/Codeforces
e2e7e81f2389ec659becf5c21c35bc915ed0e9f2
39eb6c0851be8c06d6254eefd1a999b9d9bb02aa
refs/heads/master
2020-12-02T19:27:10.156531
2017-07-05T16:36:33
2017-07-05T16:36:33
96,340,317
0
0
null
null
null
null
UTF-8
C++
false
false
695
cpp
#include "iostream" #include "cmath" #include "stdio.h" using namespace std; void conditionalswap(int *a,int *b){ int temp=*a; if (*a<*b) { temp=*a; *a=*b; *b=temp; } } int main() { int x1,y1,r1; int x2,y2,r2; cin>>x1>>y1>>r1; cin>>x2>>y2>>r2; int R=r1,r=r2; conditionalswap(&R,&r); double d=sqrt(pow((x1-x2),2)+pow((y1-y2),2)); //cout<<d<<endl; if (d>(r1+r2)) { float ans=d-(r1+r2); ans=ans/2; printf("%.20f\n",(sqrt(pow((x1-x2),2)+pow((y1-y2),2))-(r1+r2))/2); } else if (sqrt(pow((x1-x2),2)+pow((y1-y2),2))>=(R-r)) { cout<<"0.00000"<<endl; } else{ float ans=R-d-r; ans=ans/2; printf("%.12f\n",(R-sqrt(pow((x1-x2),2)+pow((y1-y2),2))-r)/2); } return 0; }
[ "saurabhjain170@gmail.com" ]
saurabhjain170@gmail.com
b565af917fcf2d9e458862aeca2fa7c32503a88f
2ba94892764a44d9c07f0f549f79f9f9dc272151
/Engine/Source/Runtime/Engine/Classes/Materials/MaterialExpressionStaticBool.h
8e78a77469747e07505003c2d19fb2cfbf0db52c
[ "BSD-2-Clause", "LicenseRef-scancode-proprietary-license" ]
permissive
PopCap/GameIdea
934769eeb91f9637f5bf205d88b13ff1fc9ae8fd
201e1df50b2bc99afc079ce326aa0a44b178a391
refs/heads/master
2021-01-25T00:11:38.709772
2018-09-11T03:38:56
2018-09-11T03:38:56
37,818,708
0
0
BSD-2-Clause
2018-09-11T03:39:05
2015-06-21T17:36:44
null
UTF-8
C++
false
false
895
h
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. #pragma once #include "Materials/MaterialExpression.h" #include "MaterialExpressionStaticBool.generated.h" UCLASS(collapsecategories, hidecategories=Object, MinimalAPI) class UMaterialExpressionStaticBool : public UMaterialExpression { GENERATED_UCLASS_BODY() UPROPERTY(EditAnywhere, Category=MaterialExpressionStaticBool) uint32 Value:1; // Begin UMaterialExpression Interface virtual int32 CompilePreview(class FMaterialCompiler* Compiler, int32 OutputIndex, int32 MultiplexIndex) override; virtual int32 Compile(class FMaterialCompiler* Compiler, int32 OutputIndex, int32 MultiplexIndex) override; virtual void GetCaption(TArray<FString>& OutCaptions) const override; #if WITH_EDITOR virtual uint32 GetOutputType(int32 OutputIndex) override {return MCT_StaticBool;} #endif // End UMaterialExpression Interface };
[ "dkroell@acm.org" ]
dkroell@acm.org
4f3b2b28548bed24493c207a8edaf4c67123b520
15dbe015aebba8ef5a94557566bed36763b1aba9
/src/qt/guiutil.cpp
f2b78de194096e04e24ab4f97bbe4fdaa59ccff0
[ "MIT" ]
permissive
AM16031993N/Helpico
cef35b2ce20dcc066786bf17117879fa77c28c69
7b912a593b4863f113e4b1c1d1922df77831253f
refs/heads/master
2021-10-24T02:29:16.635062
2019-03-21T12:32:06
2019-03-21T12:32:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
33,963
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Dash Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "guiutil.h" #include "bitcoinaddressvalidator.h" #include "bitcoinunits.h" #include "qvalidatedlineedit.h" #include "walletmodel.h" #include "primitives/transaction.h" #include "init.h" #include "validation.h" // For minRelayTxFee #include "protocol.h" #include "script/script.h" #include "script/standard.h" #include "util.h" #ifdef WIN32 #ifdef _WIN32_WINNT #undef _WIN32_WINNT #endif #define _WIN32_WINNT 0x0501 #ifdef _WIN32_IE #undef _WIN32_IE #endif #define _WIN32_IE 0x0501 #define WIN32_LEAN_AND_MEAN 1 #ifndef NOMINMAX #define NOMINMAX #endif #include "shellapi.h" #include "shlobj.h" #include "shlwapi.h" #endif #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #if BOOST_FILESYSTEM_VERSION >= 3 #include <boost/filesystem/detail/utf8_codecvt_facet.hpp> #endif #include <boost/scoped_array.hpp> #include <QAbstractItemView> #include <QApplication> #include <QClipboard> #include <QDateTime> #include <QDesktopServices> #include <QDesktopWidget> #include <QDoubleValidator> #include <QFileDialog> #include <QFont> #include <QLineEdit> #include <QSettings> #include <QTextDocument> // for Qt::mightBeRichText #include <QThread> #include <QMouseEvent> #if QT_VERSION < 0x050000 #include <QUrl> #else #include <QUrlQuery> #endif #if QT_VERSION >= 0x50200 #include <QFontDatabase> #endif #if BOOST_FILESYSTEM_VERSION >= 3 static boost::filesystem::detail::utf8_codecvt_facet utf8; #endif #if defined(Q_OS_MAC) extern double NSAppKitVersionNumber; #if !defined(NSAppKitVersionNumber10_8) #define NSAppKitVersionNumber10_8 1187 #endif #if !defined(NSAppKitVersionNumber10_9) #define NSAppKitVersionNumber10_9 1265 #endif #endif namespace GUIUtil { QString dateTimeStr(const QDateTime &date) { return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm"); } QString dateTimeStr(qint64 nTime) { return dateTimeStr(QDateTime::fromTime_t((qint32)nTime)); } QFont fixedPitchFont() { #if QT_VERSION >= 0x50200 return QFontDatabase::systemFont(QFontDatabase::FixedFont); #else QFont font("Monospace"); #if QT_VERSION >= 0x040800 font.setStyleHint(QFont::Monospace); #else font.setStyleHint(QFont::TypeWriter); #endif return font; #endif } void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent) { parent->setFocusProxy(widget); widget->setFont(fixedPitchFont()); #if QT_VERSION >= 0x040700 // We don't want translators to use own addresses in translations // and this is the only place, where this address is supplied. widget->setPlaceholderText(QObject::tr("Enter a Helpico address (e.g. %1)").arg("XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg")); #endif widget->setValidator(new BitcoinAddressEntryValidator(parent)); widget->setCheckValidator(new BitcoinAddressCheckValidator(parent)); } void setupAmountWidget(QLineEdit *widget, QWidget *parent) { QDoubleValidator *amountValidator = new QDoubleValidator(parent); amountValidator->setDecimals(8); amountValidator->setBottom(0.0); widget->setValidator(amountValidator); widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter); } bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) { // return if URI is not valid or is no helpico: URI if(!uri.isValid() || uri.scheme() != QString("helpico")) return false; SendCoinsRecipient rv; rv.address = uri.path(); // Trim any following forward slash which may have been added by the OS if (rv.address.endsWith("/")) { rv.address.truncate(rv.address.length() - 1); } rv.amount = 0; #if QT_VERSION < 0x050000 QList<QPair<QString, QString> > items = uri.queryItems(); #else QUrlQuery uriQuery(uri); QList<QPair<QString, QString> > items = uriQuery.queryItems(); #endif rv.fUseInstantSend = false; for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++) { bool fShouldReturnFalse = false; if (i->first.startsWith("req-")) { i->first.remove(0, 4); fShouldReturnFalse = true; } if (i->first == "label") { rv.label = i->second; fShouldReturnFalse = false; } if (i->first == "IS") { if(i->second.compare(QString("1")) == 0) rv.fUseInstantSend = true; fShouldReturnFalse = false; } if (i->first == "message") { rv.message = i->second; fShouldReturnFalse = false; } else if (i->first == "amount") { if(!i->second.isEmpty()) { if(!BitcoinUnits::parse(BitcoinUnits::HELP, i->second, &rv.amount)) { return false; } } fShouldReturnFalse = false; } if (fShouldReturnFalse) return false; } if(out) { *out = rv; } return true; } bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) { // Convert helpico:// to helpico: // // Cannot handle this later, because helpico:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). if(uri.startsWith("helpico://", Qt::CaseInsensitive)) { uri.replace(0, 7, "helpico:"); } QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); } QString formatBitcoinURI(const SendCoinsRecipient &info) { QString ret = QString("helpico:%1").arg(info.address); int paramCount = 0; if (info.amount) { ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::HELP, info.amount, false, BitcoinUnits::separatorNever)); paramCount++; } if (!info.label.isEmpty()) { QString lbl(QUrl::toPercentEncoding(info.label)); ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl); paramCount++; } if (!info.message.isEmpty()) { QString msg(QUrl::toPercentEncoding(info.message)); ret += QString("%1message=%2").arg(paramCount == 0 ? "?" : "&").arg(msg); paramCount++; } if(info.fUseInstantSend) { ret += QString("%1IS=1").arg(paramCount == 0 ? "?" : "&"); paramCount++; } return ret; } bool isDust(const QString& address, const CAmount& amount) { CTxDestination dest = CBitcoinAddress(address.toStdString()).Get(); CScript script = GetScriptForDestination(dest); CTxOut txOut(amount, script); return txOut.IsDust(::minRelayTxFee); } QString HtmlEscape(const QString& str, bool fMultiLine) { #if QT_VERSION < 0x050000 QString escaped = Qt::escape(str); #else QString escaped = str.toHtmlEscaped(); #endif escaped = escaped.replace(" ", "&nbsp;"); if(fMultiLine) { escaped = escaped.replace("\n", "<br>\n"); } return escaped; } QString HtmlEscape(const std::string& str, bool fMultiLine) { return HtmlEscape(QString::fromStdString(str), fMultiLine); } void copyEntryData(QAbstractItemView *view, int column, int role) { if(!view || !view->selectionModel()) return; QModelIndexList selection = view->selectionModel()->selectedRows(column); if(!selection.isEmpty()) { // Copy first item setClipboard(selection.at(0).data(role).toString()); } } QList<QModelIndex> getEntryData(QAbstractItemView *view, int column) { if(!view || !view->selectionModel()) return QList<QModelIndex>(); return view->selectionModel()->selectedRows(column); } QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut) { QString selectedFilter; QString myDir; if(dir.isEmpty()) // Default to user documents location { #if QT_VERSION < 0x050000 myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); #else myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); #endif } else { myDir = dir; } /* Directly convert path to native OS path separators */ QString result = QDir::toNativeSeparators(QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter)); /* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */ QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]"); QString selectedSuffix; if(filter_re.exactMatch(selectedFilter)) { selectedSuffix = filter_re.cap(1); } /* Add suffix if needed */ QFileInfo info(result); if(!result.isEmpty()) { if(info.suffix().isEmpty() && !selectedSuffix.isEmpty()) { /* No suffix specified, add selected suffix */ if(!result.endsWith(".")) result.append("."); result.append(selectedSuffix); } } /* Return selected suffix if asked to */ if(selectedSuffixOut) { *selectedSuffixOut = selectedSuffix; } return result; } QString getOpenFileName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut) { QString selectedFilter; QString myDir; if(dir.isEmpty()) // Default to user documents location { #if QT_VERSION < 0x050000 myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); #else myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); #endif } else { myDir = dir; } /* Directly convert path to native OS path separators */ QString result = QDir::toNativeSeparators(QFileDialog::getOpenFileName(parent, caption, myDir, filter, &selectedFilter)); if(selectedSuffixOut) { /* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */ QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]"); QString selectedSuffix; if(filter_re.exactMatch(selectedFilter)) { selectedSuffix = filter_re.cap(1); } *selectedSuffixOut = selectedSuffix; } return result; } Qt::ConnectionType blockingGUIThreadConnection() { if(QThread::currentThread() != qApp->thread()) { return Qt::BlockingQueuedConnection; } else { return Qt::DirectConnection; } } bool checkPoint(const QPoint &p, const QWidget *w) { QWidget *atW = QApplication::widgetAt(w->mapToGlobal(p)); if (!atW) return false; return atW->topLevelWidget() == w; } bool isObscured(QWidget *w) { return !(checkPoint(QPoint(0, 0), w) && checkPoint(QPoint(w->width() - 1, 0), w) && checkPoint(QPoint(0, w->height() - 1), w) && checkPoint(QPoint(w->width() - 1, w->height() - 1), w) && checkPoint(QPoint(w->width() / 2, w->height() / 2), w)); } void openDebugLogfile() { boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; /* Open debug.log with the associated application */ if (boost::filesystem::exists(pathDebug)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); } void openConfigfile() { boost::filesystem::path pathConfig = GetConfigFile(); /* Open helpico.conf with the associated application */ if (boost::filesystem::exists(pathConfig)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig))); } void openMNConfigfile() { boost::filesystem::path pathConfig = GetMasternodeConfigFile(); /* Open masternode.conf with the associated application */ if (boost::filesystem::exists(pathConfig)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig))); } void showBackups() { boost::filesystem::path backupsDir = GetBackupsDir(); /* Open folder with default browser */ if (boost::filesystem::exists(backupsDir)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(backupsDir))); } void SubstituteFonts(const QString& language) { #if defined(Q_OS_MAC) // Background: // OSX's default font changed in 10.9 and Qt is unable to find it with its // usual fallback methods when building against the 10.7 sdk or lower. // The 10.8 SDK added a function to let it find the correct fallback font. // If this fallback is not properly loaded, some characters may fail to // render correctly. // // The same thing happened with 10.10. .Helvetica Neue DeskInterface is now default. // // Solution: If building with the 10.7 SDK or lower and the user's platform // is 10.9 or higher at runtime, substitute the correct font. This needs to // happen before the QApplication is created. #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_8) { if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_9) /* On a 10.9 - 10.9.x system */ QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); else { /* 10.10 or later system */ if (language == "zh_CN" || language == "zh_TW" || language == "zh_HK") // traditional or simplified Chinese QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Heiti SC"); else if (language == "ja") // Japanesee QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Songti SC"); else QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Lucida Grande"); } } #endif #endif } ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) : QObject(parent), size_threshold(size_threshold) { } bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt) { if(evt->type() == QEvent::ToolTipChange) { QWidget *widget = static_cast<QWidget*>(obj); QString tooltip = widget->toolTip(); if(tooltip.size() > size_threshold && !tooltip.startsWith("<qt")) { // Escape the current message as HTML and replace \n by <br> if it's not rich text if(!Qt::mightBeRichText(tooltip)) tooltip = HtmlEscape(tooltip, true); // Envelop with <qt></qt> to make sure Qt detects every tooltip as rich text // and style='white-space:pre' to preserve line composition tooltip = "<qt style='white-space:pre'>" + tooltip + "</qt>"; widget->setToolTip(tooltip); return true; } } return QObject::eventFilter(obj, evt); } void TableViewLastColumnResizingFixer::connectViewHeadersSignals() { connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); } // We need to disconnect these while handling the resize events, otherwise we can enter infinite loops. void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals() { disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); } // Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed. // Refactored here for readability. void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode) { #if QT_VERSION < 0x050000 tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode); #else tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode); #endif } void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width) { tableView->setColumnWidth(nColumnIndex, width); tableView->horizontalHeader()->resizeSection(nColumnIndex, width); } int TableViewLastColumnResizingFixer::getColumnsWidth() { int nColumnsWidthSum = 0; for (int i = 0; i < columnCount; i++) { nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i); } return nColumnsWidthSum; } int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column) { int nResult = lastColumnMinimumWidth; int nTableWidth = tableView->horizontalHeader()->width(); if (nTableWidth > 0) { int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column); nResult = std::max(nResult, nTableWidth - nOtherColsWidth); } return nResult; } // Make sure we don't make the columns wider than the tables viewport width. void TableViewLastColumnResizingFixer::adjustTableColumnsWidth() { disconnectViewHeadersSignals(); resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex)); connectViewHeadersSignals(); int nTableWidth = tableView->horizontalHeader()->width(); int nColsWidth = getColumnsWidth(); if (nColsWidth > nTableWidth) { resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex)); } } // Make column use all the space available, useful during window resizing. void TableViewLastColumnResizingFixer::stretchColumnWidth(int column) { disconnectViewHeadersSignals(); resizeColumn(column, getAvailableWidthForColumn(column)); connectViewHeadersSignals(); } // When a section is resized this is a slot-proxy for ajustAmountColumnWidth(). void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize) { adjustTableColumnsWidth(); int remainingWidth = getAvailableWidthForColumn(logicalIndex); if (newSize > remainingWidth) { resizeColumn(logicalIndex, remainingWidth); } } // When the tabless geometry is ready, we manually perform the stretch of the "Message" column, // as the "Stretch" resize mode does not allow for interactive resizing. void TableViewLastColumnResizingFixer::on_geometriesChanged() { if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0) { disconnectViewHeadersSignals(); resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex)); connectViewHeadersSignals(); } } /** * Initializes all internal variables and prepares the * the resize modes of the last 2 columns of the table and */ TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth, QObject *parent) : QObject(parent), tableView(table), lastColumnMinimumWidth(lastColMinimumWidth), allColumnsMinimumWidth(allColsMinimumWidth) { columnCount = tableView->horizontalHeader()->count(); lastColumnIndex = columnCount - 1; secondToLastColumnIndex = columnCount - 2; tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth); setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive); setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive); } #ifdef WIN32 boost::filesystem::path static StartupShortcutPath() { std::string chain = ChainNameFromCommandLine(); if (chain == CBaseChainParams::MAIN) return GetSpecialFolderPath(CSIDL_STARTUP) / "Helpico Core.lnk"; if (chain == CBaseChainParams::TESTNET) // Remove this special case when CBaseChainParams::TESTNET = "testnet4" return GetSpecialFolderPath(CSIDL_STARTUP) / "Helpico Core (testnet).lnk"; return GetSpecialFolderPath(CSIDL_STARTUP) / strprintf("Helpico Core (%s).lnk", chain); } bool GetStartOnSystemStartup() { // check for "Helpico Core*.lnk" return boost::filesystem::exists(StartupShortcutPath()); } bool SetStartOnSystemStartup(bool fAutoStart) { // If the shortcut exists already, remove it for updating boost::filesystem::remove(StartupShortcutPath()); if (fAutoStart) { CoInitialize(NULL); // Get a pointer to the IShellLink interface. IShellLink* psl = NULL; HRESULT hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, reinterpret_cast<void**>(&psl)); if (SUCCEEDED(hres)) { // Get the current executable path TCHAR pszExePath[MAX_PATH]; GetModuleFileName(NULL, pszExePath, sizeof(pszExePath)); // Start client minimized QString strArgs = "-min"; // Set -testnet /-regtest options strArgs += QString::fromStdString(strprintf(" -testnet=%d -regtest=%d", GetBoolArg("-testnet", false), GetBoolArg("-regtest", false))); #ifdef UNICODE boost::scoped_array<TCHAR> args(new TCHAR[strArgs.length() + 1]); // Convert the QString to TCHAR* strArgs.toWCharArray(args.get()); // Add missing '\0'-termination to string args[strArgs.length()] = '\0'; #endif // Set the path to the shortcut target psl->SetPath(pszExePath); PathRemoveFileSpec(pszExePath); psl->SetWorkingDirectory(pszExePath); psl->SetShowCmd(SW_SHOWMINNOACTIVE); #ifndef UNICODE psl->SetArguments(strArgs.toStdString().c_str()); #else psl->SetArguments(args.get()); #endif // Query IShellLink for the IPersistFile interface for // saving the shortcut in persistent storage. IPersistFile* ppf = NULL; hres = psl->QueryInterface(IID_IPersistFile, reinterpret_cast<void**>(&ppf)); if (SUCCEEDED(hres)) { WCHAR pwsz[MAX_PATH]; // Ensure that the string is ANSI. MultiByteToWideChar(CP_ACP, 0, StartupShortcutPath().string().c_str(), -1, pwsz, MAX_PATH); // Save the link by calling IPersistFile::Save. hres = ppf->Save(pwsz, TRUE); ppf->Release(); psl->Release(); CoUninitialize(); return true; } psl->Release(); } CoUninitialize(); return false; } return true; } #elif defined(Q_OS_LINUX) // Follow the Desktop Application Autostart Spec: // http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html boost::filesystem::path static GetAutostartDir() { namespace fs = boost::filesystem; char* pszConfigHome = getenv("XDG_CONFIG_HOME"); if (pszConfigHome) return fs::path(pszConfigHome) / "autostart"; char* pszHome = getenv("HOME"); if (pszHome) return fs::path(pszHome) / ".config" / "autostart"; return fs::path(); } boost::filesystem::path static GetAutostartFilePath() { std::string chain = ChainNameFromCommandLine(); if (chain == CBaseChainParams::MAIN) return GetAutostartDir() / "helpicocore.desktop"; return GetAutostartDir() / strprintf("helpicocore-%s.lnk", chain); } bool GetStartOnSystemStartup() { boost::filesystem::ifstream optionFile(GetAutostartFilePath()); if (!optionFile.good()) return false; // Scan through file for "Hidden=true": std::string line; while (!optionFile.eof()) { getline(optionFile, line); if (line.find("Hidden") != std::string::npos && line.find("true") != std::string::npos) return false; } optionFile.close(); return true; } bool SetStartOnSystemStartup(bool fAutoStart) { if (!fAutoStart) boost::filesystem::remove(GetAutostartFilePath()); else { char pszExePath[MAX_PATH+1]; memset(pszExePath, 0, sizeof(pszExePath)); if (readlink("/proc/self/exe", pszExePath, sizeof(pszExePath)-1) == -1) return false; boost::filesystem::create_directories(GetAutostartDir()); boost::filesystem::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc); if (!optionFile.good()) return false; std::string chain = ChainNameFromCommandLine(); // Write a helpicocore.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; if (chain == CBaseChainParams::MAIN) optionFile << "Name=Helpico Core\n"; else optionFile << strprintf("Name=Helpico Core (%s)\n", chain); optionFile << "Exec=" << pszExePath << strprintf(" -min -testnet=%d -regtest=%d\n", GetBoolArg("-testnet", false), GetBoolArg("-regtest", false)); optionFile << "Terminal=false\n"; optionFile << "Hidden=false\n"; optionFile.close(); } return true; } #elif defined(Q_OS_MAC) // based on: https://github.com/Mozketo/LaunchAtLoginController/blob/master/LaunchAtLoginController.m #include <CoreFoundation/CoreFoundation.h> #include <CoreServices/CoreServices.h> LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl); LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl) { // loop through the list of startup items and try to find the Helpico Core app CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, NULL); for(int i = 0; i < CFArrayGetCount(listSnapshot); i++) { LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i); UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes; CFURLRef currentItemURL = NULL; #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED >= 10100 if(&LSSharedFileListItemCopyResolvedURL) currentItemURL = LSSharedFileListItemCopyResolvedURL(item, resolutionFlags, NULL); #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 10100 else LSSharedFileListItemResolve(item, resolutionFlags, &currentItemURL, NULL); #endif #else LSSharedFileListItemResolve(item, resolutionFlags, &currentItemURL, NULL); #endif if(currentItemURL && CFEqual(currentItemURL, findUrl)) { // found CFRelease(currentItemURL); return item; } if(currentItemURL) { CFRelease(currentItemURL); } } return NULL; } bool GetStartOnSystemStartup() { CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle()); LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl); return !!foundItem; // return boolified object } bool SetStartOnSystemStartup(bool fAutoStart) { CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle()); LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl); if(fAutoStart && !foundItem) { // add Helpico Core app to startup item list LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, NULL, NULL, bitcoinAppUrl, NULL, NULL); } else if(!fAutoStart && foundItem) { // remove item LSSharedFileListItemRemove(loginItems, foundItem); } return true; } #else bool GetStartOnSystemStartup() { return false; } bool SetStartOnSystemStartup(bool fAutoStart) { return false; } #endif void migrateQtSettings() { // Migration (12.1) QSettings settings; if(!settings.value("fMigrationDone121", false).toBool()) { settings.remove("theme"); settings.remove("nWindowPos"); settings.remove("nWindowSize"); settings.setValue("fMigrationDone121", true); } } void saveWindowGeometry(const QString& strSetting, QWidget *parent) { QSettings settings; settings.setValue(strSetting + "Pos", parent->pos()); settings.setValue(strSetting + "Size", parent->size()); } void restoreWindowGeometry(const QString& strSetting, const QSize& defaultSize, QWidget *parent) { QSettings settings; QPoint pos = settings.value(strSetting + "Pos").toPoint(); QSize size = settings.value(strSetting + "Size", defaultSize).toSize(); parent->resize(size); parent->move(pos); if ((!pos.x() && !pos.y()) || (QApplication::desktop()->screenNumber(parent) == -1)) { QRect screen = QApplication::desktop()->screenGeometry(); QPoint defaultPos = screen.center() - QPoint(defaultSize.width() / 2, defaultSize.height() / 2); parent->resize(defaultSize); parent->move(defaultPos); } } // Return name of current UI-theme or default theme if no theme was found QString getThemeName() { QSettings settings; QString theme = settings.value("theme", "").toString(); if(!theme.isEmpty()){ return theme; } return QString("drkblue"); } // Open CSS when configured QString loadStyleSheet() { QString styleSheet; QSettings settings; QString cssName; QString theme = settings.value("theme", "").toString(); if(!theme.isEmpty()){ cssName = QString(":/css/") + theme; } else { cssName = QString(":/css/drkblue"); settings.setValue("theme", "drkblue"); } QFile qFile(cssName); if (qFile.open(QFile::ReadOnly)) { styleSheet = QLatin1String(qFile.readAll()); } return styleSheet; } void setClipboard(const QString& str) { QApplication::clipboard()->setText(str, QClipboard::Clipboard); QApplication::clipboard()->setText(str, QClipboard::Selection); } #if BOOST_FILESYSTEM_VERSION >= 3 boost::filesystem::path qstringToBoostPath(const QString &path) { return boost::filesystem::path(path.toStdString(), utf8); } QString boostPathToQString(const boost::filesystem::path &path) { return QString::fromStdString(path.string(utf8)); } #else #warning Conversion between boost path and QString can use invalid character encoding with boost_filesystem v2 and older boost::filesystem::path qstringToBoostPath(const QString &path) { return boost::filesystem::path(path.toStdString()); } QString boostPathToQString(const boost::filesystem::path &path) { return QString::fromStdString(path.string()); } #endif QString formatDurationStr(int secs) { QStringList strList; int days = secs / 86400; int hours = (secs % 86400) / 3600; int mins = (secs % 3600) / 60; int seconds = secs % 60; if (days) strList.append(QString(QObject::tr("%1 d")).arg(days)); if (hours) strList.append(QString(QObject::tr("%1 h")).arg(hours)); if (mins) strList.append(QString(QObject::tr("%1 m")).arg(mins)); if (seconds || (!days && !hours && !mins)) strList.append(QString(QObject::tr("%1 s")).arg(seconds)); return strList.join(" "); } QString formatServicesStr(quint64 mask) { QStringList strList; // Just scan the last 8 bits for now. for (int i = 0; i < 8; i++) { uint64_t check = 1 << i; if (mask & check) { switch (check) { case NODE_NETWORK: strList.append("NETWORK"); break; case NODE_GETUTXO: strList.append("GETUTXO"); break; case NODE_BLOOM: strList.append("BLOOM"); break; default: strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check)); } } } if (strList.size()) return strList.join(" & "); else return QObject::tr("None"); } QString formatPingTime(double dPingTime) { return (dPingTime == std::numeric_limits<int64_t>::max()/1e6 || dPingTime == 0) ? QObject::tr("N/A") : QString(QObject::tr("%1 ms")).arg(QString::number((int)(dPingTime * 1000), 10)); } QString formatTimeOffset(int64_t nTimeOffset) { return QString(QObject::tr("%1 s")).arg(QString::number((int)nTimeOffset, 10)); } QString formatNiceTimeOffset(qint64 secs) { // Represent time from last generated block in human readable text QString timeBehindText; const int HOUR_IN_SECONDS = 60*60; const int DAY_IN_SECONDS = 24*60*60; const int WEEK_IN_SECONDS = 7*24*60*60; const int YEAR_IN_SECONDS = 31556952; // Average length of year in Gregorian calendar if(secs < 60) { timeBehindText = QObject::tr("%n second(s)","",secs); } else if(secs < 2*HOUR_IN_SECONDS) { timeBehindText = QObject::tr("%n minute(s)","",secs/60); } else if(secs < 2*DAY_IN_SECONDS) { timeBehindText = QObject::tr("%n hour(s)","",secs/HOUR_IN_SECONDS); } else if(secs < 2*WEEK_IN_SECONDS) { timeBehindText = QObject::tr("%n day(s)","",secs/DAY_IN_SECONDS); } else if(secs < YEAR_IN_SECONDS) { timeBehindText = QObject::tr("%n week(s)","",secs/WEEK_IN_SECONDS); } else { qint64 years = secs / YEAR_IN_SECONDS; qint64 remainder = secs % YEAR_IN_SECONDS; timeBehindText = QObject::tr("%1 and %2").arg(QObject::tr("%n year(s)", "", years)).arg(QObject::tr("%n week(s)","", remainder/WEEK_IN_SECONDS)); } return timeBehindText; } void ClickableLabel::mouseReleaseEvent(QMouseEvent *event) { Q_EMIT clicked(event->pos()); } void ClickableProgressBar::mouseReleaseEvent(QMouseEvent *event) { Q_EMIT clicked(event->pos()); } } // namespace GUIUtil
[ "vip@anonymous.do" ]
vip@anonymous.do
5211b7a9ed46c23c2a25cd9e92843fd7bc9645c9
2449e88e03b8d9dbc76f30f9bca8bff8116afa79
/imDX11/Model.h
45a07fb3dcaf1555c454df4ab292b8b466ddd1f7
[]
no_license
imalerich/imDX11
236e1471ea3c78a339a4339fc6f960f647916144
c67f7d8536c37108f134238f4fee8f48389ada1b
refs/heads/master
2021-08-30T19:41:18.990578
2017-12-19T07:09:05
2017-12-19T07:09:05
114,587,824
0
0
null
null
null
null
UTF-8
C++
false
false
510
h
#pragma once #include <stdlib.h> #include <memory> #include <vector> #include "Material.hpp" #include "d3dutil.h" #include "Mesh.h" class Model { public: Model(); Model(const char * Filename); /** * Release all buffers stored by this model. */ void Release(); /** * Loops through each mesh in the model, * and Draw's them to the current DX11 * graphics context. */ void Draw(); private: std::vector<std::shared_ptr<Mesh>> meshes; std::vector<std::shared_ptr<Material>> materials; };
[ "ian.malerich@outlook.com" ]
ian.malerich@outlook.com
b975863e1b89aa5336e774a52bd26fa571757c26
8f7c8beaa2fca1907fb4796538ea77b4ecddc300
/services/device/generic_sensor/platform_sensor_provider_mac.cc
be2993ae1a76e416b7a788ccc108c99d968ca6d9
[ "BSD-3-Clause" ]
permissive
lgsvl/chromium-src
8f88f6ae2066d5f81fa363f1d80433ec826e3474
5a6b4051e48b069d3eacbfad56eda3ea55526aee
refs/heads/ozone-wayland-62.0.3202.94
2023-03-14T10:58:30.213573
2017-10-26T19:27:03
2017-11-17T09:42:56
108,161,483
8
4
null
2017-12-19T22:53:32
2017-10-24T17:34:08
null
UTF-8
C++
false
false
2,908
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/device/generic_sensor/platform_sensor_provider_mac.h" #include "base/memory/ptr_util.h" #include "base/memory/singleton.h" #include "services/device/generic_sensor/orientation_quaternion_fusion_algorithm_using_euler_angles.h" #include "services/device/generic_sensor/platform_sensor_accelerometer_mac.h" #include "services/device/generic_sensor/platform_sensor_ambient_light_mac.h" #include "services/device/generic_sensor/platform_sensor_fusion.h" #include "services/device/generic_sensor/relative_orientation_euler_angles_fusion_algorithm_using_accelerometer.h" namespace device { // static PlatformSensorProviderMac* PlatformSensorProviderMac::GetInstance() { return base::Singleton< PlatformSensorProviderMac, base::LeakySingletonTraits<PlatformSensorProviderMac>>::get(); } PlatformSensorProviderMac::PlatformSensorProviderMac() = default; PlatformSensorProviderMac::~PlatformSensorProviderMac() = default; void PlatformSensorProviderMac::CreateSensorInternal( mojom::SensorType type, mojo::ScopedSharedBufferMapping mapping, const CreateSensorCallback& callback) { // Create Sensors here. switch (type) { case mojom::SensorType::AMBIENT_LIGHT: { scoped_refptr<PlatformSensor> sensor = new PlatformSensorAmbientLightMac(std::move(mapping), this); callback.Run(std::move(sensor)); break; } case mojom::SensorType::ACCELEROMETER: { callback.Run(base::MakeRefCounted<PlatformSensorAccelerometerMac>( std::move(mapping), this)); break; } case mojom::SensorType::RELATIVE_ORIENTATION_EULER_ANGLES: { auto fusion_algorithm = base::MakeUnique< RelativeOrientationEulerAnglesFusionAlgorithmUsingAccelerometer>(); // If this PlatformSensorFusion object is successfully initialized, // |callback| will be run with a reference to this object. PlatformSensorFusion::Create(std::move(mapping), this, std::move(fusion_algorithm), callback); break; } case mojom::SensorType::RELATIVE_ORIENTATION_QUATERNION: { auto orientation_quaternion_fusion_algorithm_using_euler_angles = base::MakeUnique< OrientationQuaternionFusionAlgorithmUsingEulerAngles>( false /* absolute */); // If this PlatformSensorFusion object is successfully initialized, // |callback| will be run with a reference to this object. PlatformSensorFusion::Create( std::move(mapping), this, std::move(orientation_quaternion_fusion_algorithm_using_euler_angles), callback); break; } default: NOTIMPLEMENTED(); callback.Run(nullptr); } } } // namespace device
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
56565804f6115439d200224e4245c6a9c3a98082
3437fb257545a0bf6d25a76ada6047f7c4686865
/LeetCode/168.cpp
1c84eea6d242bbc51cb74e5b6ca06447ddf0dca1
[]
no_license
whing123/C-Coding
62d1db79d6e6c211c7032ca91f466ffda4048ad9
3edfbad82acd5667eb0134cb3de787555f9714d8
refs/heads/master
2021-01-23T01:26:17.228602
2019-10-03T16:21:43
2019-10-03T16:21:43
102,434,473
0
0
null
null
null
null
UTF-8
C++
false
false
429
cpp
/* *题目: * 168 * Excel Sheet Column Title * *思路: * * *技法: * */ class Solution { public: string convertToTitle(int n) { string tmp; while(n > 26){ tmp.insert(tmp.begin(),'A' + ((n % 26 == 0) ? 25 : (n % 26 - 1))); if(n % 26 == 0) n--; n /= 26; } tmp.insert(tmp.begin(),'A' + n - 1); return tmp; } };
[ "whpiggys@gmail.com" ]
whpiggys@gmail.com
2f1490feb32a8256637378a222d1e47a9de1ec30
8f92f53b80c737cdf485a22ac02cea900356f080
/Stock Market simulator/stateofaccount.cpp
d6f54818f0901cc724ade91d291572facc9bfa90
[]
no_license
eslamtharwat/Stock-Market-simulator
ef4529a7b1e224b61733792119b559f28ac59c8f
06ed1bbf5872c2497fa0167c816e88db865e05e2
refs/heads/master
2021-01-20T05:01:30.958807
2018-12-21T11:08:52
2018-12-21T11:08:52
101,410,576
0
0
null
null
null
null
UTF-8
C++
false
false
1,883
cpp
#include "stateofaccount.h" bool Stateofaccount::create_state(int id, string note) { ifstream file; ofstream temp; int file_id, not; string line; file.open("history.txt", ios::in); if (!file.is_open()) { temp.open("history.txt", ios::out); temp.close(); file.open("history.txt", ios::in); } temp.open("history.temp", ios::out); while (file >> file_id) { if (file_id == id) { file.ignore(); temp << id << endl; file >> not; temp << not << endl; for (int i = 0; i < not; i++) { getline(file, line); temp << line << endl; } time(&t); localtime_s(now, &t); temp << (now->tm_year + 1900) << '-' << (now->tm_mon + 1) << '-' << now->tm_mday << " " << now->tm_hour << ":" << now->tm_min << " " << line; getline(file, line, '\0'); temp << line; file.close(); temp.close(); remove("history.txt"); rename("history.temp", "history.txt"); return true; } else { getline(file, line, '*'); file.ignore(100, '\n'); temp << line << "******************************************" << endl; } } temp << id << endl << 1 << endl << "1 - " << note << endl << "******************************************"; file.close(); temp.close(); remove("history.txt"); rename("history.temp", "history.txt"); return true; } vector<string> Stateofaccount::read_state(int id) { ifstream file; file.open("history.txt", ios::in); int file_id, not; string line; vector<string> linevec; if (!file.is_open()) { throw"history file not found"; } else { while (file >> file_id) { if (file_id == id) { file.ignore(); file >> not; for (int i = 0; i < not; i++) { getline(file, line); linevec.push_back(line); } file.close(); return linevec; } else { file.ignore(2000, '*'); file.ignore(100, '\n'); } } file.close(); throw "id Not Found"; } }
[ "eslam20001010@yahoo.com" ]
eslam20001010@yahoo.com
0acc7ecc7821df499175276e086743dfdb7e9933
960765e3c2e8680b282606c1fbc4e6f471e2db4e
/src/ceph-0.72.2-src/test/bench/tp_bench.cc
31a4db37e09c89c1e09f238cac21ec59c37ec7b0
[]
no_license
StarThinking/MOBBS
7115060a2233e7bd8bb1a9848d6b9a0a469c2bef
3f9bfe391a3fa0e454b43c6286a33bdda49a44fb
refs/heads/master
2021-01-13T02:22:18.410864
2014-11-05T08:56:41
2014-11-05T08:56:41
14,044,431
3
1
null
null
null
null
UTF-8
C++
false
false
5,333
cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- #include <boost/scoped_ptr.hpp> #include <boost/lexical_cast.hpp> #include <boost/program_options/option.hpp> #include <boost/program_options/options_description.hpp> #include <boost/program_options/variables_map.hpp> #include <boost/program_options/cmdline.hpp> #include <boost/program_options/parsers.hpp> #include <iostream> #include <set> #include <sstream> #include <stdlib.h> #include <fstream> #include "common/Formatter.h" #include "bencher.h" #include "rados_backend.h" #include "detailed_stat_collector.h" #include "distribution.h" #include "global/global_init.h" #include "common/WorkQueue.h" #include "common/Semaphore.h" #include "common/Finisher.h" namespace po = boost::program_options; using namespace std; class Queueable { public: virtual void queue(unsigned *) = 0; virtual void start() = 0; virtual void stop() = 0; virtual ~Queueable() {}; }; class Base : public Queueable { DetailedStatCollector *col; Semaphore *sem; public: Base(DetailedStatCollector *col, Semaphore *sem) : col(col), sem(sem) {} void queue(unsigned *item) { col->read_complete(*item); sem->Put(); delete item; } void start() {} void stop() {} }; class WQWrapper : public Queueable { boost::scoped_ptr<ThreadPool::WorkQueue<unsigned> > wq; boost::scoped_ptr<ThreadPool> tp; public: WQWrapper(ThreadPool::WorkQueue<unsigned> *wq, ThreadPool *tp): wq(wq), tp(tp) {} void queue(unsigned *item) { wq->queue(item); } void start() { tp->start(); } void stop() { tp->stop(); } }; class FinisherWrapper : public Queueable { class CB : public Context { Queueable *next; unsigned *item; public: CB(Queueable *next, unsigned *item) : next(next), item(item) {} void finish(int) { next->queue(item); } }; Finisher f; Queueable *next; public: FinisherWrapper(CephContext *cct, Queueable *next) : f(cct), next(next) {} void queue(unsigned *item) { f.queue(new CB(next, item)); } void start() { f.start(); } void stop() { f.stop(); } }; class PassAlong : public ThreadPool::WorkQueue<unsigned> { Queueable *next; list<unsigned*> q; bool _enqueue(unsigned *item) { q.push_back(item); return true; } void _dequeue(unsigned *item) { assert(0); } unsigned *_dequeue() { if (q.empty()) return 0; unsigned *val = q.front(); q.pop_front(); return val; } void _process(unsigned *item) { next->queue(item); } void _clear() { q.clear(); } bool _empty() { return q.empty(); } public: PassAlong(ThreadPool *tp, Queueable *next) : ThreadPool::WorkQueue<unsigned>("TestQueue", 100, 100, tp), next(next) {} }; int main(int argc, char **argv) { po::options_description desc("Allowed options"); desc.add_options() ("help", "produce help message") ("num-threads", po::value<unsigned>()->default_value(10), "set number of threads") ("queue-size", po::value<unsigned>()->default_value(30), "queue size") ("num-items", po::value<unsigned>()->default_value(3000000), "num items") ("layers", po::value<string>()->default_value(""), "layer desc") ; po::variables_map vm; po::parsed_options parsed = po::command_line_parser(argc, argv).options(desc).allow_unregistered().run(); po::store( parsed, vm); po::notify(vm); vector<const char *> ceph_options, def_args; vector<string> ceph_option_strings = po::collect_unrecognized( parsed.options, po::include_positional); ceph_options.reserve(ceph_option_strings.size()); for (vector<string>::iterator i = ceph_option_strings.begin(); i != ceph_option_strings.end(); ++i) { ceph_options.push_back(i->c_str()); } global_init( &def_args, ceph_options, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); common_init_finish(g_ceph_context); g_ceph_context->_conf->apply_changes(NULL); if (vm.count("help")) { cout << desc << std::endl; return 1; } DetailedStatCollector col(1, new JSONFormatter, 0, &cout); Semaphore sem; for (unsigned i = 0; i < vm["queue-size"].as<unsigned>(); ++i) sem.Put(); typedef list<Queueable*> QQ; QQ wqs; wqs.push_back( new Base(&col, &sem)); string layers(vm["layers"].as<string>()); unsigned num = 0; for (string::reverse_iterator i = layers.rbegin(); i != layers.rend(); ++i) { stringstream ss; ss << "Test " << num; if (*i == 'q') { ThreadPool *tp = new ThreadPool( g_ceph_context, ss.str(), vm["num-threads"].as<unsigned>(), 0); wqs.push_back( new WQWrapper( new PassAlong(tp, wqs.back()), tp )); } else if (*i == 'f') { wqs.push_back( new FinisherWrapper( g_ceph_context, wqs.back())); } ++num; } for (QQ::iterator i = wqs.begin(); i != wqs.end(); ++i) { (*i)->start(); } for (uint64_t i = 0; i < vm["num-items"].as<unsigned>(); ++i) { sem.Get(); unsigned *item = new unsigned(col.next_seq()); col.start_read(*item, 1); wqs.back()->queue(item); } for (QQ::iterator i = wqs.begin(); i != wqs.end(); ++i) { (*i)->stop(); } for (QQ::iterator i = wqs.begin(); i != wqs.end(); wqs.erase(i++)) { delete *i; } return 0; }
[ "sixiangma0408@foxmail.com" ]
sixiangma0408@foxmail.com
3c0f62e70bf88ffe489de4853e050b40586ecf00
5631f5023c76c4660d1d162408db6d4442538c08
/R-package/src/executor.cc
31a8a1f1c9ef067128aa745fc062d7405aceed08
[ "Apache-2.0" ]
permissive
dantisnghua/mxnet
7f6e9043fa992de382986a20ce9be6cf666ffda2
eeb0d5b6b56a77259db3ad14a9fac97c6b6dbdca
refs/heads/master
2021-01-14T10:27:00.102300
2015-10-16T19:31:51
2015-10-16T19:31:51
44,410,101
1
0
null
2015-10-16T20:55:29
2015-10-16T20:55:29
null
UTF-8
C++
false
false
9,393
cc
/*! * Copyright (c) 2015 by Contributors * \file executor.h * \brief Rcpp Symbol of MXNet. */ #include <Rcpp.h> #include <string> #include <algorithm> #include "./base.h" #include "./executor.h" #include "./ndarray.h" #include "./symbol.h" namespace mxnet { namespace R { void Executor::UpdateArgArray(const Rcpp::List& array, bool match_name, bool skip_null) { UpdateArray("arg.arrays", array, arg_arrays_, match_name, skip_null); } void Executor::UpdateAuxArray(const Rcpp::List& array, bool match_name, bool skip_null) { UpdateArray("aux.arrays", array, aux_arrays_, match_name, skip_null); } void Executor::UpdateArray(const char* array_name, const Rcpp::List& from, Rcpp::List* to, bool match_name, bool skip_null) { if (!match_name) { RCHECK(from.size() == to->size()) << "Update array list must contain names"; for (size_t i = 0; i < from.size(); ++i) { if (to->at(i) != R_NilValue) { if (from[i] != R_NilValue) { NDArray dst = NDArray::FromRObject(to->at(i)); NDArray::CopyFromTo(NDArray::FromRObject(from[i]), &dst); } else { RCHECK(skip_null) << "Position " << i << " expected to be not NULL"; } } else { RCHECK(from[i] == R_NilValue) << "Position " << i << " expected to be NULL"; } } } else { if (from.size() == 0) return; RCHECK(HasName(from)) << "match.name is set to TRUE, the input list must have names in all elements"; std::vector<std::string> names = from.names(); for (size_t i = 0; i < names.size(); ++i) { RCHECK(names[i].length() != 0) << "match.name is set to TRUE, the input list must have names in all elements"; RCHECK(to->containsElementNamed(names[i].c_str())) << "cannot find key " << names[i] << " in the array " << array_name; int index = to->findName(names[i]); if (to->at(index) != R_NilValue) { if (from[i] != R_NilValue) { NDArray dst = NDArray::FromRObject(to->at(index)); NDArray::CopyFromTo(NDArray::FromRObject(from[i]), &dst); } else { RCHECK(skip_null) << "Element " << names[i] << " expected to be not NULL"; } } else { RCHECK(from[i] == R_NilValue) << "Element " << names[i] << " expected to be NULL"; } } } } Rcpp::List Executor::CloneArray(const Rcpp::List& src) { Rcpp::List ret(src.size()); ret.names() = src.names(); for (size_t i = 0; i < src.size(); ++i) { if (src[i] != R_NilValue) { RCHECK(Rcpp::is<NDArray>(src[i])) << "Expected exec to be "<< Executor::TypeName(); ret[i] = NDArray::FromRObject(src[i]).Clone().RObject(); } else { ret[i] = R_NilValue; } } return ret; } void Executor::Forward(bool is_train, const Rcpp::List& kwargs) { MX_CALL(MXExecutorForward(handle_, is_train)); } void Executor::Backward(const Rcpp::List &output_grads) { RCHECK(grad_arrays_ != nullptr) << "This executor has not been binded with req.grad"; std::vector<NDArrayHandle> grad_handles = NDArray::GetHandles(output_grads, "output_grads", false); MX_CALL(MXExecutorBackward(handle_, static_cast<mx_uint>(grad_handles.size()), dmlc::BeginPtr(grad_handles))); } inline Rcpp::List* CreateArrayList(const Rcpp::List& source_array, const std::string& key, const std::vector<std::string>& names, const Context::RObjectType& ctx, std::vector<NDArrayHandle>* handles) { Rcpp::List* ret = new Rcpp::List(source_array.size()); try { ret->names() = names; handles->resize(source_array.size()); for (size_t i = 0; i < source_array.size(); ++i) { RCHECK(Rcpp::is<NDArray>(source_array[i])) << "Expect input " << key << " to be list of " << NDArray::TypeName(); NDArray src = NDArray::FromRObject(source_array[i]); ret->at(i) = NDArray::Empty(src.shape(), ctx); NDArray dst = NDArray::FromRObject(ret->at(i)); handles->at(i) = dst->handle; NDArray::CopyFromTo(src, &dst); } } catch(const Rcpp::exception& ex) { delete ret; throw ex; } return ret; } inline Rcpp::List* CreateGradList(const Rcpp::List& source_array, const Rcpp::List& grad_reqs, const std::vector<std::string>& names, const Context::RObjectType& ctx, std::vector<NDArrayHandle> *handles, std::vector<mx_uint> *grad_req_type) { Rcpp::List* ret = new Rcpp::List(grad_reqs.size(), R_NilValue); try { ret->names() = names; handles->resize(grad_reqs.size(), nullptr); grad_req_type->resize(grad_reqs.size(), 0); for (size_t i = 0; i < grad_reqs.size(); ++i) { RCHECK(Rcpp::is<bool>(grad_reqs[i])) << "Expect input grad_reqs to be list of booleans"; if (Rcpp::as<bool>(grad_reqs[i])) { ret->at(i) = NDArray::Empty(NDArray::FromRObject(source_array[i]).shape(), ctx); handles->at(i) = NDArray::FromRObject(ret->at(i))->handle; grad_req_type->at(i) = 1; } } } catch(const Rcpp::exception& ex) { delete ret; throw ex; } return ret; } inline Rcpp::List* CreateOutList(mx_uint out_size, NDArrayHandle *out_arr, const std::vector<std::string>& names) { Rcpp::List* ret = new Rcpp::List(out_size); try { ret->names() = names; for (size_t i = 0; i < out_size; ++i) { ret->at(i) = NDArray::RObject(out_arr[i], false); } } catch(const Rcpp::exception& ex) { delete ret; throw ex; } return ret; } Executor::RObjectType Executor::Bind(const Symbol::RObjectType& symbol, const Context::RObjectType& context, const Rcpp::List& arg_arrays, const Rcpp::List& aux_arrays, const Rcpp::List& grad_reqs) { Executor* exec = new Executor(); try { Symbol *sym = Symbol::XPtr(symbol); // handles std::vector<mx_uint> grad_req_type; std::vector<NDArrayHandle> arg_handles, grad_handles, aux_handles; // for failure handling exec->arg_arrays_ = CreateArrayList( arg_arrays, "arg_arrays", sym->ListArguments(), context, &arg_handles); exec->aux_arrays_ = CreateArrayList( aux_arrays, "aux_arrays", sym->ListAuxiliaryStates(), context, &aux_handles); exec->grad_arrays_ = CreateGradList( arg_arrays, grad_reqs, sym->ListArguments(), context, &grad_handles, &grad_req_type); Context ctx(context); MX_CALL(MXExecutorBind( sym->handle_, ctx.dev_type, ctx.dev_id, static_cast<mx_uint>(arg_handles.size()), dmlc::BeginPtr(arg_handles), dmlc::BeginPtr(grad_handles), dmlc::BeginPtr(grad_req_type), static_cast<mx_uint>(aux_handles.size()), dmlc::BeginPtr(aux_handles), &(exec->handle_))); mx_uint out_size; NDArrayHandle *out_arr; MX_CALL(MXExecutorOutputs(exec->handle_, &out_size, &out_arr)); exec->out_arrays_ = CreateOutList( out_size, out_arr, sym->ListOuputs()); } catch(const Rcpp::exception& ex) { delete exec; throw ex; } return Rcpp::internal::make_new_object(exec); } void Executor::InitRcppModule() { using namespace Rcpp; // NOLINT(*) class_<Executor>("MXExecutor") .finalizer(&Executor::Finalizer) .method("update.aux.arrays", &Executor::UpdateAuxArray, "Update auxilary states array of executor, this will mutate the executor") .method("update.arg.arrays", &Executor::UpdateArgArray, "Update arguments array of executor, this will mutate the executor") .method("forward", &Executor::Forward, "Peform a forward operation on exec, this will set the outputs.") .method("backward", &Executor::Backward, "Peform a backward operation on exec, this will set the gradients requested.") .property("ref.arg.arrays", &Executor::arg_arrays) .property("ref.grad.arrays", &Executor::grad_arrays) .property("ref.aux.arrays", &Executor::aux_arrays) .property("ref.outputs", &Executor::out_arrays) .property("arg.arrays", &Executor::GetArgArrays) .property("grad.arrays", &Executor::GetGradArrays) .property("aux.arrays", &Executor::GetAuxArrays) .property("outputs", &Executor::GetOuputArrays); function("mx.symbol.bind", &Executor::Bind, List::create(_["symbol"], _["ctx"], _["arg.arrays"], _["aux.arrays"], _["grad.reqs"]), "Bind the symbol on argument arrays, generate gradient array according to grad_reqs"); } } // namespace R } // namespace mxnet
[ "tianqi.tchen@gmail.com" ]
tianqi.tchen@gmail.com
21a4f78d2397a8cbd64727e895269d66ed438a11
d479721adbdb92703a0b276dfbac9f09fa5a3051
/C++Test/ZeroMQ/events/socketBase/SocketImpl_ZMQ.cpp
b2a6b7b8aa1ebb1ee5310dabea1fb090a8548e02
[]
no_license
hyCpp/projecgt
c62fc2b5d22df2fe82f1757844b3eddd357a7387
6852d6331d0ea04f2c88ee256f7264e060ed1f16
refs/heads/master
2020-04-27T23:24:22.917391
2019-03-10T04:13:31
2019-03-10T04:13:31
174,774,562
1
1
null
null
null
null
UTF-8
C++
false
false
9,400
cpp
#include "SocketImpl_ZMQ.h" #include "SocketContext.h" // -------------DataBlock-------------- SocketImpl_ZMQ::DataBlock::DataBlock() : AbstractDataBlock() { zmq_msg_init(this); } SocketImpl_ZMQ::DataBlock::~DataBlock() { zmq_msg_close(this); } size_t SocketImpl_ZMQ::DataBlock::GetLength() { zmq_msg_size(this); } const void* SocketImpl_ZMQ::DataBlock::GetData() { return zmq_msg_data(this); } // -------------SocketImpl_ZMQ--------------- SocketImpl_ZMQ::SocketImpl_ZMQ(SocketType type) : AbstractSocket() , m_pSocket(nullptr) { signed int realtype = ZMQ_PAIR; // inproc model, ZMQ_PAIR类型的套接字被设计用来在线程间进行传输 switch (type) { case SOCKTYPE_PUB: realtype = ZMQ_PUB; break; case SOCKTYPE_SUB: realtype = ZMQ_SUB; break; case SOCKTYPE_ROUTER: // ZMQ_REQ的升级, 当收到一个消息的时候,在向应用进程转发之前,会拿掉消息中的第一帧, 并且把这个帧作为接下来要路由到的目的地址的唯一标识符, // 如果消息的目的地址指向的对端不再存在了,这个消息就会被丢弃 realtype = ZMQ_ROUTER; break; case SOCKTYPE_DEALER: realtype = ZMQ_DEALER; // ZMQ_REP的升级, 所有被发送的消息都会在所有被连接的对端进行循环,并且从所连接的对端中接收到的每一个消息都会进行平等的排队。 break; default: case SOCKTYPE_PAIR: realtype = ZMQ_PAIR; break; } // 当使用inproc和ipc时contxt对象必须是同一个对象,当使用tcp时发送端和接受端分别创建一个context void* context = SocketContext::context(); if (context != nullptr) { m_pSocket = zmq_socket(context, realtype); } } SocketImpl_ZMQ::~SocketImpl_ZMQ() { if (nullptr != m_pSocket) { zmq_close(m_pSocket); m_pSocket = nullptr; } } void* SocketImpl_ZMQ::getSocket() { return m_pSocket; } bool SocketImpl_ZMQ::Bind(const char *addr) { // ipc://address 进程间的传输 // inproc://someaddress 进程内传输 // tcp:// + ip + : + port if (m_pSocket != nullptr) { if (0 == zmq_bind(m_pSocket, addr)) { return true; } } return false; } bool SocketImpl_ZMQ::unBind(const char *addr) { if (m_pSocket != nullptr) { if (0 == zmq_unbind(m_pSocket, addr)) { return true; } } return false; } bool SocketImpl_ZMQ::Connect(const char *addr) { if (m_pSocket != nullptr) { if (0 == zmq_connect(m_pSocket, addr)) { return true; } } return false; } bool SocketImpl_ZMQ::DisConnect(const char *addr) { if (m_pSocket != nullptr) { if (0 != zmq_disconnect(m_pSocket, addr)) { return true; } } return false; } bool SocketImpl_ZMQ::Subscribe(const char *msg) { void* _socket = getSocket(); if (_socket != nullptr && msg != nullptr) { if (zmq_setsockopt(_socket, ZMQ_SUBSCRIBE, msg, strlen(msg)) == 0) { return true; } } return false; } bool SocketImpl_ZMQ::UnSubscribe(const char *msg) { void* _socket = getSocket(); if (_socket != nullptr && msg != nullptr) { if (zmq_setsockopt(_socket, ZMQ_UNSUBSCRIBE, msg, strlen(msg)) == 0) { return true; } } return false; } bool SocketImpl_ZMQ::Send(const void *data, size_t size, uint32_t options) { if (m_pSocket != nullptr) { int realoptions = 0; if (options & OPTION_MORE_BLOCK) { realoptions |= ZMQ_SNDMORE; // 当前正在发送的消息是个多帧消息,并且接下来还会发送更多的消息 } if (options & OPTION_NO_WAIT) { realoptions |= ZMQ_DONTWAIT; // 非阻塞模式 } int rc = zmq_send(m_pSocket, data, size, realoptions); if (static_cast<size_t>(rc) == size) { return true; } } return false; } bool SocketImpl_ZMQ::Recv(AbstractDataBlock **block, uint32_t options) { if (m_pSocket == nullptr) { return false; } *block = nullptr; DataBlock* data = new DataBlock(); if (data = nullptr) { return false; } int flag = 0; if (options & OPTION_NO_WAIT) { flag |= ZMQ_DONTWAIT; } int rc = zmq_msg_recv(data, m_pSocket, flag); if (rc < 0) { *block = nullptr; delete data; data = nullptr; return false; } *block = data; return true; } bool SocketImpl_ZMQ::IsCapableOf(SocketCapability capability) { switch (capability) { case CAPABILITY_EMPTY_BLOCK: return true; default: return false; } } bool SocketImpl_ZMQ::Monitor(const char *addr, uint32_t events) { if (m_pSocket == nullptr || addr == nullptr || strlen(addr) == 0) { return false; } int realevents = 0; if (events & kEventConnected) { realevents |= ZMQ_EVENT_CONNECTED; } if (events & kEventConnectDelayed) { realevents |= ZMQ_EVENT_CONNECT_DELAYED; } if (events & kEventConnectRetried) { realevents |= ZMQ_EVENT_CONNECT_RETRIED; } if (events & kEventListening) { realevents |= ZMQ_EVENT_LISTENING; } if (events & kEventBindFailed) { realevents |= ZMQ_EVENT_BIND_FAILED; } if (events & kEventAccepted) { realevents |= ZMQ_EVENT_ACCEPTED; } if (events & kEventAcceptFailed) { realevents |= ZMQ_EVENT_ACCEPT_FAILED; } if (events & kEventClosed) { realevents |= ZMQ_EVENT_CLOSED; } if (events & kEventCloseFailed) { realevents |= ZMQ_EVENT_CLOSE_FAILED; } if (events & kEventDisconnected) { realevents |= ZMQ_EVENT_DISCONNECTED; } if (events & kEventGreeted) { return false; // not supported. } int rc = zmq_socket_monitor(m_pSocket, addr, realevents); return rc < 0 ? false : true; } bool SocketImpl_ZMQ::RecvMonitorInfo(MonitorInfo *info, uint32_t options) { if (info == nullptr) { return false; } AbstractDataBlock* block = nullptr; if (Recv(&block, options)) { if (block != nullptr) { int flag = 0; if (block->GetData() != nullptr) { const MonitorInfo* event = reinterpret_cast<const MonitorInfo*>(block->GetData()); switch (event->event) { case ZMQ_EVENT_CONNECTED: info->event = kEventConnected; printf("和远程已经建立了连接了,这个新连接的文件描述符是%d.\n", event->fd); break; case ZMQ_EVENT_CONNECT_DELAYED: info->event = kEventConnectDelayed; printf("尝试将同步连接,变成异步连接\n"); break; case ZMQ_EVENT_CONNECT_RETRIED: info->event = kEventConnectRetried; printf("尝试重新连接,其重新连接的间隔为%d\n", event->fd); break; case ZMQ_EVENT_LISTENING: info->event = kEventListening; printf("正在准备接受连接..., 其文件描述符是监听套接字:%d\n", event->fd); break; case ZMQ_EVENT_BIND_FAILED: info->event = kEventBindFailed; printf("不能绑定到地址,其错误信息是:%s\n", zmq_strerror(event->fd)); break; case ZMQ_EVENT_ACCEPTED: info->event = kEventAccepted; printf("有一个新的连接已经被接受, 其文件描述符或者句柄是:%d\n", event->fd); break; case ZMQ_EVENT_ACCEPT_FAILED: info->event = kEventAcceptFailed; printf("不能接受一个来自于客户端的连接:其错误信息是:%s\n", zmq_strerror(event->fd)); break; case ZMQ_EVENT_CLOSED: info->event = kEventClosed; printf("标识为%d的连接已经关闭连接了.\n", event->fd); break; case ZMQ_EVENT_CLOSE_FAILED: info->event = kEventCloseFailed; break; case ZMQ_EVENT_DISCONNECTED: info->event = kEventDisconnected; printf("连接崩溃,出现崩溃的文件描述符是%d\n", event->fd); break; default: printf("Unknown event received: %d\n", flag); delete block; block = nullptr; return false; } delete block; block = nullptr; return true; } else { return false; } } } return false; } bool SocketImpl_ZMQ::HasMoreData() { if (NULL == m_pSocket) { return false; } int64_t more = 0; size_t more_size = sizeof(more); int rc = zmq_getsockopt(m_pSocket, ZMQ_RCVMORE, &more, &more_size); if (rc != 0) { return false; } return more != 0 ? true : false; }
[ "huyang@192.168.124.5" ]
huyang@192.168.124.5